# 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 . # ########################################################################### # 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) # Gradable If the item can be graded. (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: 3 Body: - Id: 1100 AegisName: Taurus_Sword_J Name: Taurus Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 1000 Attack: 10 Range: 1 Slots: 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 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,50+BaseLevel; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,502,100; bonus2 bAddItemHealRate,503,100; bonus2 bAddItemHealRate,504,100; if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { bonus bHit,20; bonus bAspdRate,10; bonus bAtkRate,50; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - 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; 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,100; 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_All,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; bonus3 bSPVanishRate,3,30,BF_WEAPON; 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: 1150 AegisName: Libra_Krasnaya_J Name: Libra's Krasnaya Type: Weapon SubType: 2hSword Weight: 3500 Attack: 10 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 1 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAspdRate,10; bonus bBaseAtk,70+BaseLevel; if (BaseJob == Job_Rune_Knight) { bonus bDelayrate,-10; bonus bAtkRate,50; bonus bLongAtkRate,25; bonus2 bSubClass,Class_Boss,50; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",15; .@r = getrefine(); if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - 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 bInt,20; bonus bLuk,20; - 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,-66; bonus bDef2Rate,-66; - 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 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 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: All_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: All_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: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 90 Refineable: true Script: | bonus bFlee2,10; if (JobLevel>=70 || (eaclass()&EAJL_THIRD && JobLevel>=50)) autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; if (getrefine()>8) { bonus bDelayrate,-20; bonus bUseSPrate,-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: All_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 NoStorage: 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 NoStorage: 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: All_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; specialeffect2 EF_ENHANCE; }",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: All_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; bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",(getrefine()>8?2: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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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: All_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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1191 AegisName: Alca_Bringer Name: Alca Bringer Type: Weapon SubType: 2hSword Buy: 20 Weight: 3400 Attack: 280 Range: 2 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bAspd,(getrefine()/2); - Id: 1192 AegisName: P_Slayer1 Name: Eden Slayer I Type: Weapon SubType: 2hSword Attack: 162 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1193 AegisName: P_Slayer2 Name: Eden Slayer II Type: Weapon SubType: 2hSword Attack: 185 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1194 AegisName: F_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 bAtkEle,Ele_Dark; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bSubRace,RC_DemiHuman,-10; bonus bIgnoreDefRace,RC_DemiHuman; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_Player_Human,-10; bonus bIgnoreDefRace,RC_Player_Human; - Id: 1195 AegisName: E_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 bAtkEle,Ele_Dark; - Id: 1196 AegisName: Chrome_Twohand_Sword Name: Chrome Two-Handed Sword Type: Weapon SubType: 2hSword Buy: 20 Weight: 400 Attack: 280 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAgi,3; bonus bMaxHPrate,-10; - Id: 1197 AegisName: P_Slayer3 Name: Eden Slayer III Type: Weapon SubType: 2hSword Attack: 200 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1198 AegisName: Hairtail Name: Cutlass Type: Weapon SubType: 2hSword Attack: 220 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,20; bonus bCritAtkRate,50; bonus2 bAddEff,Eff_Crystalize,30; if (BaseLevel>99) { bonus bBaseAtk,50; } - Id: 1199 AegisName: Ebony_Toe_Nail Name: Ebony Toe Nail Type: Weapon SubType: 2hSword Buy: 56000 Weight: 1000 Attack: 250 MagicAttack: 150 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true - 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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; bonus2 bAddRace,RC_DemiHuman,3; - 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 KagerouOboro: 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 MagicAttack: 105 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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; - 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 Weight: 1 Attack: 45 Range: 1 Jobs: Novice: true SuperNovice: 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: 1244 AegisName: Holy_Dagger Name: Holy Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 800 Attack: 100 Range: 1 Jobs: Assassin: true KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 55 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus2 bAddRace,RC_Demon,5; - 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 bNoRegen,1; bonus bNoRegen,2; - 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,8; - 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: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 55 Refineable: true Script: | bonus3 bAutoSpell,"NPC_CRITICALWOUND",(getrefine()>=9?2: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: All_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: All_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: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 55 Refineable: true Script: | bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2: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 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 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkEle,Ele_Dark; bonus2 bAddEff,Eff_Curse,5000; 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 NoStorage: 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 NoStorage: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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; bonus bCritAtkRate,20; bonus bUnbreakableWeapon; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bCriticalAddRace,RC_DemiHuman,5; bonus2 bCriticalAddRace,RC_Player_Human,5; } if (.@r>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: All_Upper: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | bonus2 bSkillAtk,"AS_GRIMTOOTH",10; bonus3 bAutoSpell,"AS_SONICBLOW",max(getskilllv("AS_SONICBLOW"),1),100; - Id: 1285 AegisName: Cakram Name: Chakram Type: Weapon SubType: Katar Buy: 20 Weight: 1000 Attack: 130 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1287 AegisName: Durga Name: Durga Type: Weapon SubType: Katar Buy: 20 Weight: 1200 Attack: 190 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true - Id: 1288 AegisName: Bloody_Fear_C Name: Bloody Fear Type: Weapon SubType: Katar Buy: 1 Attack: 145 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: | bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bAddEff,Eff_Bleeding,100; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1289 AegisName: P_Katar1 Name: Eden Katar I Type: Weapon SubType: Katar Attack: 155 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1290 AegisName: Agent_Katar Name: Agent Katar Type: Weapon SubType: Katar Buy: 41000 Weight: 1200 Attack: 170 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bHit,readparam(bLuk)/2; - Id: 1291 AegisName: Guillotine_Katar Name: Guillotine Katar Type: Weapon SubType: Katar Buy: 56000 Weight: 1500 Attack: 200 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 140 Refineable: true Script: | bonus bDex,2; bonus bFlee,-30; bonus2 bAddRace,RC_DemiHuman,50; bonus2 bAddRace,RC_Player_Human,50; bonus2 bSkillAtk,"GC_CROSSIMPACT",30; - Id: 1292 AegisName: Upg_Katar Name: Upg Katar Type: Weapon SubType: Katar Buy: 20 Weight: 1000 Attack: 80 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bCritAtkRate,(.@r*2); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); - Id: 1293 AegisName: Velum_Jamadhar Name: Vellum Jamadhar Type: Weapon SubType: Katar Buy: 20 Weight: 1200 Attack: 170 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetDefRace,RC_Player_Doram,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Doram,10000,5000,1; bonus bAspdRate,4+getrefine(); - Id: 1294 AegisName: Velum_Scare Name: Vellum Scale Type: Weapon SubType: Katar Buy: 20 Weight: 1200 Attack: 50 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10; bonus3 bSPVanishRaceRate,RC_Player_Doram,1000,10; - Id: 1295 AegisName: Blood_Tears_ Name: Blood Tears Type: Weapon SubType: Katar Buy: 20 Weight: 1700 Attack: 120 Range: 1 Slots: 3 Jobs: Assassin: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 55 Refineable: true Script: | bonus3 bAutoSpell,"NPC_WIDEBLEEDING",(getrefine()>=9?2:1),30; - Id: 1296 AegisName: Metal_Katar Name: Metal Katar Type: Weapon SubType: Katar Buy: 20 Attack: 75 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bCritAtkRate,.@r; .@i = min(BaseLevel/10,12); if (.@i>2) bonus bBaseAtk,((.@i-2)*5); - Id: 1297 AegisName: Inverse_Scale_ Name: Inverse Scale Type: Weapon SubType: Katar Buy: 20 Weight: 1500 Attack: 140 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 55 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; - Id: 1298 AegisName: Shiver_Katar Name: Shiver Katar Type: Weapon SubType: Katar Buy: 60000 Weight: 2700 Attack: 110 Range: 1 Slots: 2 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | bonus bCritical,getrefine(); - Id: 1299 AegisName: TE_Woe_Katar Name: TE Woe Katar Type: Weapon SubType: Katar Attack: 120 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Bleeding,1000; - Id: 1300 AegisName: Cleaver_ Name: Cleaver Type: Weapon SubType: 1hAxe Buy: 20 Weight: 1200 Attack: 140 Range: 1 Slots: 3 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: 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 SuperNovice: true Swordman: 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 SuperNovice: true Swordman: 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 SuperNovice: true Swordman: 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 SuperNovice: true Swordman: 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 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,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: 1 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 SuperNovice: true Swordman: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if (.@r>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: All_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 SuperNovice: 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: | bonus2 bAddSize,Size_All,70; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 SuperNovice: true Swordman: 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: Rental 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: 1315 AegisName: F_Right_Epsilon_C Name: Right 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; bonus2 bAddRace,RC_Demon,3; skill "AL_HEAL",3; bonus bSpeedRate,25; - Id: 1316 AegisName: Adventure_Axe Name: Adventure Axe Type: Weapon SubType: 1hAxe Attack: 100 Range: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 - Id: 1317 AegisName: Academy_Axe Name: Academy Axe Type: Weapon SubType: 1hAxe Weight: 1600 Attack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAspdRate,5-(BaseLevel/10); bonus bMaxHP,200-(40*(BaseLevel/10)); - Id: 1318 AegisName: Dofle_Axe Name: Deflation Axe Type: Weapon SubType: 1hAxe Buy: 50000 Weight: 1800 Attack: 180 Range: 1 Slots: 2 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Thief: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | skill "ITM_TOMAHAWK",1; - Id: 1319 AegisName: TE_Woe_Axe Name: TE Woe Axe Type: Weapon SubType: 1hAxe Attack: 100 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: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Freeze,1000; - Id: 1320 AegisName: Diva_Axe Name: Diva Axe Type: Weapon SubType: 1hAxe Weight: 1800 Attack: 180 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 1321 AegisName: Dofle_Axe_ Name: Deflation Axe Type: Weapon SubType: 1hAxe Buy: 50000 Weight: 1800 Attack: 180 Range: 1 Slots: 3 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Thief: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | skill "ITM_TOMAHAWK",1; - Id: 1322 AegisName: Ru_Blue_Axe Name: Ru Blue Axe Type: Weapon SubType: 1hAxe Buy: 10 Weight: 1800 Attack: 180 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bStr,5; bonus bInt,5; - Id: 1323 AegisName: Ru_Gold_Axe Name: Ru Gold Axe Type: Weapon SubType: 1hAxe Weight: 1800 Attack: 180 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bStr,8; bonus bInt,8; - Id: 1324 AegisName: War_Axe_S Name: War Axe Type: Weapon SubType: 1hAxe Buy: 20 Weight: 4200 Attack: 140 Range: 1 Slots: 3 Jobs: Alchemist: true Blacksmith: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 76 Refineable: true Script: | bonus bDex,2; bonus bLuk,2; - Id: 1325 AegisName: Mirage_Axe Name: Mirage Axe Type: Weapon SubType: 1hAxe Weight: 1800 Attack: 180 MagicAttack: 110 Range: 5 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 1326 AegisName: War_Axe_IL Name: Illusion War Axe Type: Weapon SubType: 1hAxe Weight: 4200 Attack: 180 Range: 1 Slots: 2 Jobs: Alchemist: true Blacksmith: true Merchant: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bStr,2; bonus bDex,2; bonus bLuk,2; .@r = getrefine(); if (.@r >= 9) { .@val = 40; } else if (.@r >= 7) { .@val = 20; } bonus2 bSkillAtk,"NC_AXETORNADO",(100+.@val); bonus2 bSkillAtk,"NC_AXEBOOMERANG",(100+.@val); bonus2 bSkillAtk,"GN_CART_TORNADO",(75+.@val); - Id: 1327 AegisName: Axe_Z Name: Axe Type: Weapon SubType: 1hAxe Weight: 800 Attack: 38 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 3 Refineable: true - Id: 1328 AegisName: Blut_Axe Name: Brute Cleaver Type: Weapon SubType: 1hAxe Attack: 150 Range: 1 Jobs: Blacksmith: true Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,60; bonus2 bAddRace,RC_Player_Doram,60; bonus2 bIgnoreDefRaceRate,RC_All,5*.@r; if (.@r>=8) { bonus2 bAddRace,RC_Player_Human,35; bonus2 bAddRace,RC_Player_Doram,35; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,20; bonus2 bAddRace,RC_Player_Doram,20; } if (.@r>=10) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; } - Id: 1329 AegisName: Woe_One_Hand_Axe1_Z Name: Lesser Guild Member's Cleaver Type: Weapon SubType: 1hAxe Weight: 1000 Attack: 110 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"AM_ACIDTERROR","NPC_CRITICALWOUND",1,100; } - Id: 1330 AegisName: Sunset_Buster Name: Sunset Buster Type: Weapon SubType: 1hAxe Weight: 1000 Attack: 165 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bHit,.@r/2; bonus bBaseAtk,4*(.@r/3); if (.@r>=7) bonus bHit,10; if (.@r>=9) { bonus bBaseAtk,20; bonus bAspdRate,8; } - Id: 1331 AegisName: Variant_Axe Name: Abyss Axe Type: Weapon SubType: 1hAxe Weight: 1800 Attack: 180 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; } - Id: 1332 AegisName: Octopus_Axe Name: Octopus Axe Type: Weapon SubType: 1hAxe Weight: 1500 Attack: 170 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bCritAtkRate,5; - Id: 1333 AegisName: Golden_Wrench Name: Golden Wrench Type: Weapon SubType: 1hAxe Weight: 5500 Attack: 220 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",.@val; bonus2 bSkillAtk,"NC_POWERSWING",.@val; - Id: 1334 AegisName: Ein_1HAXE Name: Grinder Axe Type: Weapon SubType: 1hAxe Weight: 1000 Attack: 150 Range: 1 Slots: 1 Jobs: Blacksmith: true Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bVit,3; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",BaseLevel/10; if (getskilllv("CR_ACIDDEMONSTRATION") == 10) bonus bBaseAtk,25; if (.@r>=7) { bonus bAtkRate,5; bonus bHealPower,10; } if (.@r>=9) { bonus bVariableCastrate,-7; bonus bAspdRate,7; } - Id: 1335 AegisName: Cancer_Axe_J Name: Cancer Axe Type: Weapon SubType: 1hAxe Weight: 700 Attack: 10 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,80+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) { bonus bAtkRate,50; bonus bSPDrainValue,2; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; if (.@r>=7) bonus2 bIgnoreDefRaceRate,RC_All,50; if (.@r>=9) bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 1336 AegisName: G_Knight_Axe Name: Guardian Knight Axe Type: Weapon SubType: 1hAxe Weight: 1500 Attack: 210 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAtkRate,5; .@r = getrefine(); bonus bLongAtkRate,.@r; if (.@r >= 9) { bonus2 bSkillAtk,"NC_POWERSWING",20; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; } if (.@r >= 11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 1337 AegisName: Golden_Wrench_J Name: Golden Wrench Type: Weapon SubType: 1hAxe Buy: 200000 Weight: 1800 Attack: 180 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"MC_MAMMONITE",30; - Id: 1339 AegisName: Hauyne_Huuma_EXE Name: Hauyne Huuma Type: Weapon SubType: Huuma Weight: 1200 Attack: 150 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bStr,3; if (.@r>=5) { bonus bAtkRate,2; bonus bAspd,1; } if (.@r>=7) { bonus bBaseAtk,10; bonus2 bSkillAtk,"NJ_HUUMA",10; bonus2 bVariableCastrate,"NJ_HUUMA",-10; } if (.@r>=9) { bonus bBaseAtk,20; bonus2 bSkillAtk,"NJ_HUUMA",20; bonus2 bVariableCastrate,"NJ_HUUMA",-20; } if (.@r>=10) { bonus bAtkRate,3; bonus bMaxHP,500; bonus2 bAddRace,RC_All,2; bonus2 bAddRace,RC_Player_Human,2; bonus2 bAddRace,RC_Player_Doram,2; } if (.@r>=12) { bonus bDelayrate,-5; bonus2 bAddRace,RC_All,3; bonus2 bAddRace,RC_Player_Human,3; bonus2 bAddRace,RC_Player_Doram,3; } - Id: 1340 AegisName: Arcanite_Hammer_EXE Name: Arcanite Hammer Type: Weapon SubType: Mace Weight: 1200 Attack: 110 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Priest: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; if (.@r>=5) { bonus bMatkRate,2; bonus bAspd,1; } if (.@r>=7) { bonus bMatk,10; bonus3 bAutoSpell,"AL_HOLYLIGHT",1,100; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; } if (.@r>=9) { bonus bMatk,20; bonus3 bAutoSpell,"BS_ADRENALINE",1,70; bonus2 bSkillAtk,"AL_HOLYLIGHT",20; } if (.@r>=10) { bonus bMatkRate,3; bonus bMaxHP,500; bonus2 bMagicAtkEle,Ele_Holy,4; } if (.@r>=12) { bonus bDelayrate,-5; bonus2 bMagicAtkEle,Ele_Holy,6; } - Id: 1341 AegisName: Destruction_Axe Name: Destruction Axe Type: Weapon SubType: 1hAxe Weight: 4400 Attack: 230 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"MT_TRIPLE_LASER",5; if (.@r>=5) { bonus2 bSkillAtk,"MT_TRIPLE_LASER",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"MT_TRIPLE_LASER",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus bCritAtkRate,20; bonus2 bSkillAtk,"MT_TRIPLE_LASER",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 1350 AegisName: Comp_Avenger Name: "[Not For Sale] Avenger" Type: Weapon SubType: 2hAxe Weight: 6000 Attack: 270 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus2 bSkillAtk,"NC_AXETORNADO",(.@r/3)*10; if (.@r>=9) bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; if (.@r>=11) bonus2 bAddSize,Size_All,15; - 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,20; bonus bMatkRate,20; 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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: All_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: All_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 || Class == Job_Mechanic || Class == Job_Mechanic_T || Class == Job_Genetic || Class == Job_Genetic_T) 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: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 80 Refineable: true Script: | .@r = getrefine(); bonus2 bSubSize,Size_Medium,10+.@r; bonus bAspdRate,.@r; 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,5; bonus bHit,20; bonus2 bSkillAtk,"MC_MAMMONITE",20; 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 NoStorage: 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 NoStorage: 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 - 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; } if (.@r>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 Merchant: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | bonus2 bAddRace,RC_Undead,10; bonus3 bAutoSpell,"AL_BLESSING",5,5; - 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 Merchant: 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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50; - Id: 1385 AegisName: Bradium_Stonehammer Name: Bradium Stone Hammer Type: Weapon SubType: 2hAxe Buy: 20 Weight: 2700 Attack: 210 Range: 1 Jobs: Blacksmith: true Classes: All_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: | bonus bAspdRate,-25; bonus bUseSPrate,100; if (readparam(bStr)>=95) { bonus bBaseAtk,400; bonus2 bAddEff,Eff_Stun,3000; 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: All_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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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: 1391 AegisName: P_Two_Handed_Axe1 Name: Eden Two-Handed Axe I Type: Weapon SubType: 2hAxe Attack: 195 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1392 AegisName: Ygnus_Stale Name: Ignus Steel Type: Weapon SubType: 2hAxe Buy: 56000 Weight: 1900 Attack: 250 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus bAtkEle,Ele_Fire; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Burning,200; bonus2 bAddEff2,Eff_Burning,100; - Id: 1393 AegisName: End_Sektura Name: End Sectora Type: Weapon SubType: 2hAxe Buy: 56000 Weight: 1900 Attack: 250 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Freeze,300; bonus2 bAddEff2,Eff_Freeze,300; - Id: 1394 AegisName: Upg_Two_Handed_Axe Name: Upg Two Handed Axe Type: Weapon SubType: 2hAxe Buy: 20 Weight: 2000 Attack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bBaseAtk,(getrefine()*14); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); bonus bUnbreakableWeapon; - Id: 1395 AegisName: Velum_Buster Name: Vellum Buster Type: Weapon SubType: 2hAxe Buy: 20 Weight: 2500 Attack: 50 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus bUnbreakableWeapon; bonus3 bSPVanishRaceRate,RC_Player_Human,1000,10; bonus3 bSPVanishRaceRate,RC_Player_Doram,1000,10; - Id: 1396 AegisName: Velum_Guillotine Name: Vellum Guillotine Type: Weapon SubType: 2hAxe Buy: 20 Weight: 5500 Attack: 300 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,30; .@r = getrefine(); if (.@r>=6) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,60; bonus2 bAddRace,RC_Player_Doram,60; } - Id: 1397 AegisName: Bradium_Stonehammer_ Name: Bradium Stone Hammer Type: Weapon SubType: 2hAxe Buy: 20 Weight: 2700 Attack: 210 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 75 Refineable: true Script: | bonus3 bAddEffOnSkill,"BS_HAMMERFALL",Eff_Stun,500+(200*getrefine()); - Id: 1398 AegisName: Metal_Two_Handed_Axe Name: Metal Two Handed Axe Type: Weapon SubType: 2hAxe Buy: 20 Attack: 105 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*7); .@i = min(BaseLevel/10,12); if (.@i>2) bonus bBaseAtk,((.@i-2)*5); - Id: 1399 AegisName: TE_Woe_Two_Handed_Axe Name: TE Woe Two Handed Axe Type: Weapon SubType: 2hAxe Attack: 150 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddEff,Eff_Stun,1000; bonus2 bAddRace,RC_Player_Doram,40; - Id: 1400 AegisName: Sinister_Spear Name: Spear of Vicious Mind Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1400 Attack: 140 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); - 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 bPerfectHitAddRate,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: 100 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 bPerfectHitAddRate,25; bonus bHit,30; - Id: 1419 AegisName: 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 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: All_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: All_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: All_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 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bIgnoreDefClass,Class_Normal; bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 NoStorage: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if (.@r>8) { if (BaseJob == Job_Knight) bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200; else if (BaseJob == Job_Crusader) bonus3 bAutoSpell,"PA_PRESSURE",5,100; bonus bAspdRate,5; } - 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: All_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: All_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,100; - 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: 1433 AegisName: Imperial_Spear Name: Imperial Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1800 Attack: 180 MagicAttack: 40 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 102 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",20+(.@r/2*3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",20+(.@r/2*3); - Id: 1434 AegisName: P_Sphere1 Name: Eden Spear I Type: Weapon SubType: 1hSpear Attack: 165 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1435 AegisName: Cannon_Spear Name: Cannon Spear Type: Weapon SubType: 1hSpear Buy: 56000 Weight: 1600 Attack: 180 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxSP,-100; bonus2 bSkillAtk,"LG_CANNONSPEAR",10+(getrefine()*3); - Id: 1436 AegisName: Velum_Spear Name: Vellum Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 850 Attack: 150 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus2 bAddRace,RC_Player_Human,60; bonus2 bAddRace,RC_Player_Doram,60; .@r = getrefine(); if (.@r>=6) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",80; bonus2 bSkillAtk,"LG_PINPOINTATTACK",80; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Player_Doram,30; } - Id: 1437 AegisName: TE_Woe_Pike Name: TE Woe Pike Type: Weapon SubType: 1hSpear Attack: 100 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Curse,1000; - Id: 1438 AegisName: Thanos_Spear Name: Thanos Spear Type: Weapon SubType: 1hSpear Buy: 10 Weight: 3000 Attack: 150 MagicAttack: 100 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 1439 AegisName: Half_BF_Spear1 Name: Half BF Spear1 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 Script: | bonus bStr,2; bonus2 bAddRace,RC_DemiHuman,45; bonus2 bAddRace,RC_Player_Human,45; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; if (BaseJob == Job_Crusader) bonus bAspdRate,20; - Id: 1440 AegisName: Battle_Hook_ Name: Battle Hook Type: Weapon SubType: 1hSpear Buy: 20 Weight: 900 Attack: 140 Range: 3 Slots: 3 Jobs: Crusader: true Knight: true Swordman: true Classes: All_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: 1441 AegisName: Ru_Blue_Spear Name: Ru Blue Spear Type: Weapon SubType: 1hSpear Buy: 10 Weight: 1200 Attack: 180 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bStr,5; bonus bAgi,5; - Id: 1442 AegisName: Ru_Gold_Spear Name: Ru Gold Spear Type: Weapon SubType: 1hSpear Weight: 1200 Attack: 180 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bStr,8; bonus bAgi,8; - Id: 1443 AegisName: Scarlet_Spear Name: Crimson Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 900 Attack: 90 Range: 3 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,((max(0,BaseLevel-70)/10)*5); - Id: 1444 AegisName: Spear_of_Trust Name: Thunder Spear Type: Weapon SubType: 1hSpear Weight: 2000 Attack: 140 Range: 3 Slots: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; if (.@r>=7) { .@val = 10; if (.@r>=9) .@val += 15; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddRace,RC_Fish,.@val; } - Id: 1445 AegisName: Spear_of_Trust2 Name: "[Rental] Hunting Spear" Type: Weapon SubType: 1hSpear Buy: 20 Attack: 140 Range: 3 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); if (.@r >= 7) { bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Earth,10; } if (.@r >= 9) { bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Water,15; bonus2 bAddEle,Ele_Earth,15; } bonus bAtkEle,Ele_Fire; - Id: 1446 AegisName: Thanos_Spear_J Name: Requiem Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1000 Attack: 130 Range: 3 Jobs: Crusader: true Knight: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if (.@r>=5) { .@b += (.@r-5)*15+20; } bonus2 bAddRace2,RC2_BioLab,.@b; - Id: 1447 AegisName: Poison_Forged_Spear Name: Poison Forged Spear Type: Weapon SubType: 1hSpear Weight: 500 Attack: 150 Range: 3 Slots: 3 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Poison; bonus bCritical,10; skill "TF_DOUBLE",5; bonus2 bAddEff,Eff_Poison,1000; bonus2 bAddEff2,Eff_Poison,300; - Id: 1448 AegisName: UnrivaledSpear Name: Unrivaled Spear Type: Weapon SubType: 1hSpear Weight: 2000 Attack: 140 Range: 3 Slots: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); if (.@r >= 7) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if (.@r >= 9) { bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } - Id: 1449 AegisName: Gelerdria_ Name: Gelerdria Type: Weapon SubType: 1hSpear Buy: 20 Weight: 700 Attack: 145 Range: 3 Slots: 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: 1450 AegisName: Sinister_Lance Name: Lance of Vicious Mind Type: Weapon SubType: 2hSpear Buy: 20 Weight: 2250 Attack: 225 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); - 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; - 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",5,100; bonus bStr,3; - Id: 1472 AegisName: Staff_Of_Soul Name: Soul Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1400 Attack: 25 MagicAttack: 200 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; - Id: 1473 AegisName: Wizardy_Staff Name: Wizardry Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 2400 Attack: 120 MagicAttack: 200 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; - 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: 1 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 bSubRace,RC_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bSubEle,Ele_Dark,10; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Undead,20; bonus2 bAddRace,RC_Demon,20; 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 bSubRace,RC_Undead,10; bonus2 bSubRace,RC_Demon,10; bonus2 bSubEle,Ele_Dark,10; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Undead,20; bonus2 bAddRace,RC_Demon,20; 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 Buy: 20 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 NoStorage: 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: All_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: All_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: All_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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus3 bAutoSpell,"KN_PIERCE",5,30; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; } - Id: 1489 AegisName: Spearfish_ Name: Marlin Type: Weapon SubType: 2hSpear Attack: 220 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Bleeding,150; bonus3 bAddEffOnSkill,"LK_SPIRALPIERCE",Eff_Bleeding,150; bonus2 bAddEff2,Eff_Freezing,100; bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_INSPIRATION",50; if (BaseLevel>99) { bonus bBaseAtk,30; } - Id: 1490 AegisName: Giant_Lance Name: Gigantic Lance Type: Weapon SubType: 2hSpear Buy: 20 Weight: 20000 Attack: 20 Range: 3 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 140 Refineable: true Script: | bonus bAspd,-10; bonus2 bSkillCooldown,"LK_SPIRALPIERCE",20000; if (readparam(bStr)>=120) { bonus bBaseAtk,300; } UnEquipScript: | heal 0,-600; - Id: 1491 AegisName: Upg_Lance Name: Upg Lance Type: Weapon SubType: 2hSpear Buy: 20 Weight: 1500 Attack: 105 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bBaseAtk,(getrefine()*12); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); - Id: 1492 AegisName: Velum_Glaive Name: Vellum Glaive Type: Weapon SubType: 2hSpear Buy: 20 Weight: 4500 Attack: 250 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; .@r = getrefine(); if (.@r>=6) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bSkillAtk,"LG_OVERBRAND",50; } if (.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,300,BF_MAGIC,0; } - Id: 1493 AegisName: Metal_Lance Name: Metal Lance Type: Weapon SubType: 2hSpear Buy: 20 Attack: 100 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,(getrefine()*6); .@i = min(BaseLevel/10,12); if (.@i>2) bonus bBaseAtk,((.@i-2)*5); - Id: 1494 AegisName: Undine_Spear Name: Spear Of Odin Type: Weapon SubType: 2hSpear Buy: 50000 Weight: 3800 Attack: 190 Range: 3 Slots: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | bonus bAtkEle,Ele_Water; bonus bMaxHPrate,getrefine(); - Id: 1495 AegisName: TE_Woe_Lance Name: TE Woe Lance Type: Weapon SubType: 2hSpear Attack: 150 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Blind,1000; - Id: 1496 AegisName: Thanos_Long_Spear Name: Thanos Long Spear Type: Weapon SubType: 2hSpear Buy: 10 Weight: 3750 Attack: 250 MagicAttack: 50 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 1497 AegisName: Hell_Fire_S Name: Hellfire Type: Weapon SubType: 2hSpear Buy: 20 Weight: 3500 Attack: 200 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_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,100; bonus bStr,3; - Id: 1498 AegisName: Scarlet_Lance Name: Crimson Lance Type: Weapon SubType: 2hSpear Buy: 20 Weight: 1750 Attack: 175 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bBaseAtk,(max(0,BaseLevel-70)/10)*5; - Id: 1499 AegisName: Thanos_Long_Spear_J Name: Requiem Lance Type: Weapon SubType: 2hSpear Buy: 20 Weight: 1500 Attack: 220 Range: 3 Jobs: Crusader: true Knight: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@b = 40; .@c = 5; bonus bUnbreakableWeapon; if (.@r>=5) { .@b += (.@r-5)*15+30; .@c += (.@r-5); } bonus2 bAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; - 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,-66; bonus bDef2Rate,-66; - 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_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Undead,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; 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: 350 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,50; bonus bStr,20; bonus bAspdRate,10; bonus3 bAutoSpell,"MG_THUNDERSTORM",10,100; autobonus "{ bonus bSplashRange,1; }",50,10000; - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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: 440 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_Undead,40; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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,-66; bonus bDef2Rate,-66; - 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; 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 bAddEle,Ele_Dark,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 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; 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 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 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: All_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 - 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus bAspdRate,5; } if (.@r>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: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: 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 Classes: All_Third: true Fourth: 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_Water,7; bonus2 bAddEle,Ele_Earth,7; bonus2 bAddEle,Ele_Fire,7; bonus2 bAddEle,Ele_Wind,7; bonus2 bSubEle,Ele_Holy,-5; - 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 MagicAttack: 120 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Refineable: true Script: | 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 MagicAttack: 140 Range: 1 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 bAspdRate,5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1564 AegisName: Encyclopedia Name: Encyclopedia Type: Weapon SubType: Book Buy: 20 Weight: 2000 Attack: 110 MagicAttack: 100 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | 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 MagicAttack: 100 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 85 Refineable: true Script: | 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 MagicAttack: 125 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 MagicAttack: 100 Range: 1 Jobs: Priest: true Sage: true StarGladiator: 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 bStr,5; bonus bDex,2; - 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 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Refineable: true Script: | bonus bInt,3; bonus bSPrecovRate,5; - Id: 1573 AegisName: Ancient_Magic Name: Ancient Magic Type: Weapon SubType: Book Buy: 20 Weight: 700 Attack: 30 MagicAttack: 140 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true - Id: 1574 AegisName: BF_Book1 Name: Brave Battle Strategy Book Type: Weapon SubType: Book Buy: 20 Attack: 90 MagicAttack: 125 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 NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,2; bonus bInt,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: 1575 AegisName: BF_Book2 Name: Valorous Battle Strategy Book Type: Weapon SubType: Book Buy: 20 Attack: 90 MagicAttack: 125 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 NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; bonus bInt,2; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; 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 MagicAttack: 115 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: | bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreDefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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 MagicAttack: 115 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: | bonus2 bAddRace,RC_DemiHuman,80; bonus2 bAddRace,RC_Player_Human,80; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus bUnbreakableWeapon; .@r = getrefine(); if (.@r>5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus bMatkRate,5; bonus bVariableCastrate,-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,10; 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 MagicAttack: 100 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 bInt,3; bonus bDex,2; bonus bCritical,20+((readparam(bLuk)*2)/10); bonus2 bAddSize,Size_All,40; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 Script: | bonus bMatkRate,20; bonus bAspdRate,5; - 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: 1583 AegisName: P_Dic1 Name: Eden Book I Type: Weapon SubType: Book Attack: 135 MagicAttack: 110 Range: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1584 AegisName: Chilly_Spell_Book Name: Cold Magic Book Type: Weapon SubType: Book Buy: 56000 Weight: 1000 Attack: 100 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Water; bonus bUnbreakableWeapon; bonus bDex,1; .@r = getrefine(); bonus2 bSkillAtk,"MG_COLDBOLT",(.@r*3); bonus2 bSkillAtk,"SO_DIAMONDDUST",(.@r*3); bonus2 bSkillUseSP,"MG_COLDBOLT",-(.@r*5); bonus2 bSkillUseSP,"SO_DIAMONDDUST",-(.@r*5); - Id: 1585 AegisName: Upg_Book Name: Upg Book Type: Weapon SubType: Book Buy: 20 Weight: 600 Attack: 45 MagicAttack: 20 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); - Id: 1586 AegisName: Velum_Bible Name: Vellum Bible Type: Weapon SubType: Book Buy: 20 Weight: 600 Attack: 110 MagicAttack: 125 Range: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus bHealPower,(BaseLevel/5)-20; if (getrefine()>=6) { bonus2 bSkillCooldown,"AB_LAUDAAGNUS",-3000; bonus2 bSkillCooldown,"AB_LAUDARAMUS",-3000; bonus2 bSkillCooldown,"AB_CLEARANCE",-10000; bonus2 bSkillUseSP,"AB_LAUDAAGNUS",-60; bonus2 bSkillUseSP,"AB_LAUDARAMUS",-60; bonus2 bSkillUseSP,"AB_CLEARANCE",-60; } - Id: 1587 AegisName: Velum_Encyclopedia Name: Vellum Great Encyclopedia Type: Weapon SubType: Book Buy: 20 Weight: 1000 Attack: 130 Range: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,80+.@r; bonus2 bAddRace,RC_Player_Doram,80+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,30; if (.@r>8) { autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; } - Id: 1588 AegisName: Metal_Book Name: Metal Book Type: Weapon SubType: Book Buy: 20 Attack: 45 MagicAttack: 10 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (BaseLevel>20) { bonus bBaseAtk,((min(BaseLevel,120)-20)/10)*5; } - Id: 1589 AegisName: Legacy_Of_Dragon_ Name: Legacy of Dragon Type: Weapon SubType: Book Buy: 20 Weight: 700 Attack: 130 Range: 1 Slots: 2 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: 1590 AegisName: Snake_Encyclopedia Name: Daizenshu Dakatsu Type: Weapon SubType: Book Buy: 60000 Weight: 1500 Attack: 10 MagicAttack: 110 Range: 1 Slots: 2 Jobs: Priest: true Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; - Id: 1591 AegisName: TE_Woe_Book Name: TE Woe Book Type: Weapon SubType: Book Attack: 120 Range: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bAddEff,Eff_Blind,1000; bonus bHealPower,5; - Id: 1592 AegisName: Thor_Pedigree_Book Name: Thunder Pedigree Book Type: Weapon SubType: Book Buy: 10 Weight: 400 Attack: 90 MagicAttack: 130 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 27 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Wind; - Id: 1593 AegisName: Book_Of_Destiny Name: Book of Destiny Type: Weapon SubType: Book Buy: 10 Weight: 400 Attack: 90 MagicAttack: 90 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 24 Refineable: true Script: | .@r = getrefine(); bonus bLuk,5; bonus bFlee2,15; if (.@r >= 7) bonus bFlee2,5; bonus bUnbreakableWeapon; - Id: 1594 AegisName: Fire_Pedigree_Book Name: Flame Pedigree Book Type: Weapon SubType: Book Buy: 10 Weight: 400 Attack: 90 MagicAttack: 130 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 27 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Fire; - Id: 1595 AegisName: Ice_Pedigree_Book Name: Ice Pedigree Book Type: Weapon SubType: Book Buy: 10 Weight: 400 Attack: 90 MagicAttack: 130 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 27 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",5+.@r; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Water; - Id: 1596 AegisName: Earth_Pedigree_Book Name: Earth Pedigree Book Type: Weapon SubType: Book Buy: 10 Weight: 400 Attack: 90 MagicAttack: 130 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 27 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",5+.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",5+.@r; bonus bUnbreakableWeapon; - Id: 1597 AegisName: Half_BF_Book2 Name: Half BF Book2 Type: Weapon SubType: Book Buy: 20 Attack: 90 MagicAttack: 125 Range: 1 Jobs: Priest: true Sage: true Taekwon: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 80 Refineable: true Script: | bonus bStr,1; bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; - Id: 1598 AegisName: Snake_Encyclopedia_ Name: Daizenshu Dakatsu Type: Weapon SubType: Book Buy: 60000 Weight: 1500 Attack: 10 MagicAttack: 110 Range: 1 Slots: 3 Jobs: Priest: true Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; - Id: 1599 AegisName: Angra_Manyu Name: Angra Manyu Type: Weapon SubType: Mace Buy: 1 Weight: 10 Attack: 5000 MagicAttack: 10000 Range: 2 Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,50; bonus bBaseAtk,3300; 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; bonus bVariableCastrate,-100; bonus bFixedCastrate,-100; bonus bAspdRate,100; - Id: 1600 AegisName: Sinister_Rod Name: Rod of Vicious Mind Type: Weapon SubType: Staff Buy: 20 Weight: 600 Attack: 60 MagicAttack: 120 Range: 1 Slots: 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: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,5; bonus bUnbreakableWeapon; - Id: 1601 AegisName: Rod Name: Rod Type: Weapon SubType: Staff Buy: 50 Weight: 400 Attack: 15 MagicAttack: 30 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 - Id: 1602 AegisName: Rod_ Name: Rod Type: Weapon SubType: Staff Buy: 50 Weight: 400 Attack: 15 MagicAttack: 30 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 - Id: 1603 AegisName: Rod__ Name: Rod Type: Weapon SubType: Staff Buy: 50 Weight: 400 Attack: 15 MagicAttack: 30 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 - Id: 1604 AegisName: Wand Name: Wand Type: Weapon SubType: Staff Buy: 2500 Weight: 400 Attack: 25 MagicAttack: 45 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; - Id: 1605 AegisName: Wand_ Name: Wand Type: Weapon SubType: Staff Buy: 2500 Weight: 400 Attack: 25 MagicAttack: 45 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; - Id: 1606 AegisName: Wand__ Name: Wand Type: Weapon SubType: Staff Buy: 2500 Weight: 400 Attack: 25 MagicAttack: 45 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; - Id: 1607 AegisName: Staff Name: Staff Type: Weapon SubType: Staff Buy: 9500 Weight: 400 Attack: 40 MagicAttack: 70 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; - Id: 1608 AegisName: Staff_ Name: Staff Type: Weapon SubType: Staff Buy: 9500 Weight: 400 Attack: 40 MagicAttack: 70 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; - Id: 1609 AegisName: Staff__ Name: Staff Type: Weapon SubType: Staff Buy: 9500 Weight: 400 Attack: 40 MagicAttack: 70 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; - Id: 1610 AegisName: Arc_Wand Name: Arc Wand Type: Weapon SubType: Staff Buy: 45000 Weight: 400 Attack: 60 MagicAttack: 95 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; - Id: 1611 AegisName: Arc_Wand_ Name: Arc Wand Type: Weapon SubType: Staff Buy: 45000 Weight: 400 Attack: 60 MagicAttack: 95 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; - Id: 1612 AegisName: Arc_Wand__ Name: Arc Wand Type: Weapon SubType: Staff Buy: 45000 Weight: 400 Attack: 60 MagicAttack: 95 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; - Id: 1613 AegisName: Mighty_Staff Name: Mighty Staff Type: Weapon SubType: Staff Buy: 20 Weight: 700 Attack: 130 MagicAttack: 100 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 bSPDrainValue,-2; - Id: 1614 AegisName: Blessed_Wand Name: Wand of Occult Type: Weapon SubType: Staff Buy: 20 Weight: 700 Attack: 75 MagicAttack: 105 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; - Id: 1615 AegisName: Bone_Wand Name: Evil Bone Wand Type: Weapon SubType: Staff Buy: 20 Weight: 700 Attack: 40 MagicAttack: 110 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; - Id: 1616 AegisName: Staff_Of_Wing Name: Wing Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 60 MagicAttack: 115 Range: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 40 Refineable: true Script: | bonus bVariableCastrate,-5; bonus bAtkEle,Ele_Wind; - Id: 1617 AegisName: Survival_Rod Name: Survivor's Rod Type: Weapon SubType: Staff Buy: 85000 Weight: 1000 Attack: 50 MagicAttack: 120 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 bMaxHP,300; - Id: 1618 AegisName: Survival_Rod_ Name: Survivor's Rod Type: Weapon SubType: Staff Buy: 85000 Weight: 1000 Attack: 50 MagicAttack: 120 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 bMaxHP,400; - Id: 1619 AegisName: Survival_Rod2 Name: Survivor's Rod Type: Weapon SubType: Staff Buy: 85000 Weight: 1000 Attack: 50 MagicAttack: 120 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 bMaxHP,300; - Id: 1620 AegisName: Survival_Rod2_ Name: Survivor's Rod Type: Weapon SubType: Staff Buy: 85000 Weight: 1000 Attack: 50 MagicAttack: 120 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 bMaxHP,400; - Id: 1621 AegisName: Hypnotist's_Staff Name: Hypnotist's Staff Type: Weapon SubType: Staff Buy: 43000 Weight: 500 Attack: 70 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 30 Refineable: true Script: | bonus bInt,1; - Id: 1622 AegisName: Hypnotist's_Staff_ Name: Hypnotist's Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 70 MagicAttack: 120 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 30 Refineable: true Script: | bonus bInt,1; - Id: 1623 AegisName: Mighty_Staff_C Name: Mighty Staff Type: Weapon SubType: Staff Buy: 1 Attack: 165 MagicAttack: 120 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 bInt,4; bonus bStr,10; bonus bSPDrainValue,-1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1624 AegisName: Lich_Bone_Wand Name: Lich's Bone Wand Type: Weapon SubType: Staff Buy: 20 Weight: 800 Attack: 60 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | bonus bInt,1; bonus bDex,1; bonus bAtkEle,Ele_Undead; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if (.@r>=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 MagicAttack: 105 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 bHealPower,(getrefine()/2)*3; - Id: 1626 AegisName: Piercing_Staff Name: Piercing Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 80 MagicAttack: 145 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; - Id: 1627 AegisName: Staffy Name: Staffy Type: Weapon SubType: Staff Buy: 20 Attack: 40 MagicAttack: 120 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 bInt,4; - Id: 1628 AegisName: Survival_Rod_C Name: Refined Survivor's Rod Type: Weapon SubType: Staff Buy: 1 Attack: 71 MagicAttack: 145 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: 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 bDex,4; bonus bMaxHP,500; - Id: 1629 AegisName: Walking_Stick Name: Gentleman's Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 40 MagicAttack: 125 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 bDex,1; - Id: 1630 AegisName: Release_Of_Wish Name: Release of Wish Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 125 Range: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | bonus bInt,3; bonus bHealPower,5; autobonus "{ bonus2 bHPRegenRate,200,2000; bonus2 bSPRegenRate,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 MagicAttack: 140 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus2 bVariableCastrate,"AL_HOLYLIGHT",-25; bonus2 bVariableCastrate,"PR_TURNUNDEAD",-25; bonus2 bVariableCastrate,"PR_MAGNUS",-25; - Id: 1632 AegisName: BF_Staff1 Name: Warlock's Magic Wand Type: Weapon SubType: Staff Buy: 20 Attack: 70 MagicAttack: 125 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 NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,4; bonus bDex,3; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; - Id: 1633 AegisName: BF_Staff2 Name: Warlock's Battle Wand Type: Weapon SubType: Staff Buy: 20 Attack: 70 MagicAttack: 125 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 NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Player_Human,15; bonus3 bAddEff,Eff_Stun,500,ATF_MAGIC; bonus bUnbreakableWeapon; - Id: 1634 AegisName: BF_Staff3 Name: Strong Recovery Wand Type: Weapon SubType: Staff Buy: 20 Attack: 70 MagicAttack: 125 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 NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | 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 MagicAttack: 125 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 NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,3; bonus bDex,2; 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 MagicAttack: 160 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 75 Refineable: true Script: | bonus bAtkEle,Ele_Dark; bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-(.@r/2)*3; - Id: 1637 AegisName: Eraser Name: Eraser Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 80 MagicAttack: 170 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | bonus bInt,3; bonus bDex,2; bonus bSPrecovRate,8; bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",(getrefine()>9?3:1),5,BF_MAGIC,0; - Id: 1638 AegisName: Healing_Staff_C Name: Staff Of Healing Type: Weapon SubType: Staff Buy: 20 Attack: 10 MagicAttack: 125 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 bHealPower,15; - Id: 1639 AegisName: N_Rod Name: Novice Rod Type: Weapon SubType: Staff Attack: 15 MagicAttack: 32 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 - Id: 1640 AegisName: Krieger_Onehand_Staff1 Name: Glorious Arc Wand Type: Weapon SubType: Staff Buy: 20 Attack: 70 MagicAttack: 135 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; .@r = getrefine(); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((.@r > 5) ? 5 : 0); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((.@r > 5) ? 5 : 0); bonus bUnbreakableWeapon; if (.@r > 8) { bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; } - Id: 1641 AegisName: Krieger_Onehand_Staff2 Name: Glorious Cure Wand Type: Weapon SubType: Staff Buy: 20 Attack: 70 MagicAttack: 135 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; .@r = getrefine(); if (.@r > 5) { bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus bHealPower,5+(min(14,.@r)-5)*2; } if (.@r > 8) bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1; if (.@r > 9) { bonus bHealPower,10; } - Id: 1642 AegisName: Staff_Of_Darkness Name: Staff Of Darkness Type: Weapon SubType: Staff Buy: 20 Attack: 100 MagicAttack: 120 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 bVariableCastrate,-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 MagicAttack: 155 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 bInt,4; .@r = getrefine(); if (.@r>5) { bonus bInt,.@r-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 MagicAttack: 145 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_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; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; - Id: 1645 AegisName: Lich_Bone_Wand_M Name: Lich's Bone Wand Type: Weapon SubType: Staff Buy: 20 Weight: 800 Attack: 60 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_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; .@r = getrefine(); bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+.@r; if (.@r>=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 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bInt,4; bonus bMdef,.@r; bonus2 bSkillAtk,"WZ_STORMGUST",.@r; if (.@r > 9) bonus2 bVariableCastrate,"WZ_STORMGUST",-8; - Id: 1647 AegisName: Croce_Staff Name: Croce Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 175 Range: 1 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | bonus bAtkEle,Ele_Holy; 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 MagicAttack: 170 Range: 1 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 50 Refineable: true Script: | bonus bInt,2; bonus bDex,1; if (getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } - Id: 1649 AegisName: Rafini_Staff Name: Laphine Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 180 Range: 1 Jobs: Monk: true Priest: true Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bFixedCastrate,-getrefine(); - Id: 1650 AegisName: P_Staff1 Name: Eden Staff I Type: Weapon SubType: Staff Attack: 60 MagicAttack: 125 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,2; - Id: 1651 AegisName: P_Staff2 Name: Eden Staff II Type: Weapon SubType: Staff Attack: 60 MagicAttack: 150 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,3; - Id: 1652 AegisName: Tourist_Staff Name: Tourist Staff Type: Weapon SubType: Staff Weight: 500 Attack: 35 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 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,15; bonus bInt,2; bonus bAgi,1; - Id: 1653 AegisName: Staff_Of_Healing_C Name: Staff of Healing Type: Weapon SubType: Staff Buy: 20 Attack: 10 MagicAttack: 100 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: | bonus bAtkEle,Ele_Holy; bonus bHealPower,18; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bHealPower,3; bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1654 AegisName: Mental_Stick Name: Mental Stick Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 40 MagicAttack: 170 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 102 Refineable: true Script: | .@r = getrefine(); if (.@r>5) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",(.@r-6)*2; bonus bMaxHPrate,-(.@r-6)*2; } bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-3000; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-60; UnEquipScript: | heal 0,-100; - Id: 1655 AegisName: Adventure_Staff Name: Adventure Staff Type: Weapon SubType: Staff Attack: 60 Range: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Script: | bonus bUnbreakableWeapon; - Id: 1656 AegisName: Academy_Wand Name: Academy Wand Type: Weapon SubType: Staff Weight: 600 Attack: 60 Range: 1 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bMatkRate,15; bonus bInt,5-(BaseLevel/10); bonus bMaxSP,200-(40*(BaseLevel/10)); - Id: 1657 AegisName: Wand_Of_Affection Name: Wand Of Affection Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bInt,2; bonus bAtkEle,Ele_Holy; bonus bHealPower,10; - Id: 1658 AegisName: P_Staff3 Name: Eden Staff III Type: Weapon SubType: Staff Attack: 60 MagicAttack: 170 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,4; - Id: 1659 AegisName: Recovery_Light Name: Light of Recovery Type: Weapon SubType: Staff Buy: 56000 Weight: 400 Attack: 30 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon; .@r = getrefine(); bonus bHealPower,(.@r*6); bonus2 bSkillUseSP,"AL_HEAL",-(.@r*10); bonus2 bSkillUseSP,"AB_CHEAL",-(.@r*12); bonus2 bSkillUseSP,"AB_HIGHNESSHEAL",-(.@r*14); - Id: 1660 AegisName: Wand_Of_Affection2 Name: Empowered Wand Of Affection Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus bInt,4; bonus bHealPower,20; - Id: 1661 AegisName: Mental_Destroyer Name: Mental Destroyer Type: Weapon SubType: Staff Buy: 20 Weight: 1400 Attack: 100 MagicAttack: 50 Range: 1 Jobs: Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | .@r = getrefine(); bonus bInt,10; bonus bUnbreakableWeapon; bonus bUseSPrate,100; bonus bMdef,20; bonus3 bSPVanishRate,1000,5+(.@r>5?3:0),BF_WEAPON|BF_MAGIC|BF_MISC; - Id: 1662 AegisName: Bone_Wand_ Name: Evil Bone Wand Type: Weapon SubType: Staff Buy: 20 Weight: 700 Attack: 40 MagicAttack: 110 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,4; bonus bAtkEle,Ele_Undead; - Id: 1663 AegisName: Staff_Of_Bordeaux_ Name: Staff Of Bordeaux Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 50 Refineable: true Script: | bonus bInt,2; bonus bDex,1; if (getskilllv("SA_DRAGONOLOGY") == 5) { bonus bUseSPrate,-15; bonus bInt,3; } - Id: 1664 AegisName: Thorn_Staff_ Name: Thorn Staff of Darkness Type: Weapon SubType: Mace Buy: 10 Weight: 700 Attack: 60 MagicAttack: 160 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 75 Refineable: true Script: | bonus bInt,3; bonus bDex,3; .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_Normal,.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@r; bonus bDelayrate,-(.@r/2)*3; bonus bAtkEle,Ele_Dark; - Id: 1665 AegisName: Piercing_Staff_ Name: Piercing Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 80 MagicAttack: 145 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bInt,4; bonus2 bIgnoreMdefClassRate,Class_Normal,10+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,10+.@r; - Id: 1666 AegisName: Healing_Staff_ Name: Healing Staff Type: Weapon SubType: Staff Buy: 20 Weight: 400 Attack: 10 MagicAttack: 105 Range: 1 Slots: 2 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 55 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus bHealPower,(getrefine()*3/2); - Id: 1667 AegisName: TE_Woe_Staff Name: TE Woe Staff Type: Weapon SubType: Staff Attack: 50 MagicAttack: 100 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: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus3 bAddEff,Eff_Blind,1000,ATF_MAGIC; bonus bHealPower,5; - Id: 1668 AegisName: Sword_Stick Name: Sword Stick Type: Weapon SubType: Staff Buy: 10 Weight: 500 Attack: 120 MagicAttack: 150 Slots: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 80 Refineable: true Script: | bonus bAspdRate,10; - Id: 1669 AegisName: Thanos_Staff Name: Thanos Staff Type: Weapon SubType: Staff Buy: 10 Weight: 1000 Attack: 100 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,15; autobonus "{ bonus2 bHPRegenRate,300,2000; bonus2 bSPRegenRate,50,2000; }",50,60000,BF_MAGIC,"{ specialeffect2 EF_HEALSP; }"; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 1670 AegisName: RWC_Memory_Staff Name: RWC Memory Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 25 MagicAttack: 30 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: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bMatk,30*(.@r/3); if (.@r>=6) bonus2 bMagicAddRace,RC_All,(.@r>=9?10:5); if (.@r>=9) bonus4 bAutoSpell,"HW_MAGICPOWER",1,5,0; - Id: 1671 AegisName: Staff_Of_Evil_Slayer Name: Evil Slayer Vanquisher Staff Type: Weapon SubType: Staff Weight: 800 Attack: 30 MagicAttack: 155 Slots: 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: 3 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Demon,10; .@r = getrefine(); if (.@r>=9) { .@dmg = 5; if (.@r>=12) { .@dmg += 7; } bonus bMatkRate,.@dmg; } - Id: 1672 AegisName: Safety_Rod Name: Safety Rod Type: Weapon SubType: Staff Weight: 500 Attack: 10 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 36 Refineable: true Script: | bonus bInt,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20; if (getrefine()>5) .@val += getrefine()-5; bonus2 bSubRace,RC_DemiHuman,5+.@val; bonus2 bSubRace,RC_Player_Human,5+.@val; - Id: 1673 AegisName: Half_BF_Staff4 Name: Half BF Staff4 Type: Weapon SubType: Staff Buy: 20 Attack: 70 MagicAttack: 125 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 Script: | bonus bInt,3; bonus bDex,2; bonus bDelayrate,-10; bonus2 bSPLossRate,5,12000; - Id: 1674 AegisName: Half_BF_Staff2 Name: Half BF Staff2 Type: Weapon SubType: Staff Buy: 20 Attack: 70 MagicAttack: 125 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 Script: | bonus bInt,3; bonus bDex,3; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus3 bAddEff,Eff_Stun,200,ATF_MAGIC; - Id: 1675 AegisName: Walking_Stick_ Name: Gentleman's Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 40 MagicAttack: 125 Range: 1 Slots: 3 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 bDex,1; - Id: 1676 AegisName: Baculum_Daemonicum Name: Baculum Daemonicum Type: Weapon SubType: Staff Buy: 20 Weight: 1200 Attack: 60 MagicAttack: 150 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: 4 EquipLevelMin: 80 Refineable: true Script: | bonus bVariableCastrate,-10; if (BaseLevel > 99) { bonus bMatk,30; } if (getrefine() > 8) { bonus3 bAddEff,Eff_Blind,2000,ATF_MAGIC; bonus bUseSPrate,-10; } - Id: 1677 AegisName: Ru_Blue_Wand Name: Ru Blue Wand Type: Weapon SubType: Staff Buy: 10 Attack: 50 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bDex,5; bonus bInt,5; - Id: 1678 AegisName: Ru_Gold_Wand Name: Ru Gold Wand Type: Weapon SubType: Staff Attack: 50 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bDex,8; bonus bInt,8; - Id: 1679 AegisName: Rafini_Staff_S Name: Laphine Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 180 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: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bFixedCastrate,-getrefine(); - Id: 1680 AegisName: Scarlet_Rod Name: Crimson One-Handed Staff Type: Weapon SubType: Staff Buy: 10 Weight: 600 Attack: 60 MagicAttack: 70 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: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bInt,4; bonus bMatk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; - Id: 1681 AegisName: Newbie_Foxtail Name: Short Foxtail Staff Type: Weapon SubType: Staff Buy: 20 Attack: 30 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1682 AegisName: Shadow_Staff Name: Shadow Staff Type: Weapon SubType: Staff Weight: 600 MagicAttack: 130 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WL_HELLINFERNO",(getskilllv("WL_HELLINFERNO") >= 5 ? 100 : 0) + (.@r*10); bonus2 bIgnoreMdefRaceRate,RC_All,5; autobonus "{ bonus2 bVariableCastrate,\"WL_HELLINFERNO\",-30; }",.@r*20,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; - Id: 1683 AegisName: Abundantly_Foxtail Name: Enriched Foxtail Staff Type: Weapon SubType: Staff Buy: 20 Weight: 200 Attack: 50 MagicAttack: 70 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 12 Refineable: true Script: | bonus bMaxSP,50; bonus bUnbreakableWeapon; - Id: 1684 AegisName: Long_Foxtail Name: Long Foxtail Staff Type: Weapon SubType: Staff Buy: 20 Weight: 200 Attack: 50 Range: 2 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 12 Refineable: true Script: | bonus bLongAtkRate,5; bonus bMaxHP,200; bonus bUnbreakableWeapon; - Id: 1685 AegisName: DragonFry_Foxtail Name: Dragonfly Sitting Foxtail Staff Type: Weapon SubType: Staff Buy: 20 Weight: 300 Attack: 70 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 20 Refineable: true Script: | bonus bInt,1; bonus bMaxHP,100; bonus bMaxSP,150; bonus bUnbreakableWeapon; - Id: 1686 AegisName: BigSize_Foxtail Name: Large Foxtail Staff Type: Weapon SubType: Staff Buy: 20 Weight: 300 Attack: 70 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 20 Refineable: true Script: | bonus bLongAtkRate,8; bonus bDex,1; bonus bMaxHP,200; bonus bMaxSP,100; bonus bUnbreakableWeapon; - Id: 1687 AegisName: Beginner_FoxTail Name: Beginner Foxtail Staff Type: Weapon SubType: Staff Buy: 20 Weight: 100 Attack: 40 MagicAttack: 15 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 3 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bUnbreakableWeapon; - Id: 1688 AegisName: Staff_of_Trust Name: Thunder Wand Type: Weapon SubType: Staff Weight: 1000 Attack: 160 MagicAttack: 145 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: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; bonus bUnbreakableWeapon; if (.@r>=7) { .@val = 10; if (.@r>=9) .@val += 15; bonus2 bMagicAddEle,Ele_Water,.@val; bonus2 bMagicAddRace,RC_Fish,.@val; } - Id: 1689 AegisName: Staff_of_Trust2 Name: "[Rental] Hunting Wand" Type: Weapon SubType: Staff Attack: 160 MagicAttack: 145 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: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Fire; if (.@r>=7) { bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Water,10; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Insect,10; } if (.@r>=9) { bonus2 bMagicAddEle,Ele_Earth,15; bonus2 bMagicAddEle,Ele_Water,15; bonus2 bMagicAddRace,RC_DemiHuman,15; bonus2 bMagicAddRace,RC_Insect,15; } - Id: 1690 AegisName: Amazing_Foxtail Name: Mysterious Foxtail Staff Type: Weapon SubType: Staff Buy: 10000 Weight: 400 Attack: 80 MagicAttack: 180 Range: 1 Slots: 3 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,10*(.@r/3)+50; bonus bMatk,10*(.@r/3); bonus bUnbreakableWeapon; - Id: 1691 AegisName: Strange_Foxtail Name: Strange God Foxtail Staff Type: Weapon SubType: Staff Buy: 50000 Weight: 500 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r>=7) { .@r = min(.@r,10)-7; bonus bBaseAtk,(20*.@r)+40; bonus bMatk,(48*.@r)+96; } bonus bUnbreakableWeapon; - Id: 1692 AegisName: Magical_Foxtail Name: Magical Foxtail Staff Type: Weapon SubType: Staff Buy: 100000 Weight: 600 Attack: 120 MagicAttack: 260 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bMaxSP,100; .@r = getrefine(); bonus bMatkRate,2*(.@r/2); bonus bMaxSPrate,.@r/2; if (.@r>=7) { .@r = min(.@r,10)-7; bonus bBaseAtk,(24*.@r)+48; bonus bMatk,(52*.@r)+104; } bonus bUnbreakableWeapon; - Id: 1693 AegisName: Magical_Y_Foxtail Name: Magical Yellow Foxtail Staff Type: Weapon SubType: Staff Buy: 200000 Weight: 700 Attack: 140 MagicAttack: 280 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,3*(.@r/2); bonus4 bAutoSpellOnSkill,"SU_FRESHSHRIMP","SU_ARCLOUSEDASH",max(1,getskilllv("SU_ARCLOUSEDASH")),100; bonus4 bAutoSpellOnSkill,"SU_SV_STEMSPEAR","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),100; if (.@r>=7) { .@r = min(.@r,10)-7; bonus bBaseAtk,(28*.@r)+56; bonus bMatk,(56*.@r)+112; } bonus bUnbreakableWeapon; - Id: 1694 AegisName: Model_Foxtail Name: Foxtail Model Type: Weapon SubType: Staff Buy: 10000 Weight: 300 Attack: 150 Range: 1 Slots: 3 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 60 Refineable: true Script: | bonus bLongAtkRate,8; bonus bMaxHP,100; .@r = getrefine(); bonus bDex,(.@r/3)*2; bonus bMaxSP,(.@r/3)*10; - Id: 1695 AegisName: Detail_Model_Foxtail Name: Delicate Foxtail Model Type: Weapon SubType: Staff Buy: 50000 Weight: 300 Attack: 195 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bLongAtkRate,8; bonus bMaxHP,200; .@r = getrefine(); bonus bDex,(.@r/3)*3; bonus bMaxSP,(.@r/3)*15; if (.@r>=7) { .@r = min(.@r,10)-7; bonus bBaseAtk,(39*.@r)+78; } - Id: 1696 AegisName: Ex_Model_Foxtail Name: Exquisite Foxtail Model Type: Weapon SubType: Staff Buy: 100000 Weight: 300 Attack: 240 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bLongAtkRate,8; bonus bMaxHPrate,5; .@r = getrefine(); bonus bDex,(.@r/2)*3; bonus bMaxSP,(.@r/2)*15; if (.@r>=7) { .@r = min(.@r,10)-7; bonus bBaseAtk,(48*.@r)+96; } - Id: 1697 AegisName: Ex_Y_Model_Foxtail Name: Exquisite Yellow Foxtail Model Type: Weapon SubType: Staff Buy: 200000 Weight: 300 Attack: 270 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Script: | bonus bLongAtkRate,9; bonus bMaxHPrate,7; .@r = getrefine(); bonus bLongAtkRate,.@r/2; bonus bMaxSP,(.@r/2)*20; bonus4 bAutoSpellOnSkill,"SU_PICKYPECK","SU_FRESHSHRIMP",max(1,getskilllv("SU_FRESHSHRIMP")),100; if (.@r>=7) { .@r = min(.@r,10)-7; bonus bBaseAtk,(54*.@r)+108; } - Id: 1698 AegisName: Thanos_Staff_J Name: Requiem Arc Wand Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 80 MagicAttack: 145 Range: 1 Jobs: Acolyte: true Mage: true Novice: true SuperNovice: true SoulLinker: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@b = 40; if (.@r>=5) { .@b += (.@r-5)*15+20; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; - Id: 1699 AegisName: P_Foxtail1 Name: Eden Group Foxtail I Type: Weapon SubType: Staff Buy: 20 Attack: 120 MagicAttack: 135 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,3; bonus bInt,3; bonus bLongAtkRate,5; - 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: Rogue: true 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: | .@r = getrefine(); bonus bDef,2+3*(.@r>5)+5*(.@r>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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkEle,Ele_Holy; bonus bInt,5; 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; 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: Archer: true BardDancer: true Hunter: true Rogue: true Classes: All_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: All_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; }"; - Id: 1738 AegisName: BF_Bow1 Name: Valorous Battle CrossBow Type: Weapon SubType: Bow Buy: 20 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 NoStorage: 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 Buy: 20 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 NoStorage: 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: All_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: All_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 - 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; .@r = getrefine(); bonus bCritAtkRate,min(10,.@r)*2; bonus bUnbreakableWeapon; if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) bonus2 bSkillAtk,"AC_DOUBLE",20; - Id: 1744 AegisName: Bow_Of_Evil Name: Bow Of Evil Type: Weapon SubType: Bow Buy: 20 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 Buy: 20 Weight: 1000 Attack: 100 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_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: 1746 AegisName: Elven_Bow Name: Elven Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1500 Attack: 160 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bDex,2; - Id: 1747 AegisName: P_Bow1 Name: Eden Bow I Type: Weapon SubType: Bow Attack: 82 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1748 AegisName: P_Bow2 Name: Eden Bow II Type: Weapon SubType: Bow Attack: 120 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1749 AegisName: Tourist_Bow Name: Tourist Bow Type: Weapon SubType: Bow Weight: 500 Attack: 40 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 NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; - Id: 1800 AegisName: Sinister_Fist Name: Fist of Vicious Mind Type: Weapon SubType: Knuckle Buy: 20 Weight: 1500 Attack: 150 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); - 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: | 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,12; - 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 NoStorage: 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,20,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 NoStorage: 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 bVariableCastrate,"MO_EXTREMITYFIST",-25; autobonus "{ bonus2 bVariableCastrate,\"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: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Refineable: true Script: | bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30; bonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,10; - 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus3 bAutoSpell,"MO_INVESTIGATE",5,(.@r*10-50); bonus3 bAutoSpell,"AL_DECAGI",1,(.@r*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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1830 AegisName: Sura_Rampage Name: Sura Rampage Type: Weapon SubType: Knuckle Buy: 20 Weight: 500 Attack: 142 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 102 Refineable: true Script: | bonus2 bSkillAtk,"SR_EARTHSHAKER",20; bonus2 bSkillAtk,"SR_SKYNETBLOW",20; bonus bUseSPrate,5; .@r = getrefine(); if (.@r>6) { bonus bUseSPrate,-1*(.@r-6); } - Id: 1831 AegisName: P_Knuckle1 Name: Eden Knuckle I Type: Weapon SubType: Knuckle Attack: 120 Range: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1832 AegisName: Velum_Claw Name: Vellum Claw Type: Weapon SubType: Knuckle Buy: 20 Weight: 650 Attack: 160 Range: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus2 bAddRace,RC_Player_Human,100; bonus2 bAddRace,RC_Player_Doram,100; .@r = getrefine(); if (.@r>7) { bonus2 bAddRace,RC_Player_Human,20; bonus2 bAddRace,RC_Player_Doram,20; } if (.@r>9) { bonus2 bVariableCastrate,"MO_EXTREMITYFIST",-100; bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-100; bonus4 bAutoSpellOnSkill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; bonus2 bHPLossRate,500,3000; } - Id: 1833 AegisName: Claw_Of_Flash Name: Claw of Flash Type: Weapon SubType: Knuckle Buy: 60000 Weight: 400 Attack: 140 Range: 1 Slots: 2 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); - Id: 1834 AegisName: TE_Woe_Fist Name: TE Woe Fist Type: Weapon SubType: Knuckle Attack: 150 Range: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Freeze,1000; - Id: 1835 AegisName: Spartacus Name: Spartacus Type: Weapon SubType: Knuckle Weight: 600 Attack: 100 Range: 1 Slots: 2 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 50 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; if (.@r>9) { bonus bNoSizeFix; } - Id: 1836 AegisName: Thanos_Knuckle Name: Thanos Knuckle Type: Weapon SubType: Knuckle Buy: 10 Weight: 600 Attack: 160 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 1837 AegisName: Iron_nail Name: Iron Nail Type: Weapon SubType: Knuckle Buy: 10 Weight: 1500 Attack: 100 Slots: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bIgnoreDefClass,Class_Normal; bonus bIgnoreDefClass,Class_Boss; .@r = (getrefine()/2); bonus bAspdRate,-5+.@r; if (getskilllv("MO_CHAINCOMBO") == 5) { bonus bBaseAtk,20; } if (getskilllv("MO_COMBOFINISH") == 5) { bonus bBaseAtk,20; } if (getskilllv("CH_TIGERFIST") == 5) { bonus bBaseAtk,20; } if (getskilllv("CH_CHAINCRUSH") == 10) { bonus bBaseAtk,40; } - Id: 1838 AegisName: Half_BF_Knuckle1 Name: Half BF Knuckle1 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 Script: | bonus bStr,2; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0; bonus bUnbreakableWeapon; - Id: 1839 AegisName: Scarlet_Knuckle Name: Crimson Knuckles Type: Weapon SubType: Knuckle Buy: 20 Weight: 1000 Attack: 100 Range: 1 Slots: 2 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; - Id: 1840 AegisName: Thanos_Knuckle_J Name: Requiem Knuckle Type: Weapon SubType: Knuckle Buy: 20 Weight: 500 Attack: 150 MagicAttack: 100 Range: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@b = 40; if (.@r>=5) .@b += (.@r-5)*15+20; bonus2 bAddRace2,RC2_BioLab,.@b; bonus bUnbreakableWeapon; - Id: 1841 AegisName: Claw_Of_Flash_ Name: Claw of Flash Type: Weapon SubType: Knuckle Buy: 60000 Weight: 400 Attack: 140 Range: 1 Slots: 3 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | bonus bAspd,1; bonus bAspdRate,getrefine(); bonus2 bAddSize,Size_Medium,getrefine(); - Id: 1842 AegisName: Diva_Claw Name: Diva Claw Type: Weapon SubType: Knuckle Weight: 400 Attack: 140 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 1843 AegisName: Mirage_Claw Name: Mirage Claw Type: Weapon SubType: Knuckle Weight: 400 Attack: 140 MagicAttack: 100 Range: 5 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 1844 AegisName: Sinister_Fist_J Name: Fist of Evil Type: Weapon SubType: Knuckle Buy: 100000 Weight: 400 Attack: 80 Range: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 1845 AegisName: Probation_Knuckle Name: Trial Sura's Knuckle Type: Weapon SubType: Knuckle Buy: 20 Attack: 140 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"SR_TIGERCANNON",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bBaseAtk,3*getskilllv("MO_TRIPLEATTACK"); } - Id: 1846 AegisName: Combo_Battle_Glove_IL Name: Illusion Combo Battle Glove Type: Weapon SubType: Knuckle Weight: 500 Attack: 250 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SR_SKYNETBLOW",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_DRAGONCOMBO",(10+5*(.@r/2)); bonus2 bSkillAtk,"SR_TIGERCANNON",(5*(.@r/3)); - Id: 1847 AegisName: Iron_Nail_K Name: Iron Nail Type: Weapon SubType: Knuckle Weight: 1000 Attack: 180 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bLongAtkRate,.@r/3*4; if (.@r >= 9) bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; if (.@r >= 11) bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; - Id: 1848 AegisName: Rebeginer_SR_Nuckle Name: Beginner Sura's Knuckle Type: Weapon SubType: Knuckle Attack: 150 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,10; if (getrefine()>=7) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } - Id: 1859 AegisName: Woe_Pist1_Z Name: Lesser Guild Member's Fist Type: Weapon SubType: Knuckle Weight: 300 Attack: 40 Range: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-30; autobonus3 "{ .@r = getrefine(); bonus bBaseAtk,30+(.@r-10); }",1000,20000,"MO_EXPLOSIONSPIRITS"; } - Id: 1861 AegisName: Variant_Claw Name: Abyss Claw Type: Weapon SubType: Knuckle Weight: 400 Attack: 140 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 1862 AegisName: Burning_Knuckle_OS Name: Burning Knuckle-OS Type: Weapon SubType: Knuckle Buy: 20 Weight: 900 Attack: 175 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; } } } - Id: 1864 AegisName: Evt_Iron_Nail_K Name: Sealed Iron Nail Type: Weapon SubType: Knuckle Attack: 180 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; } if (.@r>=9) { bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; } - Id: 1865 AegisName: Combo_Fist Name: Raging Dragon Fist Type: Weapon SubType: Knuckle Buy: 20 Weight: 700 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"MO_CHAINCOMBO",30; if (.@r >= 9) { bonus2 bSkillAtk,"MO_COMBOFINISH",50; bonus2 bSkillAtk,"CH_CHAINCRUSH",50; } if (.@r >= 11) bonus2 bSkillAtk,"CH_CHAINCRUSH",30; - Id: 1866 AegisName: Asura_Bandage Name: Dedicated Bandage Type: Weapon SubType: Knuckle Buy: 20 Weight: 800 Attack: 220 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,10; if (.@r >= 9) bonus2 bSkillAtk,"SR_KNUCKLEARROW",40; if (.@r >= 11) bonus bDelayrate,-7; - Id: 1867 AegisName: Ein_1HKNUCK Name: Safety Knuckle Type: Weapon SubType: Knuckle Weight: 1800 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,40; } if (.@r>=9) { bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; autobonus "{ bonus2 bAddSize,Size_All,15; }",10,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 1868 AegisName: Combo_Fist_J Name: Fierce Dragon Fighting Type: Weapon SubType: Mace Buy: 200000 Weight: 400 Attack: 140 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"CH_CHAINCRUSH",30; - Id: 1869 AegisName: Asura_Bandage_J Name: Fighting God's Vantage Type: Weapon SubType: Mace Buy: 200000 Weight: 400 Attack: 140 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"MO_COMBOFINISH",30; - Id: 1870 AegisName: R_Knuckle Name: Royal Knuckle Type: Weapon SubType: Knuckle Weight: 1500 Attack: 190 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; } - Id: 1871 AegisName: Bauxite_Knuckle_EXE Name: Bauxite Knuckle Type: Weapon SubType: Knuckle Weight: 1200 Attack: 100 Range: 1 Jobs: Monk: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bStr,3; if (.@r>=5) { bonus bAtkRate,2; bonus bAspd,1; } if (.@r>=7) { bonus bBaseAtk,10; bonus2 bSkillAtk,"MO_TRIPLEATTACK",10; } if (.@r>=9) { bonus bBaseAtk,20; bonus bMaxSPrate,5; bonus2 bSkillAtk,"MO_TRIPLEATTACK",20; } if (.@r>=10) { bonus bAtkRate,3; bonus bMaxHP,500; bonus2 bAddRace,RC_All,2; } if (.@r>=12) { bonus bDelayrate,-5; bonus2 bAddRace,RC_All,3; } - Id: 1872 AegisName: Knuckle_Of_Infinite Name: Knuckle of Infinite Type: Weapon SubType: Knuckle Weight: 900 Attack: 215 Range: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*.@r; bonus bAtkRate,2*(.@r/2); if (BaseLevel>=100) bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",BaseLevel; if (.@r>=7) bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20; if (.@r>=9) bonus bVariableCastrate,-7; - Id: 1873 AegisName: Comp_Iron_Nail_K Name: "[Not For Sale] Iron Nail" Type: Weapon SubType: Knuckle Weight: 1000 Attack: 180 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus bLongAtkRate,(.@r/3)*4; if (.@r >= 9) bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; if (.@r >= 11) bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; - Id: 1900 AegisName: Sinister_Viollin Name: Violin of Vicious Mind Type: Weapon SubType: Musical Buy: 20 Weight: 1300 Attack: 130 MagicAttack: 50 Range: 1 Slots: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; - 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: All_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: All_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 NoStorage: 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 NoStorage: 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: All_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: All_Upper: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | bonus bInt,2; bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,(getrefine()>=9?2000: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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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: All_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,25,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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 1930 AegisName: Green_Whistle Name: Green Whistle Type: Weapon SubType: Musical Buy: 20 Weight: 800 Attack: 170 MagicAttack: 50 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 102 Refineable: true Script: | .@r = getrefine(); if (.@r>5) { bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",(.@r-5)*4; bonus2 bSkillUseSP,"WM_LULLABY_DEEPSLEEP",(.@r-5)*4; } bonus2 bSkillVariableCast,"MI_RUSH_WINDMILL",-2000; bonus2 bSkillVariableCast,"WM_LULLABY_DEEPSLEEP",-2000; - Id: 1931 AegisName: P_String_Inst1 Name: Eden Guitar I Type: Weapon SubType: Musical Attack: 125 Range: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1932 AegisName: TE_Woe_Guitar Name: TE Woe Guitar Type: Weapon SubType: Musical Attack: 100 Range: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Poison,1000; - Id: 1933 AegisName: Thanos_Violin Name: Thanos Violin Type: Weapon SubType: Musical Buy: 10 Weight: 2000 Attack: 200 MagicAttack: 130 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 1934 AegisName: Contabass Name: Contrabass Type: Weapon SubType: Musical Buy: 20000 Weight: 250 Attack: 180 MagicAttack: 120 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSkillCooldown,"WM_RANDOMIZESPELL",-2000; - Id: 1935 AegisName: Ukulele_Of_Newoz Name: Oz's New Ukulele Type: Weapon SubType: Musical Buy: 20 Weight: 1000 Attack: 160 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",20; - Id: 1936 AegisName: Ru_Blue_Violin Name: Ru Blue Violin Type: Weapon SubType: Musical Weight: 1500 Attack: 200 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bDex,5; bonus bVit,5; - Id: 1937 AegisName: Ru_Gold_Violin Name: Ru Gold Violin Type: Weapon SubType: Musical Weight: 1500 Attack: 180 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bDex,8; bonus bVit,8; - Id: 1938 AegisName: Viollin_Of_Infinite Name: Infinity Violin Type: Weapon SubType: Musical Buy: 20 Weight: 500 Attack: 150 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1939 AegisName: Scarlet_Viollin Name: Crimson Violin Type: Weapon SubType: Musical Buy: 20 Weight: 800 Attack: 80 Range: 2 Slots: 2 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 1940 AegisName: Trumpet_Shell Name: Trumpet Shell Type: Weapon SubType: Musical Weight: 600 Attack: 125 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; .@per = ((.@r >= 9) ? 40 : ((.@r >= 7) ? 20 : ((.@r >= 5) ? 10 : 0))); bonus2 bSkillAtk,"WM_REVERBERATION",.@per; bonus2 bVariableCastrate,"WM_REVERBERATION",-.@per; - Id: 1941 AegisName: Union_Viollin Name: Unity Violin Type: Weapon SubType: Musical Buy: 20 Weight: 400 Attack: 76 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 1942 AegisName: Thanos_Violin_J Name: Requiem Violin Type: Weapon SubType: Musical Buy: 20 Weight: 500 Attack: 160 MagicAttack: 120 Range: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if (.@r>=5) { .@b += (.@r-5)*15+20; } if (.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus2 bAddRace2,RC2_BioLab,.@b; - Id: 1943 AegisName: Erhu Name: Erhu Type: Weapon SubType: Musical Buy: 20 Weight: 700 Attack: 50 Range: 1 Slots: 3 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 90 Refineable: true Script: | autobonus3 "{ bonus2 bSPRegenRate,4,1000; }",1000,60000,"WM_SIRCLEOFNATURE"; if (getrefine()>=10) bonus bUnbreakableWeapon; - Id: 1944 AegisName: Hippie_Guitar Name: Hippie Guitar Type: Weapon SubType: Musical Weight: 1000 Attack: 140 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@lvl = getskilllv("BA_MUSICALLESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; - Id: 1945 AegisName: Diva_Viollin Name: Diva Viollin Type: Weapon SubType: Musical Weight: 250 Attack: 180 MagicAttack: 120 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",150; if (.@r>=9) bonus2 bSkillAtk,"CG_ARROWVULCAN",50; - Id: 1946 AegisName: Mirage_Viollin Name: Mirage Viollin Type: Weapon SubType: Musical Weight: 250 Attack: 180 MagicAttack: 120 Range: 5 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",150; if (.@r>=9) bonus2 bSkillAtk,"CG_ARROWVULCAN",50; - Id: 1947 AegisName: Sinister_Viollin_J Name: Violin of Evil Type: Weapon SubType: Musical Buy: 100000 Weight: 250 Attack: 100 MagicAttack: 100 Range: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,pow(getrefine(),2); - Id: 1948 AegisName: Hippie_Guitar_J Name: Hippie Guitar Type: Weapon SubType: Musical Weight: 1000 Attack: 140 MagicAttack: 120 Range: 2 Slots: 3 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bVit,.@r; bonus bMaxHPrate,.@r; if (.@r>=7) { bonus2 bSkillAtk,"CG_ARROWVULCAN",150; bonus2 bSubRace,RC_DemiHuman,5; } if (.@r>=9) { bonus2 bSkillAtk,"CG_ARROWVULCAN",50; bonus2 bSubRace,RC_DemiHuman,5; } - Id: 1949 AegisName: 2nd_Job_Weapon12 Name: Bard Guild Violin Type: Weapon SubType: Musical Attack: 135 Range: 1 Slots: 2 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 50 Refineable: true - 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: All_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; .@r = getrefine(); if (.@r>0) bonus3 bAutoSpell,"CG_ARROWVULCAN",.@r,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: All_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: All_Upper: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); if (.@r>0) bonus3 bAutoSpell,"AL_INCAGI",min(.@r,10),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 NoStorage: 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 NoStorage: 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: All_Upper: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | bonus bInt,2; bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,(getrefine()>=9?2000: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: All_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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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: 1984 AegisName: Stem_Whip Name: Stem Whip Type: Weapon SubType: Whip Buy: 20 Weight: 800 Attack: 170 MagicAttack: 50 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 102 Refineable: true Script: | .@r = getrefine(); if (.@r>5) { bonus2 bSkillUseSP,"WA_SWING_DANCE",(.@r-5)*4; bonus2 bSkillUseSP,"WM_LULLABY_DEEPSLEEP",(.@r-5)*4; } bonus2 bSkillVariableCast,"WA_SWING_DANCE",-2000; bonus2 bSkillVariableCast,"WM_LULLABY_DEEPSLEEP",-2000; - Id: 1985 AegisName: Rosebine Name: Rosebine Type: Weapon SubType: Whip Buy: 20 Weight: 1000 Attack: 100 MagicAttack: 130 Range: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus bInt,2; bonus bAgi,-2; bonus3 bAutoSpell,"WM_VOICEOFSIREN",1,20; - Id: 1986 AegisName: P_Tail1 Name: Eden Tail I Type: Weapon SubType: Whip Attack: 125 Range: 2 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1987 AegisName: TE_Woe_Rope Name: TE Woe Rope Type: Weapon SubType: Whip Attack: 100 Range: 2 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Blind,1000; - Id: 1988 AegisName: Thanos_Whip Name: Thanos Whip Type: Weapon SubType: Whip Buy: 10 Weight: 2200 Attack: 200 MagicAttack: 130 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus bLongAtkRate,20; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 1989 AegisName: Gymnastics_Ribbon Name: Rhythmic Gymnastics Ribbon Type: Weapon SubType: Whip Buy: 20 Weight: 300 Attack: 150 MagicAttack: 120 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 130 Refineable: true Script: | bonus bAspdRate,20; - Id: 1990 AegisName: Floral_Mic_Of_Igu Name: Floral Mic Of Aigu Type: Weapon SubType: Whip Buy: 20 Weight: 1000 Attack: 160 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSkillUseSP,"WA_MOONLIT_SERENADE",20; - Id: 1991 AegisName: Ru_Blue_Whip Name: Ru Blue Whip Type: Weapon SubType: Whip Buy: 10 Weight: 1500 Attack: 180 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bDex,5; bonus bVit,5; - Id: 1992 AegisName: Ru_Gold_Whip Name: Ru Gold Whip Type: Weapon SubType: Whip Weight: 1500 Attack: 180 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bDex,8; bonus bVit,8; - Id: 1993 AegisName: Concertina_Wire Name: Barbed Wire Type: Weapon SubType: Whip Weight: 1200 Attack: 80 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true Script: | bonus bDefRatioAtkClass,Class_All; bonus bSPDrainValue,-3; - Id: 1994 AegisName: Whip_Of_Infinite Name: Infinity Whip Type: Weapon SubType: Whip Buy: 20 Weight: 500 Attack: 150 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 1995 AegisName: Scarlet_Wire Name: Crimson Whip Type: Weapon SubType: Whip Buy: 20 Weight: 800 Attack: 80 Range: 2 Slots: 2 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 1996 AegisName: Sinister_Wire Name: Wire of Vicious Mind Type: Weapon SubType: Whip Buy: 20 Weight: 1300 Attack: 130 MagicAttack: 50 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; - Id: 1997 AegisName: Union_Wire Name: Unity Whip Type: Weapon SubType: Whip Buy: 20 Weight: 400 Attack: 76 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 1998 AegisName: Thanos_Whip_J Name: Requiem Blade Whip Type: Weapon SubType: Whip Buy: 100000 Attack: 160 MagicAttack: 120 Range: 2 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@b = 40; bonus bUnbreakableWeapon; if (.@r>=5) .@b += (.@r-5)*15+20; if (.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus2 bAddRace2,RC2_BioLab,.@b; - Id: 1999 AegisName: Moonlight_Bell Name: Phantom Bell Type: Weapon SubType: Whip Buy: 20 Weight: 400 Attack: 45 Range: 2 Slots: 3 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 90 Refineable: true Script: | autobonus3 "{ bonus2 bSPRegenRate,4,1000; }",1000,60000,"WM_SIRCLEOFNATURE"; if (getrefine()>=10) bonus bUnbreakableWeapon; - Id: 2000 AegisName: Destruction_Rod Name: Staff of Destruction Type: Weapon SubType: 2hStaff Buy: 20 Weight: 2500 Attack: 130 MagicAttack: 280 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 80 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,.@r/2; bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(.@r*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); bonus2 bVariableCastrate,"HW_MAGICPOWER",-50; - Id: 2001 AegisName: Divine_Cross Name: Divine Cross Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1500 Attack: 120 MagicAttack: 210 Range: 1 Jobs: Monk: true Priest: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | bonus bAtkEle,Ele_Holy; 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 MagicAttack: 210 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: 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: | .@r = min(14,getrefine()); bonus bMatkRate,.@r; bonus bUnbreakableWeapon; if (.@r>5) { .@bonus1 = 5; .@bonus2 = (.@r-5) * 2; } if (.@r>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; } bonus2 bMagicAddRace,RC_DemiHuman,15+.@bonus2; bonus2 bMagicAddRace,RC_Player_Human,15+.@bonus2; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25+.@bonus1+.@bonus2; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25+.@bonus1+.@bonus2; - Id: 2003 AegisName: Destruction_Rod_M Name: Staff of Destruction Type: Weapon SubType: 2hStaff Buy: 20 Weight: 2500 Attack: 130 MagicAttack: 280 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_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: | .@r = getrefine(); bonus bMatkRate,25+(.@r/2); bonus bInt,3; bonus bAgi,10; bonus bUseSPrate,(.@r*2); bonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(.@r*20); bonus2 bVariableCastrate,"HW_MAGICPOWER",-50; - Id: 2004 AegisName: Kronos Name: Kronos Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1000 Attack: 30 MagicAttack: 240 Range: 1 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bInt,3+(.@r/2); bonus bMaxHP,300+(50*.@r/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 MagicAttack: 220 Range: 1 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus bMatkRate,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: SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | bonus bInt,6; bonus bMaxSP,150; bonus bMatkRate,18; bonus bAtkEle,Ele_Holy; - Id: 2007 AegisName: Golden_Rod_Staff Name: Golden Rod Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Wind; bonus bInt,3; bonus2 bSkillAtk,"WZ_JUPITEL",12; - Id: 2008 AegisName: Aqua_Staff Name: Aqua Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Water; bonus bInt,3; bonus2 bSkillAtk,"MG_COLDBOLT",10; bonus2 bSkillAtk,"MG_FROSTDIVER",10; - Id: 2009 AegisName: Crimson_Staff Name: Crimson Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Fire; bonus bInt,3; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_FIREBALL",10; - Id: 2010 AegisName: Forest_Staff Name: Forest Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Earth; bonus bInt,3; bonus2 bSkillAtk,"WZ_EARTHSPIKE",10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; - Id: 2011 AegisName: Golden_Rod_Staff2 Name: Empowered Golden Rod Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAtkEle,Ele_Wind; bonus bInt,5; bonus2 bSkillAtk,"WZ_JUPITEL",30; - Id: 2012 AegisName: Aqua_Staff2 Name: Empowered Aqua Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAtkEle,Ele_Water; bonus bInt,5; bonus2 bSkillAtk,"MG_COLDBOLT",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30; - Id: 2013 AegisName: Crimson_Staff2 Name: Empowered Crimson Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAtkEle,Ele_Fire; bonus bInt,5; bonus2 bSkillAtk,"MG_FIREBOLT",30; bonus2 bSkillAtk,"MG_FIREBALL",30; - Id: 2014 AegisName: Forest_Staff2 Name: Empowered Forest Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 900 Attack: 30 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAtkEle,Ele_Earth; bonus bInt,5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; - Id: 2015 AegisName: Upg_Staff Name: Upg Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1000 Attack: 50 MagicAttack: 70 Range: 1 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bMatk,(.@r*10); bonus bHealPower,.@r; if (BaseJob == Job_Wizard) bonus bMatk,30; else if (BaseJob == Job_Sage) bonus bMatk,20; if (BaseLevel>70) bonus bMatk,(((BaseLevel-70)/10)*10); - Id: 2016 AegisName: Velum_Arc_Wand Name: Vellum Arc Wand Type: Weapon SubType: 2hStaff Buy: 20 Weight: 800 Attack: 110 MagicAttack: 220 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Player_Human,25; bonus2 bMagicAddRace,RC_Player_Doram,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,25; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,25; .@r = getrefine(); if (.@r>5) { bonus bMatkRate,15; } if (.@r>8) { bonus bVariableCastrate,-20; bonus bFixedCast,-200; } - Id: 2017 AegisName: Divine_Cross_ Name: Divine Cross Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1500 Attack: 120 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; bonus bDex,4; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; - Id: 2018 AegisName: Metal_Staff Name: Metal Staff Type: Weapon SubType: 2hStaff Buy: 20 Attack: 50 MagicAttack: 70 Range: 1 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseJob == Job_Wizard) bonus bMatk,15; else if (BaseJob == Job_Sage) bonus bMatk,10; bonus bMatk,(getrefine()*5); .@i = min(BaseLevel/10,12); if (.@i>2) bonus bMatk,((.@i-2)*5); - Id: 2019 AegisName: TE_Woe_Two_Hand_Staff Name: TE Woe Two Hand Staff Type: Weapon SubType: 2hStaff Attack: 50 MagicAttack: 130 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bMagicAddRace,RC_Player_Doram,20; bonus3 bAddEff,Eff_Stun,1000,ATF_MAGIC; bonus bHealPower,5; - Id: 2020 AegisName: Jormungand Name: Jormungand Type: Weapon SubType: 2hStaff Buy: 10 Weight: 3000 Attack: 200 MagicAttack: 280 Range: 1 Jobs: Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 90 Script: | bonus bInt,20; bonus3 bAddEff,Eff_Poison,3000,ATF_MAGIC; bonus2 bAddEffWhenHit,Eff_DPoison,100; bonus bUnbreakableWeapon; - Id: 2021 AegisName: Ganbantein Name: Ganbantein Type: Weapon SubType: Staff Weight: 2000 Attack: 100 MagicAttack: 320 Range: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bInt,25; bonus bDex,25; bonus3 bAddEff,Eff_Poison,1000,ATF_MAGIC; bonus3 bAutoSpellWhenHit,"AB_SILENTIUM",1,100; bonus bUnbreakableWeapon; - Id: 2022 AegisName: Staff_Of_Geffen Name: Staff of Geffen Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1000 Attack: 100 MagicAttack: 300 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 150 Refineable: true Script: | bonus bInt,20; - Id: 2023 AegisName: Thanos_Rod Name: Thanos Two-Handed Staff Type: Weapon SubType: 2hStaff Buy: 10 Weight: 1400 Attack: 120 MagicAttack: 250 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus bHealPower,18; autobonus "{ bonus2 bHPRegenRate,300,2000; bonus2 bSPRegenRate,50,2000; }",50,60000,BF_MAGIC,"{ specialeffect2 EF_HEALSP; }"; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 2024 AegisName: D_Staff_Of_Infinite Name: Infinity Two-Handed Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 500 Attack: 30 MagicAttack: 170 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2025 AegisName: Scarlet_Staff Name: Crimson Two-Handed Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1000 Attack: 100 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bInt,5; bonus bMatk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 2026 AegisName: Sinister_Staff Name: Staff of Vicious Mind Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1000 Attack: 100 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bMatk,pow(min(getrefine(),15),2); bonus bInt,6; bonus bUnbreakableWeapon; - Id: 2027 AegisName: Staff_170 Name: Sunflower Kid Type: Weapon SubType: 2hStaff Buy: 10 Weight: 1500 Attack: 150 MagicAttack: 320 Slots: 2 Range: 1 Jobs: Monk: true Priest: true Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bDelayrate,-.@r; bonus bUnbreakableWeapon; - Id: 2028 AegisName: Aion_Staff Name: Iron Staff Type: Weapon SubType: 2hStaff Buy: 49800 Weight: 2500 Attack: 180 MagicAttack: 24 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Ghost; bonus bMatk,24*(getskilllv("HW_MAGICPOWER")); bonus2 bSkillUseSP,"WL_READING_SB",24; bonus2 bIgnoreMdefClassRate,Class_All,8*(.@r/3); bonus2 bSkillVariableCast,"WL_READING_SB",-1000*(getskilllv("WL_FREEZE_SP")); autobonus3 "{ bonus bMatkRate,24*(getskilllv(\"HW_MAGICPOWER\"); }",1000,1000,"WL_RELEASE"; if (getskilllv("WL_RELEASE") == 2) { bonus2 bSkillVariableCast,"WL_SUMMONFB",-1000; bonus2 bSkillVariableCast,"WL_SUMMONWB",-1000; bonus2 bSkillVariableCast,"WL_SUMMONSTONE",-1000; bonus2 bSkillVariableCast,"WL_SUMMONBL",-1000; } - Id: 2029 AegisName: TStaff_Of_E_Slayer_J Name: Devil God's Staff Type: Weapon SubType: 2hStaff Buy: 56000 Weight: 800 Attack: 30 MagicAttack: 155 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddDamageClass,1916,40; bonus2 bAddMagicDamageClass,1916,40; bonus2 bAddDefMonster,1916,10; bonus2 bAddMDefMonster,1916,10; if (.@r>=7) { bonus2 bAddDamageClass,1916,60; bonus2 bAddMagicDamageClass,1916,60; bonus2 bAddDefMonster,1916,20; bonus2 bAddMDefMonster,1916,20; } if (.@r>=9) { bonus2 bAddDamageClass,1916,80; bonus2 bAddMagicDamageClass,1916,80; bonus2 bAddDefMonster,1916,40; bonus2 bAddMDefMonster,1916,40; } - Id: 2030 AegisName: Union_Twohand_Staff Name: Unity Two-Handed Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 500 Attack: 95 MagicAttack: 135 Range: 1 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,pow(getrefine(),2)*125/100; - Id: 2031 AegisName: Tw_Staff_Of_Malang_J Name: Cat's cane - Swordfish Type: Weapon SubType: 2hStaff Buy: 50000 Weight: 800 Attack: 30 MagicAttack: 155 Range: 1 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Script: | bonus2 bAddRace2,RC2_Malangdo,50; bonus2 bMagicAddRace2,RC2_Malangdo,50; bonus2 bSubRace2,RC2_Malangdo,30; - Id: 2032 AegisName: Thanos_Rod_J Name: Requiem Wizardry Staff Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 100 MagicAttack: 230 Range: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@b = 40; .@c = 5; if (.@r>=5) { .@b += (.@r-5)*15+20; .@c += .@r-5; } bonus2 bMagicAddRace2,RC2_BioLab,.@b; bonus2 bSubRace2,RC2_BioLab,.@c; bonus2 bIgnoreMdefRace2Rate,RC2_BioLab,(.@r-5)*10; - Id: 2033 AegisName: Toughen_Metal_Staff Name: Enhanced Metal Staff Type: Weapon SubType: 2hStaff Buy: 20 Attack: 60 MagicAttack: 95 Range: 1 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus bMatk,8*getrefine(); bonus bMatk,7*(min(BaseLevel,150)/10); if (BaseJob == Job_Sage) { bonus bMatk,20; } if (BaseJob == Job_Wizard) { bonus bMatk,15; } - Id: 2034 AegisName: Avenger_Wizardy_Staff Name: Avenger Wizard Staff Type: Weapon SubType: 2hStaff Buy: 20 Attack: 70 MagicAttack: 210 Range: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_DemiHuman,25; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5*.@r; if (.@r>4) { bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bSubRace,RC_DemiHuman,10; } if (.@r>6) { .@bonus = 14; if(.@r>7) .@bonus += min((.@r - 7) * 2,6); bonus2 bMagicAddRace,RC_DemiHuman,.@bonus; bonus2 bSubRace,RC_DemiHuman,10; } if (.@r>8) bonus2 bSkillAtk,"WL_COMET",20; - Id: 2035 AegisName: Diva_Staff Name: Diva Staff Type: Weapon SubType: 2hStaff Weight: 2400 Attack: 120 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,2*.@r; if (.@r>=7) bonus bMatkRate,4; if (.@r>=9) bonus bMatkRate,4; - Id: 2036 AegisName: Mirage_Staff Name: Mirage Staff Type: Weapon SubType: 2hStaff Weight: 2400 Attack: 120 MagicAttack: 270 Range: 5 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,2*.@r; if (.@r>=7) bonus bMatkRate,4; if (.@r>=9) bonus bMatkRate,4; - Id: 2037 AegisName: Sinister_Staff_J Name: Staff of Evil Type: Weapon SubType: 2hStaff Buy: 100000 Weight: 1000 Attack: 100 MagicAttack: 200 Range: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,pow(getrefine(),2); - Id: 2038 AegisName: Staff_170_J Name: Sunflower Kid Type: Weapon SubType: 2hStaff Buy: 10 Weight: 900 Attack: 40 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Wizard: true Classes: Third: true Third_Upper: true Third_Baby: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bIgnoreMdefClassRate,Class_All,5*.@r; bonus2 bMagicAtkEle,Ele_Fire,3*.@r; if (getskilllv("WZ_SIGHTRASHER") == 10) bonus2 bMagicAtkEle,Ele_Fire,20; autobonus3 "{ bonus2 bSkillAtk,\"WZ_METEOR\",60; }",10*.@r,5000,"WZ_METEOR"; /*Unknown Rate*/ - Id: 2039 AegisName: Wizardy_Staff_IL Name: Illusion Wizardry Staff Type: Weapon SubType: 2hStaff Weight: 2400 Attack: 150 MagicAttack: 250 Range: 1 Slots: 2 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@val = min(getrefine(),10)/2; bonus bInt,(6+.@val); bonus bDex,(2+.@val); - Id: 2040 AegisName: Probation_Staff Name: Trial Warlock's Staff Type: Weapon SubType: 2hStaff Buy: 20 Attack: 60 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; bonus bMatk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bMatkRate,getskilllv("WZ_STORMGUST"); } - Id: 2041 AegisName: Jirant_Staff Name: Flame Thunder Witch's Wand Type: Weapon SubType: 2hStaff Weight: 2700 Attack: 200 MagicAttack: 350 Range: 1 Slots: 1 Jobs: Sage: true Classes: Third: true Third_Upper: true Third_Baby: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bInt,5; bonus bDex,10; bonus bVariableCastrate,-30; bonus2 bMagicAtkEle,Ele_Fire,(getskilllv("SO_FIREWALK")*10)+(.@r*5); bonus2 bMagicAtkEle,Ele_Wind,(getskilllv("SO_ELECTRICWALK")*10)+(.@r*5); bonus2 bSkillAtk,"SO_FIREWALK",.@r*30; bonus2 bSkillAtk,"SO_ELECTRICWALK",.@r*30; bonus2 bIgnoreMdefClassRate,Class_All,.@r*5; if (.@r>=7) { bonus3 bAddEffOnSkill,"SO_ELECTRICWALK",Eff_Silence,1000; bonus3 bAddEffOnSkill,"SO_FIREWALK",Eff_Curse,1000; } if (.@r>=9) { bonus2 bSkillAtk,"SO_FIREWALK",100; bonus2 bSkillAtk,"SO_ELECTRICWALK",100; } if (.@r>=10) bonus bFixedCastrate,-70; - Id: 2042 AegisName: Neev_Wizardy_Staff Name: Neev Wizardy Staff Type: Weapon SubType: 2hStaff Buy: 100000 Weight: 1200 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 2043 AegisName: Neev_Arc_Wand Name: Neev Arc Wand Type: Weapon SubType: 2hStaff Buy: 100000 Weight: 1200 Attack: 80 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 2044 AegisName: Neev_Holy_Stick Name: Neev Holy Stick Type: Weapon SubType: 2hStaff Buy: 100000 Weight: 1000 Attack: 120 MagicAttack: 170 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 2045 AegisName: Neev_Divine_Cross Name: Neev Divine Cross Type: Weapon SubType: 2hStaff Buy: 100000 Weight: 150 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 2046 AegisName: Rebeginer_WL_Staff Name: Beginner Warlock's Staff Type: Weapon SubType: 2hStaff Attack: 70 MagicAttack: 170 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bMatkRate,5; .@r = getrefine(); if (.@r>=7) { bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } - Id: 2047 AegisName: Jirant_Staff_BR Name: Witch's Staff Type: Weapon SubType: 2hStaff Weight: 2700 Attack: 20 MagicAttack: 350 Range: 1 Slots: 1 Jobs: Sage: true Classes: Third: true Third_Upper: true Third_Baby: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bInt,5; bonus bDex,10; bonus bVariableCastrate,-30; bonus2 bMagicAtkEle,Ele_Fire,(getskilllv("SO_FIREWALK")*10)+(5*(.@r/2)); bonus2 bMagicAtkEle,Ele_Wind,(getskilllv("SO_ELECTRICWALK")*10)+(5*(.@r/2)); bonus2 bSkillAtk,"SO_FIREWALK",30*(.@r/2); bonus2 bSkillAtk,"SO_ELECTRICWALK",30*(.@r/2); bonus2 bIgnoreMdefClassRate,Class_All,5*(.@r/2); if (.@r>=9) { bonus3 bAddEffOnSkill,"SO_ELECTRICWALK",Eff_Silence,1000; bonus3 bAddEffOnSkill,"SO_FIREWALK",Eff_Curse,1000; } if (.@r>=11) { bonus2 bSkillAtk,"SO_FIREWALK",100; bonus2 bSkillAtk,"SO_ELECTRICWALK",100; } if (.@r>=12) bonus bFixedCastrate,-70; - Id: 2048 AegisName: Iron_Staff Name: Aeon Staff Type: Weapon SubType: 2hStaff Weight: 800 Attack: 100 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } - Id: 2049 AegisName: Staff_Of_Blue_Flame Name: Blue Flame Cane Type: Weapon SubType: 2hStaff Buy: 50000 Weight: 800 Attack: 110 MagicAttack: 300 Range: 1 Slots: 2 Jobs: Mage: true Acolyte: true Monk: true Priest: true Sage: true Wizard: true SoulLinker: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bInt,7; bonus bMatkRate,.@r/2; bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; if (.@r>=11) bonus2 bSubSize,Size_All,20; if (.@r>=13) bonus bDelayrate,-15; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val; - Id: 2050 AegisName: 2nd_Job_Weapon8 Name: Wizard Guild Staff Type: Weapon SubType: 2hStaff Attack: 70 MagicAttack: 165 Range: 1 Jobs: Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true - Id: 2051 AegisName: Survival_Staff_IL Name: Illusion Survivor's Staff Type: Weapon SubType: 2hStaff Weight: 1200 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bDex,2; bonus bInt,2; bonus bMaxHP,600; bonus bUnbreakableWeapon; bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@r >= 9) { bonus2 bSubSize,Size_Small,15; bonus2 bSubSize,Size_Medium,15; if (.@r >= 11) { bonus2 bSubEle,Ele_Water,15; bonus2 bSubEle,Ele_Wind,15; bonus2 bSubEle,Ele_Earth,15; bonus2 bSubEle,Ele_Fire,15; } } } - Id: 2052 AegisName: Woe_T_Staff1_Z Name: Lesser Guild Member's Destruction Staff Type: Weapon SubType: 2hStaff Weight: 800 Attack: 70 MagicAttack: 180 Range: 1 Jobs: Priest: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAddRace,RC_Player_Human,15+.@r; bonus2 bMagicAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,10; bonus2 bSkillAtk,"WZ_METEOR",3*.@r; bonus2 bSkillAtk,"WZ_STORMGUST",3*.@r; bonus bMaxHPrate,-2*.@r; bonus bMatk,5*(.@r/2); if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,10; } if (.@r>=9) { bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; } - Id: 2053 AegisName: Variant_Staff Name: Abyss Staff Type: Weapon SubType: 2hStaff Weight: 2400 Attack: 120 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Novice: true Priest: true SuperNovice: true Wizard: true Classes: Upper: true All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,30; .@r = getrefine(); bonus bHealPower,.@r*2; if (.@r>=7) { bonus bMatkRate,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus bMatkRate,5; bonus2 bSubRace,RC_Player_Human,5; } bonus bUnbreakableWeapon; - Id: 2054 AegisName: Evt_Iron_Staff Name: Sealed Aeon Staff Type: Weapon SubType: 2hStaff Attack: 100 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; } - Id: 2055 AegisName: Staff_Of_Miracle Name: Staff of Miracle Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1200 Attack: 100 MagicAttack: 270 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r >= 9) { bonus2 bSkillAtk,"MG_SOULSTRIKE",20; bonus2 bSkillAtk,"HW_NAPALMVULCAN",20; bonus2 bSkillAtk,"WL_SOULEXPANSION",20; } if (.@r >= 11) { bonus2 bSkillAtk,"MG_SOULSTRIKE",30; bonus2 bSkillAtk,"HW_NAPALMVULCAN",30; } - Id: 2056 AegisName: Gravitation_Staff Name: Gravitation Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1300 Attack: 110 MagicAttack: 280 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"HW_GRAVITATION",30; bonus2 bSkillAtk,"WL_DRAINLIFE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"HW_GRAVITATION",-2000; } - Id: 2057 AegisName: Adorare_Staff Name: Adorare Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1200 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } if (.@r >= 11) { bonus2 bSubSize,Size_All,25; } - Id: 2058 AegisName: Ein_BHSTAFF Name: Detecting Staff Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 180 MagicAttack: 330 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; if (.@r >= 7) { bonus bMatk,60; bonus bVariableCastrate,-10; } if (.@r >= 9) { bonus2 bMagicAtkEle,Ele_Fire,15; autobonus "{ bonus2 bMagicAddSize,Size_All,20; }",10,10000,BF_MAGIC; } if (.@r >= 11) { bonus bDelayrate,-20; } - Id: 2059 AegisName: Survival_Staff_IL_J Name: Illusion Survivor's Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 1200 Attack: 100 MagicAttack: 240 Range: 1 Slots: 1 Jobs: Sage: true SoulLinker: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bInt,3; bonus bDex,3; bonus bMaxHP,2000; bonus2 bSubSize,Size_All,20; if (BaseLevel>=170) bonus2 bSubSize,Size_All,10; - Id: 2060 AegisName: R_Magician_Staff Name: Royal Magician Staff Type: Weapon SubType: 2hStaff Weight: 1500 Attack: 100 MagicAttack: 270 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,5*.@r; if (.@r >= 9) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",20; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20; } if (.@r >= 11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } - Id: 2061 AegisName: Staff_Of_Miracle_J Name: Staff of Miracle Type: Weapon SubType: 2hStaff Buy: 200000 Weight: 2400 Attack: 120 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"MG_SOULSTRIKE",30; - Id: 2062 AegisName: Gravitation_Staff_J Name: Gravitation Staff Type: Weapon SubType: 2hStaff Buy: 200000 Weight: 2400 Attack: 120 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"HW_GRAVITATION",30; - Id: 2063 AegisName: Adorare_Staff_J Name: Wand of Worship Type: Weapon SubType: 2hStaff Buy: 200000 Weight: 2400 Attack: 120 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"AB_ADORAMUS",30; - Id: 2064 AegisName: Comp_Iron_Staff Name: "[Not For Sale] Aeon Staff" Type: Weapon SubType: 2hStaff Weight: 800 Attack: 100 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; - Id: 2101 AegisName: Guard Name: Guard Type: Armor Buy: 500 Weight: 300 Defense: 20 Locations: Left_Hand: true ArmorLevel: 1 Refineable: true View: 1 - Id: 2102 AegisName: Guard_ Name: Guard Type: Armor Buy: 500 Weight: 300 Defense: 20 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: 40 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: 40 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: 60 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: 60 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: 45 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: 45 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: 25 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: 110 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: 120 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: 20 Jobs: Novice: true SuperNovice: true Locations: Left_Hand: true ArmorLevel: 1 View: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2113 AegisName: Novice_Shield Name: Novice Shield Type: Armor Buy: 5000 Weight: 1000 Defense: 20 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_All,20; bonus2 bSubEle,Ele_Neutral,-20; - Id: 2114 AegisName: Stone_Buckler Name: Stone Buckler Type: Armor Buy: 30000 Weight: 1500 Defense: 45 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: 80 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: 30 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: 50 Jobs: KagerouOboro: true 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: 50 Slots: 1 Jobs: KagerouOboro: true 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: 45 Jobs: KagerouOboro: true 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: 45 Slots: 1 Jobs: KagerouOboro: true 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: 25 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: 95 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 75 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 85 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 90 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_Upper: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 75 Refineable: true View: 4 Script: | bonus2 bSubEle,Ele_All,-20; bonus bNoKnockback; - 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: 1 Refineable: true View: 2 Script: | bonus bMdef,2; bonus bMagicDamageReturn,2; autobonus2 "{ bonus bShortWeaponDamageReturn,5; }",20,1000,BF_WEAPON,"{ specialeffect2 EF_REFLECTSHIELD; }"; - 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: 120 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: 80 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: 130 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: 18 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: 140 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: 105 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Upper: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 4 Script: | bonus2 bAddClass,Class_All,1; - Id: 2134 AegisName: Shield_Of_Naga Name: Shield of Naga Type: Armor Buy: 20 Weight: 500 Defense: 35 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: All_Upper: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 2 Script: | .@r = getrefine(); bonus bMdef,3; if (.@r<11) { autobonus2 "{ bonus bShortWeaponDamageReturn,("+.@r+"*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } else { autobonus2 "{ bonus bShortWeaponDamageReturn,30; }",10,1000*(5+(.@r-10)/2),BF_WEAPON,"{ specialeffect2 EF_GUARD; }"; } - Id: 2135 AegisName: Shadow_Guard Name: Shadow Guard Type: Armor Buy: 20 Weight: 800 Defense: 52 Slots: 1 Jobs: Rogue: true Classes: All_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: 55 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: | bonus bAgi,2; bonus2 bSubEle,Ele_Neutral,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",10,10; bonus bMdef,1; - Id: 2137 AegisName: Valkyrja's_Shield_C Name: Neo Valkyrja's Shield Type: Armor Defense: 110 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 95 View: 4 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubRace,RC_DemiHuman,30; bonus bMaxHPrate,5; - Id: 2138 AegisName: Bradium_Shield Name: Bradium Shield Type: Armor Buy: 20 Weight: 1800 Defense: 98 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: All_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: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 99 View: 1 - Id: 2140 AegisName: Energy_Rune_Guard Name: Energy Rune Guard Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 4 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSPrate,2; - Id: 2141 AegisName: Freyja_SShield7 Name: Freyja Spirit Shield Type: Armor Weight: 300 Defense: 5 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 20 View: 1 Script: | bonus2 bSubSize,Size_Medium,25; - Id: 2142 AegisName: Freyja_SShield30 Name: Freyja Spirit Shield Type: Armor Weight: 300 Defense: 5 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 20 View: 1 Script: | bonus2 bSubSize,Size_Medium,25; - Id: 2143 AegisName: Freyja_SShield60 Name: Freyja Spirit Shield Type: Armor Weight: 300 Defense: 5 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 20 View: 1 Script: | bonus2 bSubSize,Size_Medium,25; - Id: 2144 AegisName: Freyja_SShield90 Name: Freyja Spirit Shield Type: Armor Weight: 300 Defense: 5 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 20 View: 1 Script: | bonus2 bSubSize,Size_Medium,25; - Id: 2145 AegisName: Time_Keepr_Shield Name: Time Keeper Shield Type: Armor Buy: 30000 Defense: 20 Locations: Left_Hand: true ArmorLevel: 1 Refineable: true View: 3 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,1; bonus2 bSubEle,Ele_Neutral,10; - Id: 2146 AegisName: Siver_Guard Name: Silver Guard Type: Armor Buy: 12500 Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 22 Refineable: true View: 1 - Id: 2147 AegisName: Round_Buckler Name: Round Buckleer Type: Armor Buy: 24000 Weight: 600 Defense: 90 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 22 Refineable: true View: 2 - Id: 2148 AegisName: Rotha_Shield Name: Rosa Shield Type: Armor Buy: 56000 Weight: 1300 Defense: 130 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 3 - Id: 2149 AegisName: Upg_Guard Name: Upg Guard Type: Armor Buy: 20 Weight: 150 Defense: 25 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2150 AegisName: Upg_Buckler Name: Upg Buckler Type: Armor Buy: 20 Weight: 300 Defense: 45 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 EquipLevelMin: 1 Refineable: true View: 2 Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2151 AegisName: Upg_Shield Name: Upg Shield Type: Armor Buy: 20 Weight: 650 Defense: 65 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 3 Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2152 AegisName: Anti_Demon_Shield_C Name: Anti-Demon Shield Type: Armor Defense: 120 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 View: 3 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubRace,RC_DemiHuman,25; bonus2 bSubRace,RC_Player_Human,25; bonus2 bSubRace,RC_Demon,25; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Demon,5; bonus bMaxHP,400; } - Id: 2153 AegisName: Imperial_Guard Name: Imperial Guard Type: Armor Buy: 20 Weight: 2500 Defense: 120 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 102 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bSkillAtk,"LG_SHIELDPRESS",(.@r>=6?20+((.@r-5)*2):20); - Id: 2154 AegisName: Toy_Shield Name: Toy Shield Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 1 - Id: 2155 AegisName: Academy_Shield Name: Academy Shield Type: Armor Weight: 1500 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Left_Hand: true ArmorLevel: 1 Refineable: true View: 4 - Id: 2156 AegisName: Bible_Of_Promise1 Name: Bible of Promise(1st Vol.) Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 110 Refineable: true View: 5 Script: | bonus bMdef,2; skill "ALL_ODINS_POWER",1; - Id: 2157 AegisName: Insecticide Name: Pesticide Type: Armor Buy: 20 Weight: 100 Locations: Left_Hand: true ArmorLevel: 1 Refineable: true View: 3 Script: | bonus2 bAddRace,RC_Insect,10; - Id: 2158 AegisName: Ramor_Shield_Undead Name: Ramor Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubRace,RC_DemiHuman,-5; bonus2 bSubEle,Ele_Undead,5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2159 AegisName: Sharel_Shield Name: Sharel Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2160 AegisName: Giant_Shield Name: Giant Shield Type: Armor Buy: 56000 Weight: 2800 Defense: 130 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 3 Script: | bonus2 bSubSize,Size_Large,5; if (getrefine()>=9) { bonus2 bSubSize,Size_Large,5; } - Id: 2161 AegisName: Geffenia_Book_Water Name: Geffenia Tomb of Water Type: Armor Buy: 56000 Weight: 1000 Defense: 30 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 5 Script: | bonus bMdef,2; bonus bInt,1; if (readparam(bInt)>=120) { bonus bMatk,10; bonus bMaxHP,800; } - Id: 2162 AegisName: Bible_Of_Promise2 Name: Bible of Promise(2nd Vol.) Type: Armor Buy: 56000 Weight: 500 Defense: 20 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true View: 5 Script: | bonus bMdef,5; skill "ALL_ODINS_POWER",2; bonus bHealPower,5; - Id: 2163 AegisName: Flow_Shield Name: Flow Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Water,5; bonus2 bSubRace,RC_Brute,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2164 AegisName: Sombre_Shield Name: Sombre Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2165 AegisName: Sol_Shield Name: Sol Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Plant,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2166 AegisName: Exorcism_Bible_ Name: Devil's Bible Drive Type: Armor Buy: 20 Weight: 600 Defense: 80 Slots: 1 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: 2167 AegisName: Poison_Shield Name: Poison Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2168 AegisName: Immuned_Shield Name: Immune Shield Type: Armor Buy: 20 Weight: 700 Defense: 55 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 4 Trade: NoDrop: true Script: | .@r = getrefine(); if (.@r>=5) bonus2 bSubEle,Ele_Neutral,min(.@r,12)-4; if (.@r>6) bonus2 bSubEle,Ele_Neutral,5; if (.@r>8) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; } - Id: 2169 AegisName: Kalasak Name: Kalasag Type: Armor Buy: 20 Weight: 400 Defense: 40 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus2 bSubClass,Class_Boss,getrefine()/3; - Id: 2170 AegisName: Bayani_Kalasak Name: Bayani Kalasag Type: Armor Buy: 20 Weight: 400 Defense: 40 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus2 bSubClass,Class_Boss,getrefine()/3; - Id: 2171 AegisName: Fox_Armguard Name: Fox Wrist Guard Type: Armor Buy: 40000 Weight: 200 Defense: 45 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | bonus bFlee,5; - Id: 2172 AegisName: Wolf_Armguard Name: Wolf Wrist Guard Type: Armor Buy: 45000 Weight: 250 Defense: 70 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | autobonus "{ bonus bBaseAtk,100; bonus bFlee,-50; }",20,5000,BF_WEAPON,"{ specialeffect2 EF_TEIHIT1; }"; - Id: 2173 AegisName: Crescent_Armguard Name: Crescent Wrist Guard Type: Armor Buy: 45000 Weight: 250 Defense: 45 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | bonus bDelayrate,-(getrefine()*2); - Id: 2174 AegisName: Lumiere_Shield Name: Lumiere Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2175 AegisName: Esprit_Shield Name: Esprit Shield Type: Armor Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; - Id: 2176 AegisName: Dark_Book Name: Black Book Type: Armor Buy: 20 Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 5 Script: | bonus bMdef,5; .@r = getrefine(); if (.@r>=9) bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",3,30; else if (.@r>=7) bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",2,20; else bonus3 bAutoSpellWhenHit,"NPC_DRAGONFEAR",1,10; - Id: 2177 AegisName: Shield_Of_Death Name: Shield Of Death Type: Armor Buy: 20 Weight: 2000 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 3 Script: | bonus2 bAddClass,Class_Boss,2; bonus2 bMagicAddClass,Class_Boss,2; bonus2 bSubClass,Class_Normal,-10; - Id: 2178 AegisName: TE_Woe_Buckler Name: TE Woe Buckler Type: Armor Defense: 15 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 2 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,15; bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSubRace,RC_Player_Human,15; bonus2 bSubRace,RC_Player_Doram,15; - Id: 2179 AegisName: TE_Woe_Shield Name: TE Woe Shield Type: Armor Defense: 25 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 3 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bMaxHP,200; bonus2 bSubRace,RC_Player_Human,20; bonus2 bSubRace,RC_Player_Doram,20; - Id: 2180 AegisName: TE_Woe_Magic_Guard Name: TE Woe Magic Guard Type: Armor Defense: 5 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,25; bonus bMaxSP,200; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 2181 AegisName: Hervor Name: Hervor Type: Armor Buy: 10 Weight: 1500 Defense: 100 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 View: 2 Script: | bonus bMdef,5; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; - Id: 2182 AegisName: Hervor_Alvitr Name: Hervor Alvitr Type: Armor Weight: 3000 Defense: 150 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: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 View: 2 Script: | bonus bMdef,10; bonus bVit,20; bonus2 bSubRace,RC_All,30; bonus bUnbreakableShield; /*todo instead of autobonus2 bonus4 bAutoSpellWhenHit,"ALL_RAY_OF_PROTECTION",1,50,0;*/ autobonus2 "{ sc_end SC_STUN; sc_end SC_SLEEP; sc_end SC_CURSE; sc_end SC_STONE; sc_end SC_POISON; sc_end SC_BLIND; sc_end SC_SILENCE; sc_end SC_BLEEDING; sc_end SC_CONFUSION; sc_end SC_FREEZE; bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,Eff_Curse,10000; bonus2 bResEff,Eff_Stone,10000; bonus2 bResEff,Eff_Poison,10000; bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Silence,10000; bonus2 bResEff,Eff_Bleeding,10000; bonus2 bResEff,Eff_Confusion,10000; bonus2 bResEff,Eff_Freeze,10000; }",50,60000,BF_SHORT; - Id: 2183 AegisName: Impr_Angel's_Safeguard Name: Advanced Angelic Guard Type: Armor Buy: 10000 Weight: 400 Defense: 30 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 1 Script: | bonus2 bSubRace,RC_Demon,5; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; - Id: 2184 AegisName: Bunker_Shield Name: Bunker Shield Type: Armor Buy: 20 Weight: 3500 Defense: 90 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 3 Script: | .@r = getrefine(); bonus2 bAddClass,Class_All,4+max(0,.@r-4); bonus bAspdRate,-5; - Id: 2185 AegisName: Magic_Reflector Name: Magic Reflect Type: Armor Buy: 10 Weight: 1000 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 3 Script: | bonus bMdef,10; .@r = getrefine(); .@val = 3; if (.@r>6) { .@val += 3; if (.@r>8) .@val += 3; } bonus bMagicDamageReturn,.@val; - Id: 2186 AegisName: Encyclopedia_Revision Name: Revised Encyclopedia Type: Armor Buy: 10 Weight: 200 Defense: 50 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 4 Script: | bonus bInt,3; bonus bDex,2; .@r = getrefine(); bonus bCritical,3+((.@r >= 7) ? 2 : 0); bonus bMatk,5+((.@r >= 9) ? 5 : 0); - Id: 2187 AegisName: Shield_Of_Gray Name: Shield of Gray Type: Armor Buy: 10 Weight: 2000 Defense: 75 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: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true View: 3 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Holy,30+.@r; bonus bMdef,9+.@r/3; - Id: 2188 AegisName: Svalinn_J Name: Svalinn Type: Armor Buy: 10 Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus bMaxHPrate,.@r/3; bonus2 bSubEle,Ele_Water,5*(.@r/3); bonus bMdef,5; - Id: 2189 AegisName: Mad_Bunny Name: Mad Bunny Shield Type: Armor Buy: 10 Weight: 100 Defense: 40 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 6 Script: | bonus2 bSubEle,Ele_All,5; bonus bMdef,6; bonus bDex,1; - Id: 2190 AegisName: Ancient_Shield_Of_Aeon Name: Ancient Shield Of Aeon Type: Armor Weight: 200 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 Wizard: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 2 Script: | bonus2 bSubEle,Ele_All,10; bonus bMaxHP,500; bonus bMaxSP,50; if (getrefine()>=14) skill "MG_STONECURSE",5; - Id: 2191 AegisName: Solomon_Key Name: Solomon's Key Type: Armor Weight: 300 Defense: 2 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1 Script: | bonus bInt,2; bonus bMdef,5; bonus bMatk,(readparam(bInt) >= 120 ? 30 : 5); - Id: 2192 AegisName: Rose_Of_Eden Name: Rose of Eden Type: Armor View: 3 Weight: 300 Defense: 70 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bHealPower,10; - Id: 2193 AegisName: Fallen_Angel_Shield Name: Fallen Angel Shield Type: Armor View: 4 Weight: 500 Defense: 100 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); if (.@r >=7) autobonus2 "{ .@r = getrefine(); bonus bDelayrate,-10-(5*(.@r-6)); }",50,5000,BF_MAGIC; else autobonus2 "{ bonus bDelayrate,-10; }",50,5000,BF_MAGIC; - Id: 2194 AegisName: Rouban_Shield Name: Levain Shield Type: Armor View: 1 Buy: 20 Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Wind,5; bonus2 bSubRace,RC_Insect,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2195 AegisName: Lian_Shield Name: Lian Shield Type: Armor Weight: 1300 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 3 Script: | bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,10; } - Id: 2196 AegisName: White_Gold_Shield Name: White Gold Shield Type: Armor Weight: 1800 Defense: 140 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 4 Script: | bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",6,150,BF_MAGIC,0; bonus bUnbreakableShield; - Id: 2197 AegisName: Iron_Shield Name: Iron Shield Type: Armor View: 4 Weight: 2800 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus bUnbreakableShield; if (getrefine()>=8) { bonus bAspdRate,-3; bonus bNoKnockback; } - Id: 2198 AegisName: Lapine_Shield Name: Lapine Shield Type: Armor Weight: 1000 Defense: 25 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 3 Script: | bonus bMdef,10; if (getrefine() > 7) { bonus bMatk,20; } - Id: 2199 AegisName: Ahura_Mazda Name: Ahura Mazdah Type: Armor Buy: 1 Weight: 10 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; skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; bonus bMaxHPrate,200; bonus bNoKnockback; bonus bDelayrate,-100; bonus bSpeedRate,25; bonus bIntravision; bonus bNoWalkDelay; bonus bNoGemStone; - 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: 2 Locations: Head_Top: true ArmorLevel: 1 View: 9 - Id: 2211 AegisName: Bandana Name: Bandana Type: Armor Buy: 400 Weight: 100 Defense: 2 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: 3 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: 3 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: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 5 - Id: 2216 AegisName: Biretta Name: Biretta Type: Armor Buy: 9000 Weight: 100 Defense: 8 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: 8 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: 5 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: 5 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: 7 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: 7 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: 13 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: 13 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: 8 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: 8 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: 6 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: 6 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: 7 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: 7 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: 2 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: 2238 AegisName: Weird_Moustache Name: Moustache Type: Armor Buy: 2 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 # Script: | # bonus bMaxHP,100000; View: 22 - 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: 2 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: 3 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: 5 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: 9 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: 5 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: 5 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: 5 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: 2 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: 10 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: 7 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: 4 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: 6 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: 9 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: 4 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: 12 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: 2 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: 2 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: 8 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: 4 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: 5 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: 4 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: 2 Locations: Head_Mid: true ArmorLevel: 1 View: 63 - Id: 2277 AegisName: Nurse_Cap Name: Nurse Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 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: 2 Locations: Head_Top: true ArmorLevel: 1 View: 66 - Id: 2280 AegisName: Sahkkat Name: Sakkat Type: Armor Buy: 20 Weight: 300 Defense: 4 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: 4 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: 8 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 Defense: 1 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: 4 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: 2 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: 2 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: 3 Locations: Head_Top: true ArmorLevel: 1 View: 85 - Id: 2299 AegisName: Viking_Helm Name: Orc Helm Type: Armor Buy: 20 Weight: 500 Defense: 9 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: 10 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 2302 AegisName: Cotton_Shirt_ Name: Cotton Shirt Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 2303 AegisName: Leather_Jacket Name: Jacket Type: Armor Buy: 200 Weight: 200 Defense: 15 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 2304 AegisName: Leather_Jacket_ Name: Jacket Type: Armor Buy: 200 Weight: 200 Defense: 15 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: 20 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 2306 AegisName: Adventurere's_Suit_ Name: Adventurer's Suit Type: Armor Buy: 1000 Weight: 300 Defense: 20 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 2307 AegisName: Mantle Name: Mantle Type: Armor Buy: 10000 Weight: 600 Defense: 37 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: 37 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: 42 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: 42 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: 30 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: 35 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: 35 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: 55 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: 55 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: 70 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: 70 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: 59 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: 58 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: 40 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: 20 Jobs: Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Mage: true Merchant: true Monk: true Priest: true Sage: true SoulLinker: 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: 20 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 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: 24 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: 24 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: 50 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: 50 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: 57 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: 25 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: 25 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: 27 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: 27 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: 23 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: 23 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: 40 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: 40 Jobs: Assassin: true KagerouOboro: 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: 40 Slots: 1 Jobs: Assassin: true KagerouOboro: 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: 58 Jobs: Assassin: true KagerouOboro: 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 Defense: 10 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: 22 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 2340 AegisName: Novice_Breast Name: Novice Breastplate Type: Armor Buy: 89000 Weight: 500 Defense: 32 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: 79 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: 79 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: 40 Jobs: Sage: true SoulLinker: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 75 Refineable: true Script: | bonus bVariableCastrate,-3; bonus bMdef,4; - Id: 2344 AegisName: Flame_Sprits_Armor Name: Lucius's Fierce Armor of Volcano Type: Armor Buy: 136000 Weight: 2200 Defense: 25 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: 25 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: 25 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: 25 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: 25 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: 25 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: 25 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: 25 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: 25 Jobs: Novice: true SuperNovice: true Locations: Armor: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2353 AegisName: Odin's_Blessing Name: Odin's Blessing Type: Armor Buy: 30000 Weight: 2500 Defense: 53 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: 58 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: 25 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: 45 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: 55 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLuk,4; - Id: 2359 AegisName: Ninja_Suit_ Name: Ninja Suit Type: Armor Buy: 20 Weight: 1500 Defense: 58 Slots: 1 Jobs: Assassin: true KagerouOboro: 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: 40 Slots: 1 Jobs: Sage: true SoulLinker: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 75 Refineable: true Script: | bonus bVariableCastrate,-3; bonus bMdef,4; - Id: 2361 AegisName: Blue_Aodai Name: Blue Robe Type: Armor Buy: 20 Weight: 500 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,3; bonus bMdef,5; - Id: 2362 AegisName: Red_Aodai Name: Red Robe Type: Armor Buy: 20 Weight: 500 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,3; bonus bMdef,5; - Id: 2363 AegisName: White_Aodai Name: White Robe Type: Armor Buy: 20 Weight: 500 Jobs: Novice: true SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,3; bonus bMdef,5; - Id: 2364 AegisName: Meteo_Plate_Armor Name: Meteo Plate Armor Type: Armor Buy: 20 Weight: 3000 Defense: 85 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Classes: All_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: 15 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 55 Refineable: true Script: | bonus bVariableCastrate,15; bonus bNoCastCancel; - Id: 2366 AegisName: Divine_Cloth Name: Divine Cloth Type: Armor Buy: 20 Weight: 1500 Defense: 50 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 42 Slots: 1 Jobs: Hunter: true Classes: All_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: 22 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 2372 AegisName: Mage_Coat_ Name: Mage Coat Type: Armor Buy: 20 Weight: 600 Defense: 40 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: 57 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: 57 Slots: 1 Jobs: Acolyte: true Archer: true BardDancer: true Hunter: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 60 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: 79 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bStr,2; bonus bDex,1; bonus bMdef,5; 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: 57 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 NoStorage: 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: 50 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 NoStorage: 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: 41 Slots: 1 Jobs: Assassin: true KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: 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: 36 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 NoStorage: 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: 25 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 NoStorage: 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: 35 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 NoStorage: 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: 25 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: 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: 120 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: 38 Locations: Armor: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 2385 AegisName: Recuperative_Armor Name: Recuperative Armor Type: Armor Buy: 20 Defense: 67 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } UnEquipScript: | heal 0,-100; - Id: 2386 AegisName: Chameleon_Armor Name: Chameleon Armor Type: Armor Buy: 20 Weight: 1700 Defense: 55 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: All_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: 20 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: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bVit,1; bonus bHPrecovRate,5; bonus bAddItemHealRate,3; bonus bHealPower2,3; - Id: 2388 AegisName: Kandura Name: Kandura Type: Armor Buy: 20 Weight: 300 Defense: 36 Slots: 1 Jobs: Assassin: true Classes: All_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: 45 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: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMdef,2; autobonus "{ bonus bBaseAtk,20; }",5,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; - Id: 2390 AegisName: Improved_Tights Name: Improved Tights Type: Armor Buy: 20 Weight: 400 Defense: 38 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Classes: All_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: 75 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Classes: All_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: 60 Locations: Armor: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,2; bonus bVit,2; bonus bMaxHP,200; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,30; bonus bMdef,1; - Id: 2393 AegisName: N_Adventurer's_Suit Name: Novice Adventurer's Suit Type: Armor Defense: 45 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 Defense: 10 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 Defense: 10 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 Defense: 10 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: 10 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: All_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: 20 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,3; - Id: 2400 AegisName: Pollux_Shoes_J Name: Pollux Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bSPDrainValue,2; bonus2 bSubClass,Class_Boss,5; if (.@r>=8) { bonus bFixedCastrate,-60; bonus2 bSkillAtk,"TK_JUMPKICK",5*BaseLevel; } } - Id: 2401 AegisName: Sandals Name: Sandals Type: Armor Buy: 400 Weight: 200 Defense: 5 Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 2402 AegisName: Sandals_ Name: Sandals Type: Armor Buy: 400 Weight: 200 Defense: 5 Slots: 1 Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 2403 AegisName: Shoes Name: Shoes Type: Armor Buy: 3500 Weight: 400 Defense: 10 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: 10 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: 16 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Gunslinger: true Hunter: true Knight: true Merchant: true Rebellion: 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: 16 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Gunslinger: true Hunter: true Knight: true Merchant: true Rebellion: 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 Defense: 5 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: 18 Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 2409 AegisName: Spiky_Heel Name: High Heels Type: Armor Buy: 8500 Weight: 600 Defense: 10 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: 40 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 94 Script: | bonus bUnbreakableShoes; bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; bonus bInt,25; - Id: 2411 AegisName: Grave Name: Greaves Type: Armor Buy: 48000 Weight: 750 Defense: 27 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: 27 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: 22 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: 5 Jobs: Novice: true SuperNovice: true Locations: Shoes: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2415 AegisName: Slipper Name: Bunny Slipper Type: Armor Buy: 34000 Weight: 300 Defense: 9 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: 8 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: 12 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: 13 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: 13 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: 8 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: 13 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 7 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: 13 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 85 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; - Id: 2424 AegisName: Tidal_Shoes Name: Tidal Shoes Type: Armor Buy: 20 Weight: 300 Defense: 13 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 16 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 55 Refineable: true Script: | bonus bAgi,(getrefine()>=9?3:1); - Id: 2426 AegisName: Shadow_Walk Name: Shadow Walk Type: Armor Buy: 20 Weight: 2000 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 75 Refineable: true Script: | bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,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: 22 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 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: 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: 10 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: 15 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: All_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: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 55 Refineable: true Script: | bonus bAgi,(getrefine()>=9?3:1); - Id: 2435 AegisName: Battle_Greave Name: Battle Greaves Type: Armor Buy: 10 Defense: 15 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true KagerouOboro: 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 NoStorage: 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: 9 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 NoStorage: 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: 9 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: 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: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bFlee,5; bonus bAgi,1; /* skill "ALL_CATCRY",1; */ - Id: 2439 AegisName: Refresh_Shoes Name: Refresh Shoes Type: Armor Buy: 20 Defense: 20 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 2440 AegisName: Sprint_Shoes Name: Sprint Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 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: All_Upper: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 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: 18 Locations: Shoes: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLuk,2; bonus bHPrecovRate,10; bonus bSPrecovRate,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30; bonus bMdef,1; - Id: 2443 AegisName: Fish_Shoes Name: Fisher's Boots Type: Armor Buy: 10 Weight: 250 Locations: Shoes: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - 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 Defense: 10 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: All_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: | .@r = getrefine(); bonus bMaxHPrate,20-.@r; bonus bMaxSPrate,20-.@r; bonus bDef,.@r/2; - Id: 2450 AegisName: Vital_Tree_Shoes Name: Vital Tree Shoes Type: Armor Buy: 20 Weight: 500 Defense: 16 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bHPrecovRate,5; bonus bMaxHPrate,10; bonus2 bHPRegenRate,30,10000; bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bMdef,3; bonus bVit,2; - Id: 2451 AegisName: Freyja_SSandal7 Name: Freyja Sprit Sandals Type: Armor Buy: 20 Weight: 400 Defense: 5 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHPrate,8; bonus bMaxSPrate,8; - Id: 2452 AegisName: Freyja_SSandal30 Name: Freyja Sprit Sandals Type: Armor Buy: 20 Weight: 400 Defense: 5 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHPrate,8; bonus bMaxSPrate,8; - Id: 2453 AegisName: Freyja_SSandal60 Name: Freyja Sprit Sandals Type: Armor Buy: 20 Weight: 400 Defense: 5 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHPrate,8; bonus bMaxSPrate,8; - Id: 2454 AegisName: Freyja_SSandal90 Name: Freyja Sprit Sandals Type: Armor Buy: 20 Weight: 400 Defense: 5 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHPrate,8; bonus bMaxSPrate,8; - Id: 2455 AegisName: Time_Keepr_Boots Name: Time Keeper's Boots Type: Armor Buy: 30000 Defense: 17 Locations: Shoes: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,1; bonus bMaxHP,100; bonus bHPrecovRate,10; bonus bSPrecovRate,10; - Id: 2456 AegisName: Para_Team_Boots1 Name: Eden Team Boots I Type: Armor Defense: 14 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 7 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHPrecovRate,10; bonus bSPrecovRate,2; - Id: 2457 AegisName: Para_Team_Boots2 Name: Eden Team Boots II Type: Armor Defense: 16 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHPrecovRate,12; bonus bSPrecovRate,4; - Id: 2458 AegisName: Para_Team_Boots3 Name: Eden Team Boots III Type: Armor Defense: 18 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHPrecovRate,14; bonus bSPrecovRate,6; - Id: 2459 AegisName: Upg_Shoes Name: Upg Shoes Type: Armor Buy: 20 Weight: 200 Defense: 15 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2460 AegisName: Upg_Boots Name: Upg Boots Type: Armor Buy: 20 Weight: 300 Defense: 21 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Gunslinger: true Hunter: true Knight: true Merchant: true Rebellion: true Rogue: true StarGladiator: true Swordman: true Taekwon: true Thief: true Locations: Shoes: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2461 AegisName: Upg_Greave Name: Upg Greaves Type: Armor Buy: 20 Weight: 400 Defense: 32 Slots: 1 Jobs: Crusader: true Knight: true Locations: Shoes: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2462 AegisName: Sleipnir_C Name: Sleipnir Type: Armor Buy: 20 Defense: 40 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 94 Script: | bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bSPrecovRate,15; bonus bSpeedRate,25; - Id: 2463 AegisName: Feral_Boots Name: Feral Boots Type: Armor Buy: 20 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 75 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2464 AegisName: No_Fear_Shoes Name: No Fear Shoes Type: Armor Defense: 6 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bStr,1; bonus bInt,1; bonus bDex,1; - Id: 2465 AegisName: Dance_Shoes Name: Dance Shoes Type: Armor Buy: 20 Weight: 300 Defense: 15 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 105 Refineable: true Script: | bonus bAgi,1; bonus bAspdRate,2; bonus2 bSkillUseSP,"WA_SWING_DANCE",32; - Id: 2466 AegisName: Training_Shoes Name: Training Shoes Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true - Id: 2467 AegisName: Golden_Rod_Shoes Name: Golden Rod Shoes Type: Armor Buy: 20 Weight: 500 Defense: 12 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Wind,15; - Id: 2468 AegisName: Aqua_Shoes Name: Aqua Shoes Type: Armor Buy: 20 Weight: 500 Defense: 12 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Water,15; - Id: 2469 AegisName: Crimson_Shoes Name: Crismons Shoes Type: Armor Buy: 20 Weight: 500 Defense: 12 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Fire,15; - Id: 2470 AegisName: Forest_Shoes Name: Forest Shoes Type: Armor Buy: 20 Weight: 500 Defense: 12 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,2; bonus bMaxHP,500; bonus2 bSubEle,Ele_Earth,15; - Id: 2471 AegisName: Shoes_Of_Affection Name: Shoes Of Affection Type: Armor Buy: 20 Weight: 300 Defense: 12 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,20; /* note: 20 according to description */ bonus2 bSubRace,RC_Player_Human,20; bonus2 bSubRace,RC_Formless,-10; bonus2 bSubRace,RC_Undead,-10; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus2 bSubRace,RC_Plant,-10; bonus2 bSubRace,RC_Insect,-10; bonus2 bSubRace,RC_Fish,-10; bonus2 bSubRace,RC_Demon,-10; bonus2 bSubRace,RC_Angel,-10; bonus2 bSubRace,RC_Dragon,-10; - Id: 2472 AegisName: Shoes_Of_Judgement Name: Shoes Of Judgement Type: Armor Buy: 20 Weight: 300 Defense: 12 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bSkillUseSP,"AB_JUDEX",-40; bonus bMaxSP,150; - Id: 2473 AegisName: Para_Team_Boots4 Name: Eden Team Boots IV Type: Armor Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgiVit,1; bonus bHPrecovRate,28; bonus bSPrecovRate,12; - Id: 2474 AegisName: Lehmannza_Shoes Name: Lehmannza Shoes Type: Armor Buy: 20 Weight: 500 Defense: 3 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bMdef,3; - Id: 2475 AegisName: Ur_Greave Name: Ur's Greaves Type: Armor Buy: 20 Weight: 900 Defense: 32 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxSP,40; .@r = getrefine(); if (.@r>7) bonus bMaxHPrate,.@r-7; - Id: 2476 AegisName: Peuz_Greave Name: Peuz's Greaves Type: Armor Buy: 20 Weight: 900 Defense: 32 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxSP,40; .@r = getrefine(); if (.@r>7) bonus bAgi,.@r-7; - Id: 2477 AegisName: Sabah_Shoes Name: Sapha Shoes Type: Armor Buy: 20 Weight: 400 Defense: 18 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxSP,30; bonus bLuk,3; - Id: 2478 AegisName: Nab_Shoes Name: Nab Shoes Type: Armor Buy: 20 Weight: 400 Defense: 18 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bFlee,3; bonus bInt,2; - Id: 2479 AegisName: White_Wing_Boots Name: White Wing Boots Type: Armor Buy: 20 Weight: 400 Defense: 18 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,2; bonus2 bSkillUseSP,"RA_AIMEDBOLT",10; - Id: 2480 AegisName: Black_Wing_Boots Name: Black Wing Boots Type: Armor Buy: 20 Weight: 400 Defense: 18 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bInt,2; bonus bMaxSPrate,5; - Id: 2481 AegisName: Rune_Boots Name: Rune Boots Type: Armor Buy: 20 Weight: 100 Defense: 5 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@a = readparam(bStr); .@b = readparam(bInt); if (.@a>=90) bonus bBaseAtk,10; if (.@b=90) bonus bMatkRate,3; if (.@a>=120) bonus bBaseAtk,10; if (.@b>=120) bonus bMatkRate,2; - Id: 2482 AegisName: Shoes_Of_Valor Name: Shoes Of Valor Type: Armor Defense: 4 Locations: Shoes: true ArmorLevel: 1 Script: | skill "AL_INCAGI",1; bonus bUseSPrate,10; - Id: 2483 AegisName: Siege_Greave Name: Siege Greaves Type: Armor Buy: 10 Weight: 750 Defense: 30 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true Script: | bonus bMdef,1; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 2484 AegisName: Siege_Boots Name: Siege Boots Type: Armor Buy: 10 Weight: 500 Defense: 20 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Gunslinger: true Hunter: true KagerouOboro: true Knight: true Merchant: true Ninja: true Rebellion: true Rogue: true StarGladiator: true Swordman: true Taekwon: true Thief: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true Script: | bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; - Id: 2485 AegisName: Siege_Shoes Name: Siege Shoes Type: Armor Buy: 10 Weight: 350 Defense: 15 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; - Id: 2486 AegisName: Shadow_Walk_ Name: Shadow Walk Type: Armor Buy: 20 Weight: 2000 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 75 Refineable: true Script: | bonus bMdef,10; bonus5 bAutoSpellWhenHit,"AS_CLOAKING",max(2,getskilllv("AS_CLOAKING")),100,BF_MAGIC,0; - Id: 2487 AegisName: Vital_Tree_Shoes_ Name: Vital Tree Shoes Type: Armor Buy: 20 Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bVit,2; bonus bMdef,3; - Id: 2488 AegisName: Fricco_Shoes_ Name: Fricco Shoes Type: Armor Buy: 30000 Weight: 500 Defense: 12 Slots: 1 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: 2489 AegisName: Vidar's_Boots_ Name: Vidar's Boots Type: Armor Buy: 30000 Weight: 650 Defense: 13 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus bMaxHPrate,9; bonus bMaxSPrate,9; - Id: 2490 AegisName: Rune_Boots_ Name: Rune Boots Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@a = readparam(bStr); .@b = readparam(bInt); if (.@a>=90) bonus bBaseAtk,10; if (.@b>=90) bonus bMatkRate,3; if (.@a>=120) bonus bBaseAtk,10; if (.@b>=120) bonus bMatkRate,2; - Id: 2491 AegisName: Bangungot_Boots Name: Bangungot Boots of Nightmare Type: Armor Buy: 20 Weight: 600 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,.@r; if (.@r>=14) { bonus bSpeedRate,25; } - Id: 2492 AegisName: Bayani_Bangungot_Boots Name: Bayani Bangungot Boots of Nightmare Type: Armor Buy: 20 Weight: 600 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,.@r; if (.@r>=12) { bonus bSpeedRate,25; } - Id: 2493 AegisName: Goibne_Combat_Boots_ Name: Goibne's Greaves Type: Armor Buy: 30000 Weight: 700 Defense: 13 Slots: 1 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: 2494 AegisName: Chrystal_Pumps_ Name: Crystal Pumps Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,10; bonus bLuk,5; - Id: 2495 AegisName: Egir_Shoes Name: Egir Shoes Type: Armor Buy: 200000 Weight: 300 Defense: 13 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 110 Refineable: true Script: | 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: 2496 AegisName: TE_Woe_Shoes Name: TE Woe Shoes Type: Armor Defense: 5 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Freeze,2500; - Id: 2497 AegisName: TE_Woe_Boots Name: TE Woe Boots Type: Armor Defense: 10 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,200; bonus bMaxSP,100; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bResEff,Eff_Freeze,2500; - Id: 2498 AegisName: TE_Woe_Magic_Sandal Name: TE Woe Magic Sandal Type: Armor Defense: 5 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bMaxHP,100; bonus bMaxSP,200; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Freeze,2500; - Id: 2499 AegisName: Temporal_Boots Name: Temporal Boots Type: Armor Buy: 400 Weight: 600 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | .@r = getrefine()/3; bonus bMaxHP,300+(.@r*100); bonus bMaxSP,30+(.@r*10); - Id: 2501 AegisName: Hood Name: Hood Type: Armor Buy: 1000 Weight: 200 Defense: 4 Locations: Garment: true ArmorLevel: 1 Refineable: true - Id: 2502 AegisName: Hood_ Name: Hood Type: Armor Buy: 1000 Weight: 200 Defense: 4 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true - Id: 2503 AegisName: Muffler Name: Muffler Type: Armor Buy: 5000 Weight: 400 Defense: 8 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: 8 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: 13 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: 13 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: 9 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: 4 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 Defense: 10 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: 4 Jobs: Novice: true SuperNovice: true Locations: Garment: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,20; - Id: 2511 AegisName: Skeleton's_Cape Name: Skeleton Manteau Type: Armor Buy: 5000 Weight: 700 Defense: 13 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: 7 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: 18 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: 25 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: 12 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: 8 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: 13 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: 8 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: 9 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: 11 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: 6 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: 5 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,1; - Id: 2523 AegisName: Undershirt_ Name: Undershirt Type: Armor Buy: 20000 Weight: 150 Defense: 5 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,1; - Id: 2524 AegisName: Valkyrie_Manteau Name: Valkyrian Manteau Type: Armor Weight: 500 Defense: 10 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bUnbreakableGarment; .@r = getrefine(); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,5+(min(.@r,10)*2); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,5+(min(.@r,10)*2); - Id: 2525 AegisName: Cape_Of_Ancient_Lord_ Name: Ancient Cape Type: Armor Buy: 82000 Weight: 600 Defense: 9 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: 14 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bMaxHP,300; - Id: 2527 AegisName: Dragon_Breath Name: Dragon Breath Type: Armor Buy: 20 Weight: 600 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 11 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 13 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 13 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 13 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_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: 8 Slots: 1 Jobs: Acolyte: true Archer: true BardDancer: true Hunter: true Mage: true Monk: true Priest: true Sage: true Wizard: true Classes: All_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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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: 17 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Garment: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,10; bonus bMdef,10; - Id: 2536 AegisName: Skin_Of_Ventus Name: Skin of Ventus Type: Armor Buy: 20 Weight: 250 Defense: 7 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: 15 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: All_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; bonus2 bAddDamageClass,1922,10; bonus2 bAddDamageClass,1923,10; bonus2 bAddDamageClass,1924,10; bonus2 bAddDamageClass,1925,10; - Id: 2538 AegisName: Commander_Manteau Name: Captain's Manteau Type: Armor Buy: 10 Defense: 28 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true KagerouOboro: 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 NoStorage: 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: 20 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 NoStorage: 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: 20 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: 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: 40 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 94 Script: | bonus bMdef,5; bonus3 bSubEle,Ele_All,30,BF_WEAPON; 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: 700 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 33 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 2544 AegisName: Leather_Of_Tendrilion Name: Leather of Tendrilion Type: Armor Buy: 20 Weight: 500 Defense: 14 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: All_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: 10 Slots: 1 Jobs: Priest: true Classes: All_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: 11 Locations: Garment: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: 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: 22 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 95 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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 Defense: 3 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: All_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: All_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: 14 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 25 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus2 bSubEle,Ele_All,7; bonus bMaxSP,(BaseLevel/3)+(getrefine()*10); bonus2 bSPDrainRate,10,1; bonus bMdef,3; - Id: 2555 AegisName: Freyja_SScarf7 Name: Freyja Soul Scarf Type: Armor Buy: 20 Weight: 400 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; - Id: 2556 AegisName: Freyja_SScarf30 Name: Freyja Soul Scarf Type: Armor Buy: 20 Weight: 400 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; - Id: 2557 AegisName: Freyja_SScarf60 Name: Freyja Soul Scarf Type: Armor Buy: 20 Weight: 400 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; - Id: 2558 AegisName: Freyja_SScarf90 Name: Freyja Soul Scarf Type: Armor Buy: 20 Weight: 400 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bFlee,15; bonus2 bSubEle,Ele_Neutral,15; - Id: 2559 AegisName: Time_Keepr_Manteau Name: Time Keeper's Manteau Type: Armor Buy: 30000 Defense: 9 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,1; bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,10; - Id: 2560 AegisName: Para_Team_Manteau Name: Eden Team Manteau I Type: Armor Defense: 14 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 7 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,10; - Id: 2561 AegisName: Upg_Hood Name: Upg Hood Type: Armor Weight: 100 Defense: 9 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2562 AegisName: Upg_Muffler Name: Upg Muffler Type: Armor Buy: 20 Weight: 200 Defense: 13 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Garment: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2563 AegisName: Upg_Manteau Name: Upg Manteau Type: Armor Buy: 20 Weight: 300 Defense: 18 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 Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 2564 AegisName: Feral_Tail Name: Feral Tail Type: Armor Buy: 20 Defense: 16 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 75 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2565 AegisName: Beach_Towel Name: Beach Towel Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,3; bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,7; - Id: 2566 AegisName: Half_Asprika Name: Half Asprika Type: Armor Buy: 20 Defense: 20 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 47 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,2; bonus3 bSubEle,Ele_All,15,BF_WEAPON; bonus bFlee,15; skill "AL_TELEPORT",1; bonus bUnbreakableGarment; - Id: 2567 AegisName: Academy_Manteau Name: Academy Manteau Type: Armor Weight: 600 Defense: 3 Slots: 1 Jobs: Archer: true Novice: true SuperNovice: true Thief: true Locations: Garment: true ArmorLevel: 1 Refineable: true - Id: 2568 AegisName: Muffler_Of_Roki Name: Loki's Muffler Type: Armor Buy: 20 Weight: 400 Defense: 10 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,1; bonus2 bSkillAtk,"ASC_BREAKER",5; bonus2 bSkillAtk,"GC_CROSSIMPACT",5; - Id: 2569 AegisName: Shawl_Of_Affection Name: Shawl Of Affection Type: Armor Buy: 20 Weight: 400 Defense: 12 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bFlee2,5; bonus4 bAutoSpellWhenHit,"AB_RENOVATIO",1,30,0; bonus5 bAutoSpellWhenHit,"AB_RENOVATIO",1,40,BF_MAGIC,0; - Id: 2570 AegisName: Shawl_Of_Judgement Name: Shawl Of Judgement Type: Armor Buy: 20 Weight: 400 Defense: 12 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bFlee,5; .@i = max(2,getskilllv("AB_ORATIO")); bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,30,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"AB_ORATIO",.@i,40,BF_MAGIC,0; - Id: 2571 AegisName: Para_Team_Manteau2 Name: Eden Team Manteau II Type: Armor Defense: 18 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bFlee,12; bonus2 bSubEle,Ele_Neutral,10; - Id: 2572 AegisName: Katabart_Sholder Name: Katabart Sholder Type: Armor Buy: 20 Weight: 3000 Defense: 4 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true - Id: 2573 AegisName: Archangel_Wing Name: Archangel Wings Type: Armor Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true View: 1 Trade: NoDrop: true - Id: 2574 AegisName: Ur_Manteau Name: Ur's Manteau Type: Armor Buy: 20 Weight: 600 Defense: 20 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxHPrate,2; bonus2 bSubEle,Ele_Neutral,10; - Id: 2575 AegisName: Peuz_Manteau Name: Peuz's Manteau Type: Armor Buy: 20 Weight: 600 Defense: 16 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bFlee,10; bonus bCritical,10; - Id: 2576 AegisName: Bravery_Bag Name: Adventurer's Backpack Type: Armor Weight: 200 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true View: 2 Trade: NoDrop: true Script: | skill "BS_GREED",1; .@r = getrefine(); if (.@r>=7) { if (readparam(bStr)>=90) { bonus bBaseAtk,(.@r>=9)?30:20; } if (readparam(bInt)>=90) { bonus bMatk,(.@r>=9)?50:30; } if (readparam(bVit)>=90) { bonus2 bSubEle,Ele_Neutral,(.@r>=9)?10:5; } if (readparam(bAgi)>=90) { bonus bAspdRate,8; if (.@r>=9) { bonus bAspd,1; } } if (readparam(bDex)>=90) { bonus bLongAtkRate,(.@r>=9)?10:5; } if (readparam(bLuk)>=90) { bonus bCritAtkRate,(.@r>=9)?15:10; } } - Id: 2577 AegisName: Sabah_Hood Name: Sapha Hood Type: Armor Buy: 20 Weight: 100 Defense: 13 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bFlee,12; bonus bCritAtkRate,getrefine(); - Id: 2578 AegisName: Nab_Hood Name: Nab Hood Type: Armor Buy: 20 Weight: 100 Defense: 13 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bFlee,.@r*2; bonus bBaseAtk,.@r*2; - Id: 2579 AegisName: Magic_Stole Name: Magic Stole Type: Armor Buy: 20 Weight: 700 Defense: 8 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,3; bonus bUseSPrate,-5; bonus bMaxSPrate,((getrefine()>=6)?6:3); - Id: 2580 AegisName: White_Wing_Manteau Name: White Wing Manteau Type: Armor Buy: 20 Weight: 200 Defense: 15 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,2; bonus bFlee,10; autobonus "{ bonus bFlee,20; }",20,7000,BF_LONG,"{ specialeffect2 EF_CHAINCOMBO; }"; - Id: 2581 AegisName: Black_Wing_Manteau Name: Black Wing Manteau Type: Armor Buy: 20 Weight: 200 Defense: 15 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bInt,2; if (.@r>6) bonus bFlee2,.@r-6; - Id: 2582 AegisName: Salvage_Cape Name: Salvage Cape Type: Armor Buy: 56000 Weight: 400 Defense: 1 Jobs: Priest: true Wizard: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | skill "NJ_UTSUSEMI",1; bonus2 bSkillCooldown,"NJ_UTSUSEMI",30000; bonus bUseSPrate,100; UnEquipScript: | heal 0,-1200; - Id: 2583 AegisName: Holy_Cape Name: Holy Cape Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bDex,-5; bonus bMdef,5; - Id: 2584 AegisName: Wanderer_Outer Name: Wanderer Outer Type: Armor Buy: 20 Weight: 500 Defense: 8 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true - Id: 2585 AegisName: Muffler_Of_Valor Name: Muffler Of Valor Type: Armor Defense: 4 Locations: Garment: true ArmorLevel: 1 Script: | bonus bSPrecovRate,10; - Id: 2586 AegisName: Siege_Manteau Name: Siege Manteau Type: Armor Buy: 10 Weight: 600 Defense: 32 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true Script: | bonus bMdef,1; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 2587 AegisName: Siege_Muffler Name: Siege Muffler Type: Armor Buy: 10 Weight: 400 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; - Id: 2588 AegisName: Ragamuffin_Cape_ Name: Ragamuffin Cape Type: Armor Buy: 56000 Weight: 500 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bMdef,10; - Id: 2589 AegisName: Fallen_Angel_Wing Name: Fallen Angel Wing Type: Armor Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true View: 3 Trade: NoDrop: true Script: | bonus bAllStats,1; bonus bBaseAtk,readparam(bStr)/20; bonus bMatk,readparam(bInt)/20; bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20; bonus bAspdRate,(readparam(bAgi)/20); bonus bLongAtkRate,readparam(bDex)/20; bonus bCritAtkRate,readparam(bLuk)/20; - Id: 2590 AegisName: Buwaya_Cloth Name: Buwaya Sack Cloth Type: Armor Buy: 20 Weight: 200 Defense: 8 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bHealPower2,.@r/3; bonus bAddItemHealRate,.@r/3; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; - Id: 2591 AegisName: Bayani_Buwaya_Cloth Name: Bayani Buwaya Sack Cloth Type: Armor Buy: 20 Weight: 200 Defense: 8 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bHealPower2,.@r; bonus bAddItemHealRate,.@r; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; - Id: 2592 AegisName: Boss_Domovoi_Cape Name: Boss Brownie Manteau Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | skill "AS_CLOAKING",1; bonus2 bSubRace,RC_DemiHuman,5; - Id: 2593 AegisName: Flow_Manteau Name: Flow Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubRace,RC_Brute,-5; bonus2 bSubEle,Ele_Water,5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 2594 AegisName: Wrapping_Manteau Name: Wrapping Manteau Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true - Id: 2595 AegisName: Sombre_Manteau Name: Sombre Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Dark,5; bonus2 bSubRace,RC_Undead,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 2596 AegisName: Sharel_Manteau Name: Sharel Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Fire,5; bonus2 bSubRace,RC_Demon,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 2597 AegisName: Scarlet_Poncho Name: Crimson Poncho Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bCritAtkRate,3; bonus bMdef,5; - Id: 2598 AegisName: Ramor_Manteau Name: Ramor Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Undead,5; bonus2 bSubRace,RC_DemiHuman,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 2599 AegisName: Goibne_Shoulder_Arms_ Name: Goibne's Spaulders Type: Armor Buy: 30000 Weight: 700 Defense: 11 Slots: 1 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: 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: 2606 AegisName: Whike_Black_Tail_L Name: Rental Black Tail of Hyukke Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bCritical,7; bonus bAspdRate,3; - 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 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Script: | bonus bMdef,5; - 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 KagerouOboro: 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 - 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+BaseLevel/5; bonus bMdef,7; if (readparam(bStr)>=120) bonus2 bAddClass,Class_Boss,10; - Id: 2630 AegisName: Brysinggamen Name: Brisingamen Type: Armor Buy: 20 Weight: 1500 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 94 Script: | bonus bHealPower,6; bonus bMdef,5; bonus bAgiVit,6; bonus bStr,6; bonus bInt,10; bonus bDex,6; bonus bLuk,10; - Id: 2631 AegisName: First_Age_Ring Name: Celebration Ring Type: Armor Buy: 1 Weight: 10 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAllStats,5; - Id: 2632 AegisName: Korean_Trinket Name: Korean Trinket Type: Armor Buy: 125000 Weight: 100 Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 65 Script: | bonus bVit,1; bonus bDex,1; bonus bLuk,1; - Id: 2633 AegisName: Jade_Ring Name: Jade Ring Type: Armor Buy: 204000 Weight: 100 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bStr,2; bonus bInt,1; - Id: 2634 AegisName: Bridegroom_Ring Name: Wedding Ring 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: | skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",1; - Id: 2635 AegisName: Bride_Ring Name: Wedding Ring 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: | skill "WE_MALE",1; skill "WE_FEMALE",1; skill "WE_CALLPARTNER",1; skill "WE_CALLALLFAMILY",1; skill "WE_ONEFOREVER",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: | bonus bAtkRate,5; bonus bMatkRate,5; - Id: 2645 AegisName: Moonlight_Ring Name: Moonlight Ring Type: Armor Buy: 40000 Weight: 200 Jobs: Assassin: true KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 60 Script: | bonus bMdef,2; bonus bCritical,3; bonus bAspdRate,3; - 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 bAllStats,5; - 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: 1 - Id: 2654 AegisName: Shinobi's_Sash Name: Shinobi Sash Type: Armor Buy: 20000 Weight: 300 Defense: 1 Jobs: Assassin: true KagerouOboro: 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 - 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; bonus bDef,1; - 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 Wizard: true Classes: All_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 Wizard: true Classes: All_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 Wizard: true Classes: All_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 Wizard: true Classes: All_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: 1500 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 94 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,3; - 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 EquipLevelMin: 20 Script: | bonus bAllStats,5; - 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 Wizard: true Classes: All_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 Wizard: true Classes: All_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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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 bSubDefEle,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 bSubDefEle,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 bSubDefEle,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 bSubDefEle,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 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 56 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,2; bonus bMatkRate,2; bonus bMaxHPrate,2; bonus bMaxSPrate,2; bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10; - 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: | if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } 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 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 bDef,8; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } bonus bMdef,8; - 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: All_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: All_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: All_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: All_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 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2707 AegisName: GUSLI Name: GUSLI 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 - 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,50; - Id: 2709 AegisName: 5_Anniversary_Coin Name: 5th Anniversary Coin 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: | bonus bBaseAtk,10; bonus bMatk,10; bonus bCritical,10; autobonus "{ bonus bAspd,3; }",1,5000,BF_WEAPON; autobonus "{ bonus bVariableCastrate,-50; }",1,5000,BF_MAGIC; autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,30; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 2711 AegisName: Spiritual_Ring_C Name: Spiritual Ring Type: Armor Buy: 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 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 Defense: 1 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 KagerouOboro: 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: All_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: All_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 Wizard: true Classes: All_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 bVariableCastrate,-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 Rebellion: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 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: 2734 AegisName: Directive_A Name: Directive Type: Armor Jobs: Novice: true SuperNovice: true Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2735 AegisName: Directive_B Name: Directive Type: Armor Jobs: Novice: true SuperNovice: true Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: 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 bHPrecovRate,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 bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 2742 AegisName: Lucky_Clip Name: Lucky Clip 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 bDropAddRace,RC_All,50; - 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 Wizard: true Classes: All_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 Wizard: true Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVariableCastrate,-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 Wizard: true Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 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: All_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: All_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: All_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 Wizard: true Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMdef,2; bonus bAgi,2; bonus bDex,1; - Id: 2750 AegisName: Summer_Night_Dream Name: Summer Night Dream 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: | /* skill "ALL_DREAM_SUMMERNIGHT",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: | bonus bInt,2; bonus bMatkRate,3; bonus bMaxHP,100; - Id: 2752 AegisName: Praxinus_C Name: Praccsinos 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: 2753 AegisName: Beholder_Ring Name: Beholder Ring 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 bExpAddRace,RC_Formless,15; - Id: 2754 AegisName: Hallow_Ring Name: Hallow Ring 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 bExpAddRace,RC_Undead,15; - Id: 2755 AegisName: Clamorous_Ring Name: Clamorous Ring 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 bExpAddRace,RC_Brute,15; - Id: 2756 AegisName: Chemical_Ring Name: Chemical Ring 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 bExpAddRace,RC_Plant,15; - Id: 2757 AegisName: Insecticide_Ring Name: Insecticide Ring 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 bExpAddRace,RC_Insect,15; - Id: 2758 AegisName: Fisher_Ring Name: Fischer Ring 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 bExpAddRace,RC_Fish,15; - Id: 2759 AegisName: Decussate_Ring Name: Decussate Ring 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 bExpAddRace,RC_Demon,15; - Id: 2760 AegisName: Bloody_Ring Name: Bloody Ring 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 bExpAddRace,RC_DemiHuman,15; - Id: 2761 AegisName: Satanic_Ring Name: Satanic Ring 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 bExpAddRace,RC_Angel,15; - Id: 2762 AegisName: Dragoon_Ring Name: Dragon Ring 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 bExpAddRace,RC_Dragon,15; - Id: 2763 AegisName: Skul_Ring_C Name: Neo Skull Ring Type: Armor Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 95 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; bonus bMaxHPrate,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 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,1; if (BaseClass == Job_Swordman) bonus bDef,2; - Id: 2767 AegisName: Acolyte_Figure Name: Acolyte Figure Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; if (BaseClass == Job_Acolyte) bonus bMaxSP,50; - Id: 2768 AegisName: Mage_Figure Name: Mage Figure Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; if (BaseClass == Job_Mage) bonus bSPrecovRate,5; - Id: 2769 AegisName: Archer_Figure Name: Archer Figure Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,1; if (BaseClass == Job_Archer) bonus bBaseAtk,10; - Id: 2770 AegisName: Thief_Figure Name: Thief Figure Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,1; if (BaseClass == Job_Thief) bonus bAspdRate,3; - Id: 2771 AegisName: Merchant_Figure Name: Merchant Figure Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; if (BaseClass == 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 bVariableCastrate,-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 Slots: 1 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: 1 Trade: NoDrop: 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: 1 Trade: NoDrop: 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: 1 Trade: NoDrop: 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: 1 Trade: NoDrop: true Script: | autobonus "{ bonus bAspdRate,2; }",10,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - 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 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 Jobs: All: true Novice: false SuperNovice: false 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: All_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 Trade: NoDrop: true 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: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,2; bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,5; - Id: 2788 AegisName: Bradium_Earing Name: Bradium Earring Type: Armor Buy: 20 Weight: 200 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bInt,1; bonus bDex,1; bonus bMatk,5; - Id: 2789 AegisName: Bradium_Ring Name: Bradium Ring Type: Armor Buy: 20 Weight: 200 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bStr,1; bonus bVit,1; bonus bBaseAtk,5; - Id: 2790 AegisName: Bradium_Brooch Name: Bradium Brooch Type: Armor Buy: 20 Weight: 200 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAgi,1; bonus bFlee,4; if (readparam(bAgi)>=120) bonus bCritical,4; - 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: 2792 AegisName: Ring_Of_Flame_Lord_I Name: Ring of Flame Lord Type: Armor 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: All_Upper: true 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 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: 2793 AegisName: Ring_Of_Resonance_I Name: Ring of Resonance Type: Armor 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 Wizard: true Classes: All_Upper: true 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 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: 2794 AegisName: Magic_Stone_Ring Name: Magic Stone Ring Type: Armor Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: 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: 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: All_Third: true Fourth: 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 (JobLevel<30) { bonus bAllStats,6-(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_rang02") { 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 Trade: NoDrop: true Script: | bonus bMaxHP,150; bonus bMaxSP,30; bonus5 bAutoSpell,"AL_BLESSING",10,10,BF_WEAPON|BF_MAGIC,0; bonus5 bAutoSpell,"MO_CALLSPIRITS",5,10,BF_WEAPON|BF_MAGIC,0; bonus3 bAutoSpellWhenHit,"SM_ENDURE",10,15; bonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,5; - Id: 2800 AegisName: Accelerator Name: Accelerator Type: Armor Buy: 100000 Weight: 100 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bAgi,1; UnEquipScript: | sc_end SC_HOVERING; - Id: 2802 AegisName: Suicidal_Device Name: Suicidal Device Type: Armor Buy: 500000 Weight: 1000 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: 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: 2000000 Weight: 2500 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bDex,1; - Id: 2810 AegisName: Special_Cooler Name: Special Cooler Type: Armor Buy: 5000000 Weight: 2500 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bDex,1; - Id: 2811 AegisName: Freyja_SBracelet7 Name: Freyja's Spirit Bracelet Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bAllStats,1; - Id: 2812 AegisName: Freyja_SBracelet30 Name: Freyja's Spirit Bracelet Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bAllStats,1; - Id: 2813 AegisName: Freyja_SBracelet60 Name: Freyja's Spirit Bracelet Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bAllStats,1; - Id: 2814 AegisName: Freyja_SBracelet90 Name: Freyja's Spirit Bracelet Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bAllStats,1; - Id: 2815 AegisName: Th_Ring_Of_Water Name: Ring Of Water Type: Armor Buy: 20 Weight: 10 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAllStats,1; bonus bMdef,2; - Id: 2816 AegisName: Radar_Ring1 Name: Radar Ring 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: | bonus3 bAddMonsterIdDropItem,6206,1002,400; bonus3 bAddMonsterIdDropItem,6207,1161,400; bonus3 bAddMonsterIdDropItem,6208,1153,400; - Id: 2817 AegisName: Radar_Ring2 Name: Radar Ring 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: | bonus3 bAddMonsterIdDropItem,6206,1026,400; bonus3 bAddMonsterIdDropItem,6207,1197,400; bonus3 bAddMonsterIdDropItem,6208,1504,400; - Id: 2818 AegisName: Radar_Ring3 Name: Radar Ring 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: | bonus3 bAddMonsterIdDropItem,6206,1508,400; bonus3 bAddMonsterIdDropItem,6207,1098,400; bonus3 bAddMonsterIdDropItem,6208,1315,400; - 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 EquipLevelMax: 12 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 EquipLevelMax: 12 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSP,100; skill "TF_DOUBLE",3; skill "TF_STEAL",10; 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 EquipLevelMax: 12 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 EquipLevelMax: 12 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSP,100; 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 EquipLevelMax: 12 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",1; 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 EquipLevelMax: 12 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: 2825 AegisName: Shaman_EaringB Name: Shaman Earrings Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true Script: | bonus bInt,2; - Id: 2826 AegisName: Dark_Knight_BeltB Name: Dark Knight Belt Type: Armor Buy: 20 Weight: 500 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true Script: | bonus bDex,2; bonus bAgi,1; - Id: 2827 AegisName: Dark_Knight_GloveB Name: Dark Knight Glove Type: Armor Buy: 20 Weight: 500 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true Script: | autobonus "{ bonus bMaxHPrate,2; }",10,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 2828 AegisName: Upg_Clip Name: Upg Clip Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true Script: | bonus bMaxSP,50; bonus bMaxHPrate,3; - Id: 2829 AegisName: Greed_Clip Name: Greed Clip Type: Armor Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | skill "BS_GREED",1; - Id: 2830 AegisName: Magingiorde_C Name: Megingjard Type: Armor Buy: 20 Defense: 2 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 94 Script: | bonus bStr,40; bonus bMdef,7; - Id: 2831 AegisName: Brysinggamen_C Name: Brisingamen Type: Armor Buy: 20 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 94 Script: | bonus bStr,6; bonus bInt,6; bonus bVit,6; bonus bAgi,6; bonus bLuk,10; bonus bMdef,5; - Id: 2832 AegisName: Freyja_Ring Name: Freyja's Ring 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 Script: | skill "AL_HEAL",1; skill "AL_TELEPORT",1; - Id: 2833 AegisName: Odin's_Recall Name: Odin's Recall Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; skill "ALL_ODINS_RECALL",1; - Id: 2834 AegisName: F_All_In_One_Ring Name: All In One Ring Type: Armor Buy: 20 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAllStats,1; bonus bNoCastCancel; bonus bVariableCastrate,10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; - Id: 2835 AegisName: F_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 Script: | bonus bCritical,10; - Id: 2836 AegisName: F_Glove_C Name: Glove Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bDex,4; - Id: 2837 AegisName: F_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 Script: | bonus bMdef,5; - Id: 2838 AegisName: F_Necklace_C Name: Necklace Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVit,4; - Id: 2839 AegisName: F_Ring_C Name: Ring Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bStr,4; - Id: 2840 AegisName: F_Rosary_C Name: Rosary Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bLuk,4; bonus bMdef,5; - Id: 2841 AegisName: Caracas_Ring Name: Caracas Ring Type: Armor Defense: 2 Jobs: Alchemist: true Sage: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bNoCastCancel; bonus bVariableCastrate,-10; skill "AL_HEAL",1; skill "AL_TELEPORT",1; - Id: 2842 AegisName: F_Earing_C Name: Earring Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bInt,3; - Id: 2843 AegisName: Gold_Trickle Name: Gold Trickle Type: Armor Buy: 20 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 75 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSP,50; - Id: 2844 AegisName: El_Dicastes_Light Name: Light Of El Discastes Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "RETURN_TO_ELDICASTES",1; - Id: 2845 AegisName: No_Fear_Belt Name: No Fear Belt Type: Armor Defense: 2 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMdef,2; - Id: 2846 AegisName: E_All_In_One_Ring Name: All In One Ring Type: Armor Buy: 20 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAllStats,1; - Id: 2847 AegisName: E_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 Script: | bonus bCritical,10; - Id: 2848 AegisName: E_Glove_C Name: Glove Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bDex,4; - Id: 2849 AegisName: E_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 Script: | bonus bMdef,5; - Id: 2850 AegisName: E_Ring_C Name: Ring Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVit,4; - Id: 2851 AegisName: E_Necklace_C Name: Necklace Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bStr,4; - Id: 2852 AegisName: E_Rosary_C Name: Rosary Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bLuk,4; bonus bMdef,5; - Id: 2853 AegisName: Telekinetic_Orb Name: Telekinetic Orb Type: Armor Buy: 20 Weight: 200 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 Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 110 Script: | bonus bMdef,1; bonus bInt,3; bonus bMaxSP,30; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus2 bSkillUseSP,"WL_SOULEXPANSION",-50; bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",-50; - Id: 2854 AegisName: Alchemy_Glove Name: Alchemy Glove Type: Armor Buy: 20 Weight: 100 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 Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 125 Script: | bonus bMdef,2; bonus bInt,1; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,-20; bonus2 bSubEle,Ele_Water,-30; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus5 bAutoSpell,"MG_FIREBALL",5,30,BF_MAGIC,1; - Id: 2855 AegisName: Whike_Black_Tail Name: Whike Black Tail Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 45 Script: | bonus bCritical,7; bonus bAspdRate,3; - Id: 2856 AegisName: Half_Megin Name: Half Megingjard Type: Armor Buy: 20 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 47 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,(BaseLevel/10); if (readparam(bStr)>=120) { bonus2 bAddClass,Class_Boss,5; } bonus bMdef,3; bonus bStr,20; - Id: 2857 AegisName: Half_Brysing Name: Half Brisingamen Type: Armor Buy: 20 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 47 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHealPower,3; bonus bMdef,2; bonus bAgiVit,3; bonus bStr,3; bonus bInt,5; bonus bDex,3; bonus bLuk,5; - Id: 2858 AegisName: Pendant_Of_Guardian Name: Pendant Of Guardian Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "ALL_GUARDIAN_RECALL",1; - Id: 2859 AegisName: Golden_Rod_Orb Name: Golden Rod Orb Type: Armor Buy: 20 Weight: 200 Defense: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Wind,15; bonus5 bAutoSpellWhenHit,"WZ_JUPITEL",3,30,BF_WEAPON|BF_MAGIC,1; - Id: 2860 AegisName: Aqua_Orb Name: Aqua Orb Type: Armor Buy: 20 Weight: 200 Defense: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Water,15; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,30,BF_WEAPON|BF_MAGIC,1; - Id: 2861 AegisName: Crimson_Orb Name: Crismon Orb Type: Armor Buy: 20 Weight: 200 Defense: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Fire,15; bonus5 bAutoSpellWhenHit,"WZ_SIGHTRASHER",3,30,BF_WEAPON|BF_MAGIC,1; - Id: 2862 AegisName: Forest_Orb Name: Forest Orb Type: Armor Buy: 20 Weight: 200 Defense: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,2; bonus bInt,1; bonus2 bSubEle,Ele_Earth,15; bonus5 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,30,BF_WEAPON|BF_MAGIC,1; - Id: 2863 AegisName: Ring_Of_Valkyrie Name: Ring Of Valkyrie Type: Armor Defense: 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 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 2864 AegisName: Light_Of_Cure Name: Light Of Cure Type: Armor Buy: 20 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 110 Script: | bonus bVit,2; bonus bHealPower,2; - Id: 2865 AegisName: Seal_Of_Cathedral Name: Seal Of Cathedral Type: Armor Buy: 20 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 110 Script: | bonus bInt,2; bonus bHealPower,2; - Id: 2866 AegisName: Ring_Of_Archbishop Name: Ring Of Archbishop Type: Armor Buy: 20 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 110 Script: | bonus bDex,2; bonus bHealPower,2; - Id: 2867 AegisName: Broken_Bamboo_Piece Name: Broken Bamboo Piece Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bMdef,2; - Id: 2868 AegisName: Green_Batik Name: Green Batik Type: Armor Buy: 20 Weight: 100 Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 45 Script: | bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMdef,1; - Id: 2869 AegisName: Colorful_Ketupat Name: Colorful Ketupat Type: Armor Buy: 20 Weight: 100 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 45 Script: | bonus bStr,1; bonus bInt,1; bonus bDex,1; - Id: 2870 AegisName: Tw_8th_Anni_Ring Name: Tw 8th Anni Ring Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAllStats,5; - Id: 2871 AegisName: Brazilian_Emblem Name: Brazilian Emblem Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 60 Script: | bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bMaxHP,50; bonus bMaxSP,20; - Id: 2872 AegisName: G_Honor_Certificate Name: G Honor Certificate Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2873 AegisName: Cat_Hand_Glove Name: Cat Hand Glove Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAgi,1; bonus bVit,1; bonus bDex,1; bonus bLuk,1; - Id: 2874 AegisName: Buffalo_Horn Name: Buffalo Horn Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bAspd,1; - Id: 2875 AegisName: RO_Appreciation_Ring Name: RO Appreciation Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; - Id: 2876 AegisName: Necklace_Spica Name: Necklace Spica Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bMdef,1; - Id: 2877 AegisName: Glove_Sabik Name: Glove Sabik Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bMdef,1; - Id: 2878 AegisName: Bracelet_Arunairi Name: Bracelet Arunairi Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bMdef,1; - Id: 2879 AegisName: Badge_Giorredart Name: Badge Giorredart Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bMdef,1; - Id: 2880 AegisName: Ring_Lupak Name: Ring Lupak Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bMdef,1; - Id: 2881 AegisName: Orleans_Necklace Name: Orleans Necklace Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bDex,2; bonus bMatk,20; - Id: 2882 AegisName: Ecoro_Cardslip Name: Ecoro Cardslip Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bVit,1; bonus bLuk,1; - Id: 2883 AegisName: Ur_Seal Name: Ur's Seal Type: Armor Buy: 20 Weight: 200 Defense: 4 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHPrate,2; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",5; - Id: 2884 AegisName: Peuz_Seal Name: Peuz's Seal Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bBaseAtk,20; bonus bMaxSP,20; - Id: 2885 AegisName: Mother_Heart Name: Mother Heart Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMax: 120 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,30; bonus bMatk,30; bonus2 bExpAddRace,RC_All,20; skill "CR_AUTOGUARD",3; skill "AL_CURE",1; bonus bSpeedRate,25; - Id: 2886 AegisName: Sabah_Ring Name: Sapha Ring Type: Armor Buy: 20 Weight: 100 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bCritical,3; bonus2 bSkillUseSP,"GC_DARKILLUSION",5; - Id: 2887 AegisName: Nab_Ring Name: Nab Ring Type: Armor Buy: 20 Weight: 100 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bBaseAtk,10; bonus bMatk,20; - Id: 2888 AegisName: School_Bag Name: School Bag Type: Armor Buy: 20 Weight: 1000 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,3; bonus bVariableCastrate,-3; if (BaseLevel<80) { bonus bMaxHP,200; bonus bMaxSP,100; } - Id: 2889 AegisName: Endure_Ring Name: Endure Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 60 - Id: 2890 AegisName: White_Wing_Brooch Name: White Wing Brooch Type: Armor Buy: 20 Weight: 100 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDex,2; bonus bLongAtkRate,3; - Id: 2891 AegisName: Black_wing_Brooch Name: Black Wing Brooch Type: Armor Buy: 20 Weight: 100 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bInt,2; bonus bFlee2,3; - Id: 2892 AegisName: Assassin_Handcuffs Name: Assassin Handcuffs Type: Armor Buy: 56000 Weight: 400 Defense: 3 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxSP,20; bonus bCritical,3; - Id: 2893 AegisName: Cursed_Heart Name: Cursed Heart Type: Armor Buy: 20 Weight: 50 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 - Id: 2894 AegisName: Glove_Of_Shura Name: Sura Gauntlet Type: Armor Buy: 20 Weight: 400 Defense: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bStr,5; bonus bMaxSPrate,6; bonus bMaxHPrate,-6; if (readparam(bStr)>=120) { bonus bBaseAtk,30; } - Id: 2895 AegisName: Medal_Of_Valor1 Name: Medal Of Valor1 Type: Armor Defense: 4 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bVariableCastrate,-2; - Id: 2896 AegisName: Medal_Of_Valor2 Name: Medal Of Valor2 Type: Armor Defense: 4 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,3; - Id: 2897 AegisName: 2011RWC_Necklace_J Name: 2011RWC Necklace J Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bExpAddRace,RC_All,1; - Id: 2898 AegisName: Black_Rosary Name: Dark Rosary Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMdef,15; - Id: 2899 AegisName: Sound_Amplifier Name: Sound Amplification Device Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: BardDancer: true Hunter: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus2 bSkillAtk,"WM_METALICSOUND",150; bonus2 bSkillUseSP,"WM_METALICSOUND",-60; bonus bVariableCastrate,-50; - Id: 2900 AegisName: Morrigane's_Belt_ Name: Morrigane's Belt Type: Armor Buy: 30000 Weight: 200 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 61 - Id: 2901 AegisName: Morrigane's_Pendant_ Name: Morrigane's Pendant Type: Armor Buy: 30000 Weight: 200 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 61 Script: | bonus bStr,2; - Id: 2902 AegisName: Morpheus's_Ring_ Name: Morpheus's Ring Type: Armor Buy: 30000 Weight: 100 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 33 Script: | bonus bInt,1; - Id: 2903 AegisName: Morpheus's_Armlet_ Name: Morpheus's Armlet Type: Armor Buy: 30000 Weight: 100 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 33 Script: | bonus bInt,1; - Id: 2904 AegisName: Naqsh Name: Naqsi Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Script: | skill "BS_WEAPONPERFECT",5; skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; /* skill "GM_ITEM_ATKMAX",1; skill "GM_ITEM_ATKMIN",1; skill "GM_ITEM_MATKMAX",1; skill "GM_ITEM_MATKMIN",1; skill "GM_AP_HEAL",1; */ bonus bDelayrate,-100; skill "WZ_ESTIMATION",1; - Id: 2905 AegisName: Super_Ora_Ora Name: Super Ora Ora Type: Armor Weight: 1000 Locations: Both_Accessory: true ArmorLevel: 1 - Id: 2906 AegisName: Happy_Gauntlet Name: Happy Gauntlet Type: Armor Buy: 20 Weight: 1000 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bMdef,3; - Id: 2907 AegisName: Buwaya_Tattoo Name: Bawaya Agimat Tattoo Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMatkRate,7; bonus bFixedCastrate,-7; - Id: 2908 AegisName: Light_Ring Name: Light Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 - Id: 2909 AegisName: Darkness_Ring Name: Darkness Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 - Id: 2910 AegisName: Bakonawa_Tattoo Name: Bakunawa Agimat Tattoo Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bAddClass,Class_All,7; bonus bAspdRate,10; - Id: 2911 AegisName: Bangungot_Tattoo Name: Bangungot Agimat Tattoo Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bHealPower,4; bonus bHealPower2,7; - Id: 2912 AegisName: Xylitol_2011 Name: Xylitol 2011 Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; bonus2 bAddMonsterDropItem,11535,50; - Id: 2913 AegisName: Thief_Handcuff Name: Thief Handcuff Type: Armor Buy: 20 Weight: 2400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bBaseAtk,5; - Id: 2914 AegisName: Wizard_Left_Eye Name: Wizard Left Eye Type: Armor Buy: 20 Weight: 100 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 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bInt,4; bonus bMdef,3; bonus bVariableCastrate,3; - Id: 2915 AegisName: Ettlang_Keepsake Name: Ettlang Keepsake Type: Armor Buy: 20 Weight: 50 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,10; - Id: 2916 AegisName: Fairy_Wing Name: Fairy Wing Type: Armor Weight: 10 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "ECLAGE_RECALL",1; - Id: 2917 AegisName: Str_Glove Name: Str Glove Type: Armor Buy: 75000 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if (readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; - Id: 2918 AegisName: Int_Glove Name: Int Glove Type: Armor Buy: 75000 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if (readparam(bInt)>=110) bonus bMatkRate,1; - Id: 2919 AegisName: Agi_Glove Name: Agi Glove Type: Armor Buy: 75000 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if (readparam(bAgi)>=110) bonus bFlee2,1; - Id: 2920 AegisName: Vit_Glove Name: Vit Glove Type: Armor Buy: 75000 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if (readparam(bVit)>=110) bonus bMaxHPrate,1; - Id: 2921 AegisName: Dex_Glove Name: Dex Glove Type: Armor Buy: 75000 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if (readparam(bDex)>=110) bonus bLongAtkRate,1; - Id: 2922 AegisName: Luk_Glove Name: Luk Glove Type: Armor Buy: 75000 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if (readparam(bLuk)>=110) bonus bCritAtkRate,1; - Id: 2923 AegisName: Str_Glove_ Name: Str Glove Type: Armor Buy: 75000 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bBaseAtk,(readparam(bStr)/10); if (readparam(bStr)>=110) bonus2 bAddClass,Class_All,1; - Id: 2924 AegisName: Int_Glove_ Name: Int Glove Type: Armor Buy: 75000 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bMatk,(readparam(bInt)/10); if (readparam(bInt)>=110) bonus bMatkRate,1; - Id: 2925 AegisName: Agi_Glove_ Name: Agi Glove Type: Armor Buy: 75000 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bFlee,(readparam(bAgi)/10); if (readparam(bAgi)>=110) bonus bFlee2,1; - Id: 2926 AegisName: Vit_Glove_ Name: Vit Glove Type: Armor Buy: 75000 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bMaxHP,(readparam(bVit)/10)*50; if (readparam(bVit)>=110) bonus bMaxHPrate,1; - Id: 2927 AegisName: Dex_Glove_ Name: Dex Glove Type: Armor Buy: 75000 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bHit,(readparam(bDex)/10); if (readparam(bDex)>=110) bonus bLongAtkRate,1; - Id: 2928 AegisName: Luk_Glove_ Name: Luk Glove Type: Armor Buy: 75000 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,100; bonus bMaxSP,20; bonus bCritical,(readparam(bLuk)/10); if (readparam(bLuk)>=110) bonus bCritAtkRate,1; - Id: 2929 AegisName: Charm_Str Name: Battle Hardened Amulet Type: Armor Weight: 300 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | .@a = readparam(bStr); bonus bMdef,2; if (.@a>=60) { bonus bStr,2; if (.@a>=80) { bonus bStr,1; bonus bBaseAtk,5; if (.@a>=100) { bonus bBaseAtk,5; bonus bHit,2; if (.@a>=120) { bonus bBaseAtk,5; bonus bHit,3; } } } } - Id: 2930 AegisName: Charm_Agi Name: Winning First Move Amulet Type: Armor Weight: 300 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | .@a = readparam(bAgi); bonus bMdef,2; if (.@a>=60) { bonus bAgi,2; if (.@a>=80) { bonus bAgi,1; bonus bFlee,4; if (.@a>=100) { bonus bFlee,1; bonus bAspdRate,2; if (.@a>=120) { bonus bAspdRate,2; } } } } - Id: 2931 AegisName: Charm_Vit Name: Good Health Amulet Type: Armor Weight: 300 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | .@a = readparam(bVit); bonus bMdef,2; if (.@a>=60) { bonus bVit,2; if (.@a>=80) { bonus bVit,1; bonus bMaxHP,50; if (.@a>=100) { bonus bMaxHP,150; bonus bFlee2,1; if (.@a>=120) { bonus bMaxHP,100; bonus bFlee2,3; } } } } - Id: 2932 AegisName: Charm_Dex Name: Infallible Amulet Type: Armor Weight: 300 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | .@a = readparam(bDex); bonus bMdef,2; if (.@a>=60) { bonus bDex,2; if (.@a>=80) { bonus bDex,1; bonus bVariableCastrate,-1; if (.@a>=100) { bonus bVariableCastrate,-2; bonus bLongAtkRate,1; if (.@a>=120) { bonus bLongAtkRate,2; } } } } - Id: 2933 AegisName: Charm_Int Name: Knowledgeable Amulet Type: Armor Weight: 300 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | .@a = readparam(bInt); bonus bMdef,2; if (.@a>=60) { bonus bInt,2; if (.@a>=80) { bonus bInt,1; bonus bMatk,5; if (.@a>=100) { bonus bMatk,5; bonus bDelayrate,-1; if (.@a>=120) { bonus bMatk,5; bonus bDelayrate,-2; } } } } - Id: 2934 AegisName: Charm_Luk Name: Prosperous Business Amulet Type: Armor Weight: 300 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | .@a = readparam(bLuk); bonus bMdef,2; if (.@a>=60) { bonus bLuk,2; if (.@a>=80) { bonus bDex,1; bonus bLuk,1; if (.@a>=100) { bonus bDex,1; bonus bInt,1; if (.@a>=120) { bonus bDex,1; bonus bInt,3; bonus bLuk,1; } } } } - Id: 2935 AegisName: Sprint_Glove Name: Sprint Gloves Type: Armor Buy: 20 Weight: 100 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: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVariableCastrate,-1; bonus bDelayrate,-1; - Id: 2936 AegisName: Recovery_Ring Name: Recovery Ring Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bVit,1; bonus bMaxHP,250; bonus bMaxHPrate,5; bonus bHealPower,5; - Id: 2937 AegisName: RJC_Exp Name: RJC2012 EXP Necklace Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bExpAddRace,RC_All,10; - Id: 2938 AegisName: RJC_Status Name: RJC2012 Status Necklace Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,5; bonus bHit,5; - Id: 2939 AegisName: RJC_Spell Name: RJC2012 Spell Necklace Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bNoCastCancel; bonus bVariableCastrate,-20; - Id: 2940 AegisName: Ninja_Manual Name: Ninja Manual Type: Armor Weight: 100 Jobs: Novice: true SuperNovice: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMax: 12 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSP,100; skill "NJ_UTSUSEMI",1; skill "NJ_KOUENKA",1; skill "NJ_SYURIKEN",1; - Id: 2941 AegisName: Gunslinger_Manual Name: Gunslinger Manual Type: Armor Weight: 100 Jobs: Novice: true SuperNovice: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMax: 12 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSP,100; skill "GS_GLITTERING",1; skill "GS_ADJUSTMENT",1; skill "GS_MADNESSCANCEL",1; skill "GS_INCREASING",1; - Id: 2942 AegisName: Taekwon_Manual Name: Taekwon Manual Type: Armor Weight: 100 Jobs: Novice: true SuperNovice: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMax: 12 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSP,100; skill "TK_SEVENWIND",4; skill "TK_JUMPKICK",5; - Id: 2943 AegisName: Critical_Ring_ Name: Critical Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bCritical,5; - Id: 2944 AegisName: TE_Ring_Of_Protection Name: TE Ring Of Protection Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; - Id: 2945 AegisName: TE_Ring_Of_Rage Name: TE Ring Of Rage Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; - Id: 2946 AegisName: TE_Ring_Of_Defiance Name: TE Ring Of Defiance Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; - Id: 2947 AegisName: Memories_of_Spring Name: Spring Afternoon Memory Type: Armor Buy: 20 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bMdef,2; /*skill "ALL_DREAM_SUMMERNIGHT",1;*/ - Id: 2948 AegisName: Demon_Wing Name: Demon Wing Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bFlee,5; - Id: 2949 AegisName: Silversmith_Bracelet Name: Silversmith Bracelet Type: Armor Buy: 10 Weight: 100 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 60 Script: | bonus bAllStats,1; bonus bMdef,3; skill "SA_SPELLBREAKER",5; - Id: 2950 AegisName: Rune_Ring Name: Rune Ring Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 EquipLevelMax: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 2951 AegisName: Kvasir_Ring_Blue Name: Kvasir Ring Blue Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxSP,30; skill "ECL_SNOWFLIP",1; - Id: 2952 AegisName: Kvasir_Ring_Red Name: Kvasir Ring Red Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxSP,30; skill "ECL_PEONYMAMY",1; - Id: 2953 AegisName: Kvasir_Ring_Green Name: Kvasir Ring Green Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHP,100; skill "ECL_SADAGUI",1; - Id: 2954 AegisName: Kvasir_Ring_Brown Name: Kvasir Ring Brown Type: Armor Buy: 10 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | skill "ECL_SEQUOIADUST",1; bonus bMaxHP,100; - Id: 2955 AegisName: Neutral_Ring_J Name: Neutral Ring Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 30 Script: | bonus2 bAddEle,Ele_Neutral,5; - Id: 2956 AegisName: Safety_Ring_ Name: Advanced Safety Ring Type: Armor Buy: 75000 Weight: 100 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bMdef,5; bonus bAllStats,1; - Id: 2957 AegisName: Good_Ring_Of_Flame_Lord Name: Advanced Ring Of Flame Lord Type: Armor Buy: 20 Weight: 100 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Monk: true Priest: true Rebellion: true Rogue: true Sage: true SoulLinker: true StarGladiator: true Wizard: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 85 Script: | bonus bStr,3; bonus bVit,2; bonus bBaseAtk,20; 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: 2958 AegisName: Good_Ring_Of_Resonance Name: Advanced Ring Of Resonance Type: Armor Buy: 20 Weight: 100 Defense: 2 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Monk: true Priest: true Rebellion: true Rogue: true Sage: true SoulLinker: true StarGladiator: true Wizard: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 85 Script: | bonus bAgi,3; bonus bVit,1; bonus bMdef,2; bonus bMatk,10; 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: 2959 AegisName: Fidelity_Necklace Name: Fidelity Necklace Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bAgi,2; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,3; - Id: 2960 AegisName: Badge_Of_Manny Name: Badge Of Manny Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAllStats,1; bonus2 bAddEff2,Eff_Stun,300; - Id: 2961 AegisName: Magic_Carpet Name: Magic Carpet Type: Armor Weight: 800 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bAgi,1; skill "AL_TELEPORT",2; - Id: 2962 AegisName: Willpower_Ring Name: Spirit Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 60 Script: | bonus bMaxSP,50; bonus2 bSubRace,RC_DemiHuman,1; - Id: 2963 AegisName: Body_Power_Up_Ring Name: Physical Enhancer Ring Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus2 bAddClass,Class_All,5; - Id: 2964 AegisName: Ring_Of_Spell_Explosion Name: Magic Intensifier Ring Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMatkRate,5; - Id: 2965 AegisName: Angel_Egg Name: Angel Egg Type: Armor Buy: 10 Weight: 100 Defense: 1 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; bonus bMatkRate,5; bonus2 bAddClass,Class_All,5; - Id: 2966 AegisName: RWC_2012_Ring Name: RWC 2012 Ring Type: Armor Buy: 20 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true Script: | bonus2 bAddClass,Class_All,1; - Id: 2967 AegisName: RWC_2012_Ring_ Name: Chambered RWC 2012 Ring Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true Script: | bonus2 bAddClass,Class_All,1; - Id: 2968 AegisName: RWC_2012_Pendant Name: RWC 2012 Pendant Type: Armor Buy: 20 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true Script: | bonus bMatkRate,1; - Id: 2969 AegisName: RWC_2012_Pendant_ Name: Chambered RWC 2012 Pendant Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true Script: | bonus bMatkRate,1; - Id: 2970 AegisName: Pie_Fruit_Box Name: Pie Fruit Box Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bAddMonsterDropItem,11562,300; - Id: 2971 AegisName: Pocket_Watch__ Name: Pocket Watch Type: Armor Buy: 20 Weight: 200 Defense: 1 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 - Id: 2974 AegisName: Eternal_Protected_Love Name: Guardianship Eternal Love Type: Armor Weight: 100 Defense: 5 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,5; bonus bAllStats,1; skill "AL_HEAL",3; - Id: 2975 AegisName: 10th_Anni_Badge_J Name: 10th Anniversary Badge Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 - Id: 2976 AegisName: Red_Lantern Name: Red Lantern Type: Armor Buy: 10 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxSP,-300; skill "MG_SIGHT",1; bonus2 bAddMonsterDropItem,970,50; bonus2 bAddMonsterDropItem,971,50; bonus2 bAddMonsterDropItem,972,50; UnEquipScript: | sc_end SC_SIGHT; - Id: 2977 AegisName: Hurt_Mind Name: Hurt Mind Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 110 Script: | bonus bMaxSP,200; skill "DC_SCREAM",3; - Id: 2978 AegisName: KindHeart Name: Kind Heart Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 110 Script: | bonus bMaxHP,500; bonus2 bHPRegenRate,300,10000; - Id: 2979 AegisName: Strawberry_Decoration Name: Strawberry Decoration Type: Armor Buy: 20 Weight: 500 Defense: 1 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,10; /* Confirm: Frost Nova cast chance */ - Id: 2980 AegisName: Evilspirit_Gloves Name: Evil Spirit Gloves Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 110 Script: | bonus bMaxHP,500; bonus bMaxSP,200; skill "PF_SPIDERWEB",1; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",1,20; bonus5 bAutoSpell,"HW_MAGICPOWER",1,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,10,BF_MAGIC,0; bonus5 bAutoSpell,"WZ_FROSTNOVA",10,20,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"DC_SCREAM",1,50,BF_WEAPON|BF_MAGIC,0; - Id: 2981 AegisName: RingOfHero Name: Warrior's Ring Type: Armor Buy: 10 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 2982 AegisName: Earth_Ring_J Name: Earth Ring Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 30 Script: | bonus2 bAddEle,Ele_Earth,5; - Id: 2983 AegisName: Brooch_Greed Name: Greed Brooch Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bSPGainValue,2; bonus bLongSPGainValue,2; bonus bMagicSPGainValue,2; bonus2 bHPLossRate,10,5000; - Id: 2984 AegisName: Limnil_Glove Name: Glove Save Rimnil Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 30 Script: | bonus2 bExpAddRace,RC_All,5; bonus2 bSubRace,RC_All,-5; - Id: 2985 AegisName: Gyges_Ring Name: Gyges's Ring Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1; UnEquipScript: | sc_end SC_HIDING; - Id: 2986 AegisName: Snake_Ring Name: Snake Ring Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bDex,3; bonus bMdef,2; - Id: 2987 AegisName: Snake_Pendant Name: Snake Pendant Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAgi,3; bonus bLuk,2; bonus bMdef,3; - Id: 2988 AegisName: Winged_Ring_Of_Newoz Name: Oz's New Wing Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bVariableCastrate,-25; - Id: 2989 AegisName: Floral_Bracelet_Of_Igu Name: Floral Bracelet Of Aigu Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bVariableCastrate,-25; - Id: 2990 AegisName: Pendant_Of_Harmony Name: Pendant of Harmony 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 Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMatkRate,6; bonus bHPrecovRate,50; bonus bSPrecovRate,50; bonus2 bSubEle,Ele_Holy,5; bonus4 bAutoSpell,"AB_RENOVATIO",1,30,0; bonus4 bAutoSpellWhenHit,"PR_SANCTUARY",3,50,0; bonus bStr,-5; - Id: 2991 AegisName: Pendant_Of_Chaos Name: Pendant of Chaos 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 Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus2 bAddClass,Class_All,6; bonus2 bSubEle,Ele_Dark,5; bonus2 bResEff,Eff_Confusion,10000; bonus2 bAddEff,Eff_Confusion,500; bonus3 bAutoSpellWhenHit,"NPC_WIDECONFUSE",2,30; bonus bInt,-5; - Id: 2992 AegisName: Pendant_Of_Maelstorm Name: Pendant of Maelstrom Type: Armor Buy: 20 Weight: 100 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: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bAllStats,1; bonus5 bAutoSpellWhenHit,"SC_MAELSTROM",1,100,BF_MAGIC,0; - Id: 2993 AegisName: Yggdrasil_Ring Name: Heaven and Earth Tree Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bMaxHP,200; bonus bMaxSP,100; bonus bHit,5; - Id: 2994 AegisName: Water_Crystal_Stone Name: Water Crystal Stone Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 30 Script: | bonus3 bAutoSpell,"SA_DELUGE",1,10; /*Unknow Rate*/ - Id: 2995 AegisName: Supplement_Part_Dex Name: Supplement Part Dex Type: Armor Buy: 25000 Weight: 100 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bUseSPrate,-10; bonus bDelayrate,-10; bonus bVariableCastrate,-10; - Id: 2996 AegisName: Upgrade_Part_Gun_Barrel Name: Reinforced Parts - Gun Barrel Type: Armor Buy: 10 Weight: 500 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddClass,Class_All,4; bonus bHit,10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; - Id: 2997 AegisName: RWC_Gold_Brooch Name: RWC Gold Brooch Type: Armor Buy: 10 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,20; bonus bBaseAtk,20; - Id: 2998 AegisName: Shining_Trapezohedron Name: Shining Trapezohedron Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus2 bSubEle,Ele_Holy,10; - Id: 2999 AegisName: RWC_Silver_Brooch Name: RWC Brooch Type: Armor Buy: 10 Weight: 200 Locations: Both_Accessory: 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; - Id: 5001 AegisName: Headset Name: Headset Type: Armor Buy: 20 Weight: 200 Defense: 6 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: 9 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: 3 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: 7 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: 7 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: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 96 - Id: 5011 AegisName: Antenna Name: Aerial Type: Armor Buy: 20 Weight: 100 Defense: 5 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: 100 Defense: 5 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: 30 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 99 Script: | bonus bMdef,10; bonus bStr,5; bonus bAgiVit,10; bonus bInt,5; bonus bLuk,20; itemskill "NPC_HELLJUDGEMENT",10; - Id: 5014 AegisName: Fin_Helm Name: Fin Helm Type: Armor Buy: 20 Weight: 300 Defense: 5 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: 6 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: 3 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: 15 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: 8 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: 11 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: 5 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: 8 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: 2 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: 10 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: 3 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: 2 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: 6 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: 6 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: 9 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: 6 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: 3 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: 2 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: 8 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: 4 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: 8 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: 2 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: 4 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: 6 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: 10 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: 2 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: Popcorn_Hair Name: Assassin Mask Type: Armor Buy: 20 Weight: 100 Jobs: Assassin: true Priest: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 View: 180 - Id: 5055 AegisName: Novice_Egg_Cap Name: Novice False Eggshell Type: Armor Buy: 1 Weight: 1 Defense: 6 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: 200 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: 4 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: 3 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: 6 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: 4 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: 6 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: 4 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: 7 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: 8 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: 3 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: 2 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: 3 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: 2 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: 7 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: 5 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: 3 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: 8 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 159 - Id: 5076 AegisName: Fur_Hat Name: Beanie Type: Armor Buy: 20 Weight: 350 Defense: 3 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: 6 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: 8 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 Defense: 2 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: 3 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: 2 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: 2 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: 2 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: 5095 AegisName: Orc_Hero_Helm_ Name: Helmet of Orc Hero Type: Armor Buy: 800000 Weight: 1000 Defense: 5 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 55 Refineable: true View: 179 Script: | bonus bStr,2; bonus bVit,1; - Id: 5096 AegisName: Assassin_Mask_ Name: Assassin Mask Type: Armor Buy: 20 Weight: 100 Defense: 1 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 Script: | bonus bStr,3; bonus bMaxHP,100; - Id: 5099 AegisName: Cat_Hat Name: Neko Mimi Type: Armor Buy: 20 Weight: 300 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 182 Trade: NoDrop: true 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 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 Script: | bonus bInt,2; bonus bDef,1; - 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: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 186 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: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 24 Refineable: true View: 109 Script: | bonus bDex,1; bonus bMaxSP,80; - Id: 5106 AegisName: Cone_Hat_INA Name: 2nd Anniversary Hat Type: Armor Buy: 20 Weight: 300 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 144 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubEle,Ele_Neutral,10; bonus bMdef,10; - 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: 6 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: 4 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: 4 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: 8 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: 6 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: 5 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: 3 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: 3 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: 8 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: 6 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: 9 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: 6 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: 6 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: 6 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: 3 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: 8 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: 10 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: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 55 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: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 38 View: 204 Trade: NoDrop: true NoTrade: true 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: 3 Jobs: Acolyte: true Monk: true Priest: true Locations: Head_Top: true ArmorLevel: 1 View: 205 Script: | bonus bShortWeaponDamageReturn,5; - Id: 5134 AegisName: Pumpkin_Hat Name: Pumpkin-Head Type: Armor Buy: 20 Weight: 200 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 206 - 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: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 20 Script: | bonus3 bAutoSpellWhenHit,"PR_GLORIA",5,50; bonus3 bAutoSpellWhenHit,"AL_BLESSING",10,50; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; bonus2 bAddMonsterDropItem,12225,100; - Id: 5137 AegisName: Alice_Doll Name: Alice Doll Type: Armor Buy: 20 Weight: 500 Defense: 1 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: 3 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 bVariableCastrate,-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: 2 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 Defense: 1 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: 20 Slots: 1 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 Trade: NoDrop: true 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: 10 Refineable: true View: 214 Trade: NoDrop: true Script: | bonus2 bResEff,Eff_Silence,3000; - Id: 5144 AegisName: Gambler_Hat Name: Gambler Hat Type: Armor Buy: 20 Weight: 200 Defense: 4 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 Script: | bonus bAllStats,3; - 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; bonus2 bSubRace,RC_Player_Doram,7; skill "WZ_WATERBALL",1; - Id: 5147 AegisName: Baseball_Cap Name: Baseball Cap Type: Armor Weight: 200 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 216 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - 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 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,2; - Id: 5150 AegisName: Joker_Jester_ Name: Joker Jester Type: Armor Buy: 20 Weight: 100 Defense: 3 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: 5 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: 4 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: 9 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: 10 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: 9 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: 9 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: 12 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: 15 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: 10 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: 7 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: 7 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: 10 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_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: 6 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: 6 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 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,2; - Id: 5180 AegisName: Phrygian_Cap_ Name: France Holiday Hat Type: Armor Buy: 20 Weight: 100 Defense: 2 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: 500 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: 4 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: 4 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: 8 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: 2 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: 2 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 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 239 Trade: NoDrop: true 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: 4 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: 5 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 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 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 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 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 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 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 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: 3 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: 5 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: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 144 Script: | bonus bAllStats,3; - Id: 5202 AegisName: Pumpkin_Hat_ Name: Fantastic Pumpkin-Head Type: Armor Buy: 20 Weight: 200 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 206 Script: | bonus2 bSubRace,RC_Demon,5; bonus3 bAddMonsterDropItem,529,RC_DemiHuman,1500; - 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 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: 3 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 Jobs: All: true Novice: false SuperNovice: false 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: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 264 Trade: NoDrop: true Script: | bonus bAspdRate,5; bonus bVariableCastrate,-3; bonus bAgi,1; bonus bInt,1; - Id: 5211 AegisName: Dress_Hat Name: Dress Hat Type: Armor Weight: 200 Defense: 3 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: 6 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: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 267 Script: | bonus bAgi,2; bonus bMdef,3; bonus2 bAddMonsterDropItem,558,500; bonus2 bAddItemHealRate,558,2000; - 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 Trade: NoDrop: true 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: 4 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 38 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: 6 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 39 Script: | bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Demon,3; - Id: 5217 AegisName: Magestic_Goat_TW Name: Evolved Majestic Goat Type: Armor Buy: 20 Weight: 800 Defense: 10 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,2; - Id: 5218 AegisName: Bunny_Band_ Name: Evolved Bunny Band Type: Armor Buy: 20 Weight: 100 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 15 Script: | bonus bInt,2; - Id: 5219 AegisName: Drooping_Kitty_ Name: Evolved Drooping Cat Type: Armor Buy: 250000 Weight: 500 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 142 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 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: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 45 View: 169 Script: | bonus bFlee,5; - Id: 5222 AegisName: Fish_On_Head_ Name: Evolved Blue Fish Type: Armor Buy: 20 Weight: 500 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 149 Script: | bonus bAgi,1; bonus bDex,1; bonus2 bAddRace,RC_Fish,10; - 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 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 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: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 269 Trade: NoDrop: true Script: | bonus bMdef,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: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 270 Script: | bonus bAgi,2; bonus bDex,1; bonus bFlee,10; bonus bVariableCastrate,-getrefine(); - Id: 5227 AegisName: Red_Deviruchi_Cap Name: Red Deviruchi Hat Type: Armor Buy: 20 Weight: 800 Defense: 4 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 64 Refineable: true View: 271 Script: | bonus bStr,1; bonus bInt,1; - Id: 5228 AegisName: White_Deviruchi_Cap Name: Gray Deviruchi Hat Type: Armor Buy: 20 Weight: 800 Defense: 4 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 64 Refineable: true View: 272 Script: | bonus bStr,1; bonus bInt,1; - Id: 5229 AegisName: Gray_Deviruchi_Cap Name: Brown Deviruchi Hat Type: Armor Buy: 20 Weight: 800 Defense: 4 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 64 Refineable: true View: 273 Script: | bonus bStr,1; bonus bInt,1; - Id: 5230 AegisName: White_Drooping_Kitty Name: Gray Drooping Cat Type: Armor Buy: 250000 Weight: 500 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 274 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: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 275 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: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 276 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: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 277 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: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 278 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: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 279 Script: | bonus bLuk,1; - Id: 5236 AegisName: Blue_Fur_Hat Name: Blue Beanie Type: Armor Buy: 20 Weight: 350 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 280 Script: | bonus bLuk,1; - Id: 5237 AegisName: Pink_Fur_Hat Name: Pink Beanie Type: Armor Buy: 20 Weight: 350 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 281 Script: | bonus bLuk,1; - Id: 5238 AegisName: Red_Wizardry_Hat Name: Red Mage Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 282 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5239 AegisName: White_Wizardry_Hat Name: Gray Mage Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 283 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5240 AegisName: Gray_Wizardry_Hat Name: Brown Mage Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 284 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5241 AegisName: Blue_Wizardry_Hat Name: Blue Mage Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 285 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5242 AegisName: Yellow_Wizardry_Hat Name: Yellow Mage Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 286 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 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: 7 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: 8 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: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 294 - Id: 5251 AegisName: Round_Ears Name: Round Ears Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 295 - Id: 5252 AegisName: Drooping_Nine_Tail Name: Drooping Ninetail Type: Armor Buy: 20 Weight: 300 Defense: 2 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: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 297 Script: | bonus bInt,1; .@r = getrefine(); bonus bMdef,.@r; bonus bDef,-.@r; - Id: 5254 AegisName: Deviling_Hat Name: Deviling Hat Type: Armor Buy: 20 Weight: 500 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 298 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus2 bExpAddRace,RC_All,2; if (getrefine()>6) { bonus2 bExpAddRace,RC_All,1; } - Id: 5255 AegisName: Triple_Poring_Hat Name: Triple Poring Hat Type: Armor Buy: 20 Weight: 600 Defense: 6 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: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 300 Script: | bonus bInt,1; bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20; - Id: 5257 AegisName: Soulless_Wing Name: Soul Ring Type: Armor Buy: 20 Weight: 300 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 301 Script: | bonus bMdef,2; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,20; - 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: 6 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: 4 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: 5 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: 5 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 Script: | bonus2 bSubEle,Ele_Water,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: 8 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 304 Script: | bonus bAllStats,2; EquipScript: | specialeffect2 EF_GHOST; specialeffect2 EF_BAT; specialeffect2 EF_BAT2; - Id: 5265 AegisName: Apple_Of_Archer_C Name: Apple of Archer Type: Armor Buy: 1 Defense: 12 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: 13 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: 14 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: 14 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: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 264 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; bonus bAgi,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; - Id: 5270 AegisName: Fallen_Leaves_ Name: Autumn Leaves Type: Armor Buy: 20 Weight: 100 Defense: 2 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: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 309 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: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 310 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: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 142 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,15; bonus2 bResEff,Eff_Curse,3000; - Id: 5280 AegisName: Magestic_Goat_C Name: Baphomet Horns Type: Armor Buy: 2 Defense: 10 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 41 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; - Id: 5281 AegisName: Deviruchi_Cap_C Name: Refined Deviruchi Hat Type: Armor Buy: 2 Defense: 4 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 123 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; bonus bInt,1; - Id: 5282 AegisName: euRO_Baseball_Cap Name: Europe Baseball Cap Type: Armor Weight: 200 Defense: 5 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: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 311 Trade: NoDrop: true Script: | bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,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 Script: | bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; - Id: 5285 AegisName: Vane_Hairpin Name: Vane Hairpin Type: Armor Buy: 20 Weight: 300 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 313 Script: | bonus bAgi,2; - Id: 5286 AegisName: Pecopeco_Hairband Name: Pecopeco Hairband Type: Armor Buy: 20 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 314 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bSpeedRate,25; bonus bAspdRate,5; bonus bVariableCastrate,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 5287 AegisName: Vacation_Hat Name: Vacation Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 315 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 NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; - Id: 5289 AegisName: Vanilmirth_Hat Name: Vanilmirth Hat Type: Armor Buy: 20 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 317 Script: | bonus bUnbreakableHelm; bonus3 bAutoSpell,"MG_FIREBOLT",1,50; bonus3 bAutoSpell,"MG_COLDBOLT",1,50; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,50; bonus bMdef,5; - Id: 5290 AegisName: Drooping_Bunny_ Name: Drooping Bunny Type: Armor Buy: 20 Weight: 100 Defense: 3 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: 8 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 318 Script: | bonus4 bAutoSpell,"SA_DELUGE",2,30,0; bonus3 bAutoSpell,"WZ_WATERBALL",3,30; - Id: 5292 AegisName: Dragon_Skull Name: Dragon Skull Type: Armor Buy: 20 Weight: 800 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 319 Script: | bonus2 bSubRace,RC_Dragon,5; - Id: 5293 AegisName: Ramen_Hat Name: Ramen Hat Type: Armor Buy: 20 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 View: 320 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: 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 NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: 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: 2 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: 3 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 EquipLevelMin: 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: 4 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true View: 322 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: 2 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: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 325 Script: | bonus bMdef,3; bonus bMaxSP,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: 30 Refineable: true View: 326 Script: | bonus4 bAutoSpellWhenHit,"NPC_EVILLAND",5,5,1; 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 Script: | bonus bBaseAtk,5; - Id: 5306 AegisName: Freyja_Crown Name: Freya's Crown Type: Armor Weight: 500 Defense: 20 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: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 329 Script: | bonus bMdef,3; .@r = getrefine(); bonus2 bSubEle,Ele_Fire,(.@r>=7?10:5); if (.@r>=7) { bonus bBaseAtk,15; bonus bMatk,15; } bonus3 bAddMonsterDropItem,512,RC_All,10; bonus3 bAddMonsterDropItem,513,RC_All,10; bonus3 bAddMonsterDropItem,514,RC_All,10; bonus3 bAddMonsterDropItem,578,RC_All,10; - Id: 5308 AegisName: Brazilian_Flag_Hat Name: Brazil National Flag Hat Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 330 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bSpeedRate,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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "RG_GRAFFITI",1; - Id: 5310 AegisName: Bulb_Hairband Name: Shining Electric Bulb Hairband Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 332 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: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 333 Script: | bonus bMdef,15; - Id: 5312 AegisName: Ayothaya_Hat Name: Ayothaya King's Hat Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 334 Trade: NoDrop: true Script: | bonus2 bAddClass,Class_Boss,5; bonus bStr,2; - 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 Script: | bonus bInt,1; bonus bVariableCastrate,-3; bonus bMatkRate,3; bonus bMaxSPrate,3; bonus bHealPower,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 NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 5315 AegisName: Observer Name: Observer Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 35 View: 337 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "WZ_ESTIMATION",1; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,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: 4 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 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 bFlee,6; - Id: 5319 AegisName: Hellomother_Hat Name: Hello Mother Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 341 Trade: NoDrop: true Script: | bonus bHPrecovRate,150; bonus bMaxHP,80*getrefine(); - Id: 5320 AegisName: Champion_Wreath Name: Champion Wreath Type: Armor Buy: 20 Weight: 500 Defense: 8 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: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 342 Script: | bonus2 bAddMonsterDropItem,518,300; - Id: 5322 AegisName: Scarf Name: Kerchief Type: Armor Buy: 20 Weight: 100 Defense: 4 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: 14 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: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 344 Trade: NoDrop: 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 Trade: NoDrop: true 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 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 View: 78 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,5; bonus bVit,3; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 5328 AegisName: Evil_Wing_Ears_C Name: Evil Wing Ears C Type: Armor Buy: 1 Defense: 4 Locations: Head_Mid: true ArmorLevel: 1 View: 152 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; - Id: 5329 AegisName: Dark_Blindfold_C Name: Dark Blindfold C Type: Armor Buy: 1 Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 View: 187 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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: 9 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 142 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,15; bonus2 bResEff,Eff_Curse,4000; bonus2 bResEff,Eff_Stun,1000; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,1; } - Id: 5331 AegisName: Corsair_C Name: Corsair C Type: Armor Buy: 1 Defense: 14 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 105 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,3; bonus bInt,3; - Id: 5332 AegisName: Loki_Mask Name: Loki Mask Type: Armor Weight: 200 Defense: 2 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 Script: | bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpell,"MG_THUNDERSTORM",5,30,1; - Id: 5334 AegisName: Angeling_Wanna_Fly Name: Flapping Angeling Type: Armor Weight: 700 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 348 Script: | bonus bLuk,2; bonus bDex,1; - Id: 5335 AegisName: Jumping_Poring Name: Jumping Poring Type: Armor Weight: 300 Defense: 3 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: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 350 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 5337 AegisName: Party_Recruiter_Hat Name: Party Recruiter Hat Type: Armor Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 351 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 5338 AegisName: Bf_Recruiter_Hat Name: BF Recruiter Hat Type: Armor Defense: 4 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: 4 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 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 354 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus4 bAutoSpellWhenHit,"AL_ANGELUS",10,20,0; - Id: 5341 AegisName: Claris_Doll_Hat Name: Glaris Doll Hat Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 355 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMagicHPGainValue,50; - Id: 5342 AegisName: Sorin_Doll_Hat Name: Sorin Doll Hat Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 356 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bBaseAtk,50; }",20,10000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 5343 AegisName: Tayelin_Doll_Hat Name: Telling Doll Hat Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 357 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddItemHealRate,504,10; bonus2 bAddItemHealRate,547,10; - Id: 5344 AegisName: Binit_Doll_Hat Name: Bennit Doll Hat Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 358 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; autobonus "{ bonus bAspdRate,5; }",20,30000,BF_NORMAL,"{ specialeffect2 EF_HASTEUP; }"; - Id: 5345 AegisName: Debril_Doll_Hat Name: W Doll Hat Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 359 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; - Id: 5346 AegisName: Gf_Recruiter_Hat Name: GF Recruiter Hat Type: Armor Defense: 4 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: 100 Defense: 5 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: 3 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: 3 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: 4 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: 2 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: 4 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 38 Refineable: true View: 361 - 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: 4 Locations: Head_Top: true ArmorLevel: 1 View: 362 Script: | bonus bVariableCastrate,-5; - Id: 5355 AegisName: Muslim_Hat_F Name: Selendang Type: Armor Weight: 100 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 View: 363 Script: | bonus bVariableCastrate,-5; - Id: 5356 AegisName: Pumpkin_Hat_H Name: Festival Pumpkin Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 206 Script: | bonus2 bAddRace,RC_Demon,5; bonus2 bMagicAddRace,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: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 366 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 Script: | bonus bDex,1; bonus bMaxHP,100; bonus bLongAtkRate,7; - Id: 5360 AegisName: Whikebain_Ears Name: Hyuke's Black Cat Ears Type: Armor Buy: 20 Weight: 200 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true View: 368 Trade: NoDrop: true Script: | bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,25; bonus2 bIgnoreMdefClassRate,Class_Boss,25; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; - Id: 5361 AegisName: Gang_Scarf Name: Gangster Scarf Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 369 Trade: NoDrop: 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 View: 370 Trade: NoDrop: true Script: | bonus bMatkRate,1; - Id: 5363 AegisName: Helm_Of_Abyss Name: Helm Of Abyss Type: Armor Buy: 20 Weight: 1000 Defense: 9 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 Trade: NoDrop: true Script: | bonus2 bSubClass,Class_Normal,-5; bonus2 bSubClass,Class_Boss,10; - Id: 5364 AegisName: Dark_Snake_Lord_Hat Name: Evil Snake Lord Hat Type: Armor Buy: 20 Weight: 500 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 372 Script: | bonus bStr,1; bonus bInt,1; bonus bAgi,2; bonus2 bAddMonsterDropItem,12582,30; - Id: 5365 AegisName: Fried_Egg Name: Magnolia Hat Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 373 Trade: NoDrop: true Script: | bonus bBaseAtk,5; bonus3 bAutoSpellWhenHit,"BS_GREED",1,10; - Id: 5366 AegisName: Hat_0f_King Name: Love Dad Bandana Type: Armor Buy: 20 Weight: 200 Defense: 53 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 Script: | bonus bMdef,3; bonus2 bSubRace,RC_Demon,10; - Id: 5368 AegisName: White_Wing Name: White Wing Type: Armor Buy: 20 Weight: 100 Defense: 4 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: 4 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 Script: | bonus bLuk,1; bonus bMaxSP,30; - Id: 5372 AegisName: Drooping_White_Kitty Name: Koneko Hat Type: Armor Buy: 20 Weight: 500 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 378 Trade: NoDrop: 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 Script: | bonus bDex,3; bonus bMdef,1; - Id: 5374 AegisName: L_Magestic_Goat Name: Gigantic Majestic Goat Type: Armor Buy: 20 Weight: 800 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 380 Script: | bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel/7)*2; - 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 Script: | bonus bStr,2; bonus3 bAutoSpell,"BS_WEAPONPERFECT",3,10; - Id: 5376 AegisName: Satanic_Chain_P Name: Flying Evil Wing Type: Armor Buy: 20 Weight: 100 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 382 Script: | bonus bMaxSP,120; bonus2 bAddEff2,Eff_Curse,10; - Id: 5377 AegisName: Antique_Pipe Name: Gentleman's Pipe Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 383 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 Script: | bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,50; - Id: 5379 AegisName: Balloon_Hat Name: Tam Type: Armor Weight: 800 Defense: 5 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: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 386 Trade: NoDrop: true Script: | bonus3 bAutoSpell,"SA_FROSTWEAPON",1,50; - Id: 5381 AegisName: Santa_Poring_Hat Name: Santa Poring Hat Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 387 Trade: NoDrop: 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: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 388 Trade: NoDrop: 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: 6 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 389 Script: | bonus bLuk,1; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Player_Doram,5; - Id: 5384 AegisName: Santa_Hat_1 Name: Twin Pompom By JB Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 390 Trade: NoDrop: true Script: | bonus bAspdRate,4; bonus bVariableCastrate,-2; bonus bLuk,3; - Id: 5385 AegisName: Yoyo_Hat Name: Yoyo Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 391 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 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 Script: | bonus bMdef,5; bonus2 bAddEffWhenHit,Eff_Silence,1000; bonus2 bAddEffWhenHit,Eff_Poison,1000; bonus2 bAddEffWhenHit,Eff_Curse,1000; bonus2 bAddEffWhenHit,Eff_Blind,1000; bonus2 bAddEffWhenHit,Eff_Stone,1000; bonus2 bAddEffWhenHit,Eff_Freeze,1000; bonus2 bAddEffWhenHit,Eff_Stun,1000; bonus2 bAddEffWhenHit,Eff_Sleep,1000; - Id: 5388 AegisName: Snake_Head Name: Snake Head Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 393 Script: | skill "TF_DOUBLE",5; - Id: 5389 AegisName: Angel_Spirit Name: Angel Spirit Type: Armor Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 View: 394 Trade: NoDrop: 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: 4 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 Defense: 1 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: 6 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: 4 Locations: Head_Top: true ArmorLevel: 1 View: 397 Trade: NoDrop: true Script: | bonus bMaxSPrate,7; bonus bMaxHPrate,7; - Id: 5394 AegisName: Bubblegum_Lower Name: Bubblegum Type: Armor Locations: Head_Low: true ArmorLevel: 1 View: 572 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddClass,Class_All,100; - Id: 5395 AegisName: Tiraya_Bonnet Name: Striped Hat Type: Armor Buy: 20 Weight: 500 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 398 Script: | bonus bMaxHP,100+(getrefine()*20); bonus bLuk,3; - Id: 5396 AegisName: Jasper_Crest Name: Jasper Crest Type: Armor Buy: 20 Weight: 700 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 399 Trade: NoDrop: true Script: | bonus bDex,1; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bAddEle,Ele_Undead,5; .@r = getrefine(); if (.@r<6) { bonus2 bAddEff2,Eff_Blind,10; } else if (.@r>8) { bonus bDex,2; } - Id: 5397 AegisName: Scuba_Mask Name: Scuba Gear Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 400 Script: | bonus2 bSubEle,Ele_Water,10; bonus2 bExpAddRace,RC_Fish,10; bonus bUnbreakableHelm; - Id: 5398 AegisName: Bone_Head Name: Bone Head Type: Armor Buy: 20 Weight: 1200 Defense: 10 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Classes: All_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: 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: All_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: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 404 Script: | bonus bInt,1; bonus bMdef,2; bonus bUnbreakableHelm; - Id: 5402 AegisName: Mischievous_Fairy Name: Mischievous Fairy Type: Armor Buy: 10 Weight: 200 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 405 Script: | bonus bUnbreakableHelm; 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 Script: | bonus2 bAddMonsterDropItem,579,500; bonus2 bAddItemHealRate,579,25; - Id: 5404 AegisName: Blue_Ribbon Name: Blue Ribbon Type: Armor Buy: 10 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true View: 407 Script: | bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0; - Id: 5405 AegisName: Filir_Hat Name: Filir Hat Type: Armor Buy: 10 Weight: 200 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 80 View: 408 Script: | bonus bShortWeaponDamageReturn,1; - Id: 5406 AegisName: Academy_Freshman_Hat Name: Academy Freshman Hat Type: Armor Weight: 500 Defense: 3 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 bInt,1; bonus bDex,2; bonus bVit,1; bonus bDelayrate,-5; - Id: 5407 AegisName: Academy_Graduating_Cap Name: Academy Completion Hat Type: Armor Weight: 500 Defense: 3 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: 10 Locations: Head_Top: true ArmorLevel: 1 View: 6 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,2; bonus bMaxSP,50; bonus bVariableCastrate,-10; - Id: 5409 AegisName: New_Cowboy_Hat Name: Purple Cowboy Hat Type: Armor Buy: 20 Weight: 500 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 411 Trade: NoDrop: true 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 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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: 4 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 Locations: Head_Low: true ArmorLevel: 1 View: 414 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; bonus bAspd,1; bonus bBaseAtk,5; bonus bMatk,5; bonus bHealPower,5; bonus bFixedCast,-100; - Id: 5413 AegisName: Popcorn_Hat Name: Pop Corn Hat Type: Armor Buy: 20 Weight: 300 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 View: 415 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Wind,10; - Id: 5414 AegisName: Campfire_Hat Name: Camp Fire Hat Type: Armor Buy: 20 Weight: 300 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 View: 416 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Fire,10; bonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,500,1; - Id: 5415 AegisName: Poring_Cake_Cap Name: Poring Cake Hat Type: Armor Buy: 20 Weight: 1000 Defense: 10 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 bVariableCastrate,-5; bonus bDelayrate,-5; - Id: 5416 AegisName: Beer_Cap Name: Beer Hat Type: Armor Buy: 20 Weight: 600 Defense: 4 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: 2 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: 8 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 Trade: NoDrop: true Script: | bonus bVit,1; bonus2 bSubRace,RC_Plant,5; - Id: 5420 AegisName: Mask_Of_Ifrit Name: Mask Of Ifrit Type: Armor Buy: 20 Weight: 800 Defense: 12 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 421 Trade: NoDrop: true Script: | bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; bonus bMdef,5; bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",3,50; - Id: 5421 AegisName: Ifrit's_Ear Name: Ears Of Ifrit Type: Armor Buy: 20 Weight: 300 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 422 Trade: NoDrop: true Script: | bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSubEle,Ele_Water,-3; bonus2 bSubEle,Ele_Fire,3; bonus bMdef,3; bonus bStr,1; bonus bInt,1; - 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: 10 Locations: Head_Top: true ArmorLevel: 1 View: 424 Trade: NoDrop: true NoSell: 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: 3 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: 3 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: 3 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: 3 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: Dokebi Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 430 Script: | bonus bHPrecovRate,5; bonus bSPrecovRate,5; - Id: 5430 AegisName: Sacred_Torch_Coronet Name: Torch Cap Type: Armor Buy: 20 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 View: 431 Trade: NoDrop: 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 Trade: NoDrop: true 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: 5434 AegisName: Cola_Can Name: Cola Can Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 435 - Id: 5435 AegisName: Coke_Hat Name: Red Minstrel Hat Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 436 Trade: NoDrop: true Script: | bonus bInt,1; bonus bMaxSP,80; bonus bMdef,3; .@r = getrefine(); if (.@r>5) { bonus bMdef,.@r-5; bonus bMaxSP,(.@r-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: 2 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: 6 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: 6 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: 6 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: Indifferent Solo Hat Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 449 Script: | skill "RG_GRAFFITI",1; - Id: 5449 AegisName: Solo_Play_Box2 Name: Angry Solo Hat Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 450 Script: | skill "RG_GRAFFITI",1; - 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: 1500 Defense: 14 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: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; 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: 1500 Defense: 10 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: | bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; 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: 1500 Defense: 5 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: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; 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: 4 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 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 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 455 Script: | bonus bBaseAtk,5; bonus bMatkRate,5; .@r = getrefine(); if (.@r>4) { bonus bBaseAtk,.@r-4; bonus bMatkRate,.@r-4; } - Id: 5458 AegisName: Pinwheel_Cap Name: Pinwheel Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 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: 3 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: 14 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: 3 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 459 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,30; bonus bMaxHPrate,-2; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bLongAtkRate,2; bonus bAllStats,1; bonus bMaxHPrate,2; } - Id: 5463 AegisName: Rainbow_Scarf Name: Rainbow Scarf Type: Armor Buy: 20 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 460 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,30; bonus bMaxSPrate,-2; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bVariableCastrate,-2; bonus bAllStats,1; bonus bMaxSPrate,2; } - Id: 5464 AegisName: Zaha_Doll_Hat Name: Zaha Doll Hat Type: Armor Buy: 20 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 461 Trade: NoDrop: true Script: | bonus bInt,3; bonus bMdef,9; bonus2 bMagicAddRace,RC_Undead,10; .@t = 2+(getrefine()/3)*1000; autobonus "{ .@r = max(1,getrefine()); bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; bonus2 bSPLossRate,10,1000; }",15,.@t,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"This is my magic Power!\"; }"; autobonus2 "{ .@r = max(1,getrefine()); bonus bMatk,30*.@r; bonus bFixedCast,-80*.@r; bonus2 bSPLossRate,10,1000; }",15,.@t,BF_MAGIC,"{ active_transform 1518,3000; specialeffect2 EF_POTION_BERSERK; showscript \"How dare you! I punish you to endless sleep!\"; }"; - Id: 5465 AegisName: Celestial_Hat Name: Hat Of Fortune Type: Armor Buy: 20 Weight: 500 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 462 Script: | bonus bLuk,2; bonus bMdef,5; .@r = getrefine(); if (.@r>4) bonus bLuk,.@r-4; - Id: 5466 AegisName: Wind_Milestone Name: Wind Milestone Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 463 Script: | bonus bAgi,2; skill "AL_TELEPORT",1; - Id: 5467 AegisName: Helm_Of_Dragoon Name: Helm Of Dragon Type: Armor Buy: 20 Weight: 1000 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 464 Trade: NoDrop: true Script: | bonus bStr,2; bonus bInt,2; bonus bDex,2; .@r = getrefine(); if (.@r>=7) bonus2 bExpAddRace,RC_Dragon,3; if (.@r>=9) bonus2 bExpAddRace,RC_Dragon,5; bonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30; - Id: 5468 AegisName: Parade_Cap Name: Parade Hat Type: Armor Buy: 20 Weight: 800 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 465 Script: | bonus bDelayrate,-5; bonus bMdef,2; .@r = getrefine(); if (.@r>5) bonus bVariableCastrate,-(.@r-5); - Id: 5469 AegisName: Noble_Hat Name: Musketeer Hat Type: Armor Buy: 20 Weight: 300 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 466 Trade: NoDrop: true Script: | bonus bDex,3; bonus bFlee,3; .@r = getrefine(); if (.@r>=7) { bonus bFlee,3; bonus bLongAtkRate,3; } if (.@r>=9) { bonus bFlee,4; bonus bLongAtkRate,2; } - Id: 5470 AegisName: Eyes_Of_Darkness Name: Eye Of Darkness Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 467 Script: | bonus bDex,1; bonus2 bResEff,Eff_Blind,10000; - Id: 5471 AegisName: Hairband_Of_Reginleif Name: Hairband Of Reginleif Type: Armor Buy: 20 Weight: 800 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 468 Script: | bonus2 bSubEle,Ele_Water,3; bonus2 bSubEle,Ele_Fire,3; bonus2 bSubEle,Ele_Undead,3; bonus2 bSubEle,Ele_Ghost,3; - Id: 5472 AegisName: Red_White_Hat Name: Red Hat Type: Armor Buy: 20 Weight: 100 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 469 Script: | bonus3 bAddMonsterDropItem,554,RC_DemiHuman,200; - Id: 5473 AegisName: Forceps_Hairpin Name: Nipper Crab Hairpin Type: Armor Buy: 20 Weight: 500 Defense: 8 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 470 Script: | bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,30; bonus3 bAddMonsterDropItem,991,RC_Fish,100; - Id: 5474 AegisName: Notice_Board Name: AFK Hat Type: Armor Buy: 20 Weight: 700 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 471 - Id: 5475 AegisName: Cube_Mask Name: Mask Cube Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 View: 472 Script: | bonus bAllStats,1; - Id: 5476 AegisName: Hairband_Of_Grandpeco Name: Grand Peco Hairband Type: Armor Buy: 20 Weight: 800 Defense: 5 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 473 Trade: NoDrop: true Script: | bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_DemiHuman,7; bonus2 bAddRace,RC_Player_Human,7; bonus2 bAddRace,RC_Player_Doram,7; bonus3 bAddEff,Eff_Curse,10,ATF_SHORT; - Id: 5477 AegisName: Bro_Flag Name: Brazilian Flag Hat Type: Armor Buy: 20 Weight: 100 Defense: 2 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: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 475 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: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 476 Trade: NoDrop: true Script: | bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; - Id: 5480 AegisName: Bizofnil_Wing_Deco Name: Bijofnil Wings Type: Armor Buy: 20 Weight: 1000 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 477 Trade: NoDrop: true Script: | bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bHPRegenRate,(MaxHp*2/100),10000; bonus2 bSPRegenRate,(MaxSp/100),10000; - Id: 5481 AegisName: Hermose_Cap Name: Hermode Cap Type: Armor Buy: 20 Weight: 1000 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 478 Trade: NoDrop: true Script: | .@r = getrefine(); bonus bAspdRate,5; if (.@r == 9) bonus2 bAddClass,Class_All,4; else if (.@r > 9) bonus2 bAddClass,Class_All,5; else bonus2 bAddClass,Class_All,3; - Id: 5482 AegisName: Dark_Knight_Mask Name: Dark Knight Mask Type: Armor Buy: 20 Weight: 3000 Defense: 5 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 479 Trade: NoDrop: 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: 1 View: 480 Trade: NoDrop: true Script: | bonus2 bSubClass,Class_Boss,2; - Id: 5484 AegisName: Taiwan_Flag_Hat Name: Holidays Hat Type: Armor Buy: 20 Weight: 500 Defense: 8 Locations: Head_Top: true ArmorLevel: 1 View: 482 Script: | bonus bAllStats,5; bonus2 bResEff,Eff_Stun,500; - 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: 6 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: 8 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 65 View: 485 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: 6 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 486 Script: | bonus bStr,2; bonus2 bSubEle,Ele_Fire,10; - Id: 5492 AegisName: Boy's_Cap_I Name: Student Cap Type: Armor Defense: 10 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: 12 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: 10 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: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 493 Trade: NoDrop: true Script: | bonus2 bSubEle,Ele_Wind,7; bonus bMdef,3; bonus bInt,1; bonus bDex,1; if (getrefine()>=8) { autobonus "{ bonus bMatk,40; bonus bBaseAtk,40; }",1,6000; } - Id: 5496 AegisName: Dice_Hat Name: Dice Hat Type: Armor Buy: 20 Weight: 300 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 494 Script: | bonus bLuk,4; - Id: 5497 AegisName: King_Tiger_Doll_Hat Name: King Tiger Doll Hat Type: Armor Buy: 20 Weight: 400 Defense: 6 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 495 Trade: NoDrop: true Script: | bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Eddga Power !\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*getrefine(); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Eddga Power !\"; }"; - Id: 5498 AegisName: Wondering_Wolf_Helm Name: Wandering Wolf Helm Type: Armor Buy: 20 Weight: 600 Defense: 5 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 490 Trade: NoDrop: true Script: | bonus bAgi,5; bonus bFlee,10; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (getrefine()>=7) { bonus2 bAddEff,Eff_Bleeding,10; } if (getrefine()>=9) { bonus3 bAutoSpellWhenHit,"SR_HOWLINGOFLION",1,1; } - Id: 5499 AegisName: Pizza_Hat Name: Pizza Hat Type: Armor Buy: 20 Weight: 600 Locations: Head_Top: true ArmorLevel: 1 View: 487 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 Script: | bonus bMdef,3; skill "MG_FROSTDIVER",3; - Id: 5501 AegisName: Pirate's_Pride Name: Pirate's Pride Type: Armor Weight: 100 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 496 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: 6 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 491 Trade: NoDrop: true Script: | bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubEle,Ele_Undead,15; bonus2 bSubEle,Ele_Dark,15; bonus bVariableCastrate,-10; bonus bMdef,3; bonus bInt,3; - Id: 5503 AegisName: Rabbit_Magic_Hat Name: Rabbit Magic Hat Type: Armor Weight: 800 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 497 Trade: NoDrop: true Script: | bonus bDex,2; bonus bAgi,2; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayrate,-4; - Id: 5504 AegisName: China_Wedding_Veil Name: Wedding Weil Type: Armor Buy: 20 Weight: 500 Defense: 5 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 489 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 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 bAtkRate,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 bAtkRate,5; bonus bMatkRate,5; - Id: 5508 AegisName: Shark_Hat Name: Shark Hat Type: Armor Buy: 20 Weight: 500 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 503 Trade: NoDrop: 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: 10 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 504 Trade: NoDrop: true Script: | bonus bStr,2; bonus bVit,1; bonus bMdef,3; bonus2 bSubEle,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: 1 Refineable: true View: 508 Script: | bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bHealPower,2; bonus bAspd,1; bonus bFixedCastrate,-10; - 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: 1000 Jobs: Hunter: true Classes: All_Upper: true Locations: Head_Mid: true ArmorLevel: 1 View: 23 Script: | bonus bDex,1; bonus bLongAtkRate,3; - Id: 5517 AegisName: Hawk_Eyes02 Name: Hawk Eyes Type: Armor Buy: 10 Weight: 1000 Jobs: Archer: true BardDancer: true Hunter: true Locations: Head_Mid: true ArmorLevel: 1 View: 23 Script: | bonus bDex,1; - Id: 5518 AegisName: L_Magestic_Goat2 Name: Gigantic Majestic Goat Type: Armor Buy: 20 Weight: 800 Defense: 10 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 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 Trade: NoDrop: true 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 bVariableCastrate,-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 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 Script: | bonus bLuk,3; bonus bCritical,5; bonus2 bAddRace,RC_Plant,20; - 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 Script: | bonus bAgi,1; - Id: 5529 AegisName: Evil's_Bone_Hat Name: Satanic Bone Helm Type: Armor Buy: 20 Weight: 600 Defense: 12 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 523 Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMdef,2; bonus bStr,2; bonus bInt,2; - 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 - 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 Trade: NoDrop: true Script: | bonus bDex,2; skill "TF_DOUBLE",5; - Id: 5532 AegisName: Pirate_Dagger_J Name: Pirate Dagger Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 327 Script: | bonus bShortWeaponDamageReturn,1; - Id: 5533 AegisName: Emperor_Wreath_J Name: Emperor Wreath Type: Armor Buy: 20 Weight: 800 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true View: 261 Script: | bonus bAllStats,1; - Id: 5534 AegisName: Fox_Hat_J Name: Fox Hat Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 403 Script: | bonus bAgi,1; bonus bFlee2,2; - Id: 5535 AegisName: Side_Cap Name: Side Cap Type: Armor Buy: 20 Weight: 500 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 529 Trade: NoDrop: true Script: | bonus bDex,1; 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: | bonus bLuk,1; bonus2 bAddMonsterDropItem,6187,1000; bonus bFlee2,1; bonus2 bAddMonsterDropItem,617,5; bonus2 bAddMonsterDropItem,12132,30; bonus2 bAddMonsterDropItem,12130,30; - 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 Script: | bonus bAgi,3; bonus2 bAddRace,RC_Plant,10; - 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 Script: | bonus bDex,3; bonus bCritical,5; - 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 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: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 531 Trade: NoDrop: true Script: | bonus bMaxHPrate,1; if (getrefine()>6) { bonus bMaxHPrate,2; } bonus bVit,1; - Id: 5546 AegisName: Aries_Crown Name: Aries Crown Type: Armor Buy: 20 Weight: 400 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 532 Trade: NoDrop: true Script: | if (getrefine()>6) { bonus bCritical,5; bonus bCritAtkRate,5; } bonus bLuk,2; - 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 Script: | bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+getequiprefinerycnt(EQI_HAND_R); bonus2 bVariableCastrate,"WZ_HEAVENDRIVE",-25; bonus2 bVariableCastrate,"WZ_EARTHSPIKE",-25; - Id: 5548 AegisName: Scarlet_Rose Name: Scarlet Rose Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 534 Trade: NoDrop: true Script: | bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bMaxSP,30; - Id: 5549 AegisName: Taurus_Diadem Name: Taurus Diadem Type: Armor Buy: 20 Weight: 300 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 535 Trade: NoDrop: true Script: | bonus bMatkRate,2; bonus bDelayrate,-2; bonus bDex,2; .@r = getrefine(); bonus2 bAddEffWhenHit,Eff_Stun,.@r; /* unknown rate */ - Id: 5550 AegisName: Taurus_Crown Name: Taurus Crown Type: Armor Buy: 20 Weight: 300 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 536 Trade: NoDrop: true Script: | bonus bFlee,10; .@r = getrefine(); .@r = min(12, .@r); .@r = max(1, .@r); bonus2 bAddEff,Eff_Stun,.@r; /* unknown rate */ if (getrefine()>6) { bonus bBaseAtk,15; bonus bAspdRate,5; } bonus bAgi,2; - Id: 5551 AegisName: Holy_Egg_Hat Name: Holy Egg Hat Type: Armor Buy: 20 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 537 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus3 bAutoSpellWhenHit,"AL_HEAL",1,20; - Id: 5552 AegisName: Fest_Lord_Circlet Name: Festival Grand Circlet Type: Armor Defense: 10 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: 14 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 Refineable: true View: 538 Trade: NoDrop: true Script: | bonus bMdef,3; 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: 6 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 539 Trade: NoDrop: true Script: | bonus bAgi,2; bonus3 bAutoSpellWhenHit,"AL_HEAL",3,50; - Id: 5556 AegisName: Fur_Seal_Hat Name: Seal Hat Type: Armor Buy: 20 Weight: 500 Defense: 5 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 540 Trade: NoDrop: true Script: | bonus bBaseAtk,5; bonus bMatk,5; bonus2 bSubEle,Ele_Water,7; bonus2 bAddEle,Ele_Water,25; - 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 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,20; - Id: 5559 AegisName: Piece_Of_White_Cloth_E Name: Piece Of White Cloth Type: Armor Defense: 5 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 543 Script: | bonus2 bAddClass,Class_All,6; bonus bMatkRate,6; bonus bLongAtkRate,6; bonus bHealPower,6; bonus bVariableCastrate,-20; bonus bAspd,1; - Id: 5560 AegisName: Bullock_Helm_J Name: Bullock Helm Type: Armor Buy: 20 Weight: 3000 Defense: 6 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 bVariableCastrate,-3; bonus bUseSPrate,-5; - Id: 5563 AegisName: Dolor_Hat Name: Dolor Hat Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 547 Script: | bonus3 bAutoSpell,"PR_LEXAETERNA",1,15; - 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 Script: | .@r = getrefine(); bonus bInt,4; bonus bMdef,10; bonus bVariableCastrate,-10; if (.@r >= 7) { bonus bDef,2; bonus bMatkRate,5; bonus bVariableCastrate,-5; } if (.@r>=9) { bonus bMdef,5; bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; } - 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 Script: | bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,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 Script: | bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; - Id: 5567 AegisName: Bright_Fury Name: Bright Fury Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 548 Trade: NoDrop: true Script: | if (getrefine()>6) { bonus bCritical,10; bonus bHit,10; } bonus bStr,1; - Id: 5568 AegisName: Rabbit_Bonnet Name: Rabbit Bonnet Type: Armor Buy: 20 Weight: 1000 Defense: 4 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 549 Script: | bonus bInt,2; bonus bDelayrate,-3; - Id: 5569 AegisName: Gemini_Diadem Name: Gemini Diadem Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 550 Trade: NoDrop: true Script: | bonus2 bSubEle,Ele_Wind,5; bonus bDelayrate,-2; if (getrefine()>6) { bonus bDex,1; bonus bMatk,30; } bonus bDex,2; - Id: 5570 AegisName: Gemini_Crown Name: Gemini Crown Type: Armor Buy: 20 Weight: 300 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 551 Trade: NoDrop: true Script: | bonus bAgi,2; bonus bFlee,10; bonus2 bSubEle,Ele_Wind,5; if (getrefine()>6) { bonus bHit,5; bonus bBaseAtk,30; } - Id: 5571 AegisName: Rasta_Wig Name: Rasta Wig Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 552 Script: | bonus bStr,1; bonus3 bAutoSpellWhenHit,"BA_FROSTJOKER",1,50; - Id: 5572 AegisName: Savage_Baby_Hat Name: Savage Babe Hat Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 553 Trade: NoDrop: true Script: | bonus bVit,2; bonus2 bAddEff,Eff_Stun,500; bonus2 bSubRace,RC_Brute,-10; bonus2 bSubRace,RC_Player_Doram,-10; - Id: 5573 AegisName: Bogy_Horn Name: Dokebi Horn Type: Armor Buy: 20 Weight: 100 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 554 Trade: NoDrop: true Script: | bonus2 bAddMonsterDropItemGroup,IG_Jewel,100; bonus3 bAutoSpell,"MC_MAMMONITE",5,70; - 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 Script: | bonus bHit,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: 5576 AegisName: Japan_Winecup Name: Wine Cup Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 View: 557 - 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: 1 Refineable: true View: 479 Trade: NoDrop: true Script: | bonus bDex,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: 1 Refineable: true View: 558 Script: | bonus bFlee,3; .@r = getrefine(); if (.@r>=7) { bonus bFlee,2; bonus bAgi,2; } if (.@r>=9) { bonus bCritical,10; bonus bAspdRate,8; } - Id: 5580 AegisName: Red_Beret Name: Red Beret Type: Armor Buy: 20 Weight: 100 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 View: 559 Script: | bonus bAllStats,3; bonus bMdef,3; - 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 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 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 I Type: Armor Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 7 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: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 562 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_Demon,3; bonus2 bHPDrainRate,3,15; bonus2 bSPDrainRate,1,7; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bSubRace,RC_Demon,2; } - Id: 5585 AegisName: Rune_Hairband Name: Rune Cloth Circlet Type: Armor Buy: 20 Weight: 400 Defense: 5 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 564 Trade: NoDrop: true Script: | bonus2 bSubEle,Ele_Neutral,3; bonus bHit,5; bonus2 bHPDrainRate,30,10; bonus2 bSPDrainRate,10,5; - Id: 5586 AegisName: Mosquito_Coil Name: Mosquito Coil Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 563 Script: | bonus2 bAddDamageClass,1627,100; bonus2 bAddDamageClass,1095,20; bonus2 bAddDamageClass,1160,20; bonus2 bAddDamageClass,1105,20; bonus2 bAddDamageClass,1097,20; bonus2 bAddDamageClass,1051,20; bonus2 bAddDamageClass,1053,20; bonus2 bAddDamageClass,1054,20; bonus2 bAddDamageClass,1048,20; - Id: 5587 AegisName: Mosquito_Coil_1Use Name: Mosquito Coil Type: Armor Weight: 100 Defense: 5 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: 5588 AegisName: Leo_Crown Name: Leo Crown Type: Armor Buy: 20 Weight: 300 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 565 Script: | bonus bStr,2; bonus2 bSubEle,Ele_Fire,5; if (getrefine()>6) { bonus bDef,1; bonus bFlee,10; bonus3 bAutoSpell,"TK_SEVENWIND",4,50; } - Id: 5589 AegisName: Leo_Diadem Name: Leo Diadem Type: Armor Buy: 20 Weight: 300 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 566 Script: | bonus bDex,2; bonus2 bSubEle,Ele_Fire,5; if (getrefine()>6) { bonus bFlee,10; bonus bAspdRate,3; autobonus "{ bonus bSplashRange,1; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } - Id: 5590 AegisName: K_Poring_Cake_Cap Name: Poring Cake Hat Type: Armor Buy: 20 Weight: 200 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 417 Script: | bonus bLuk,3; bonus bMdef,5; bonus bMaxHP,BaseLevel*2; bonus bMaxSP,50; - Id: 5591 AegisName: Desert_Prince Name: Desert Prince Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 567 Script: | bonus bUnbreakableHelm; - 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: 1 View: 568 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker)) bonus bAspd,1; else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) { bonus bMatk,5; bonus bHealPower,2; } else if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger) bonus bLongAtkRate,2; else if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) { bonus bMaxHP,120; bonus bMaxSP,60; } - Id: 5593 AegisName: K_Rabbit_Bonnet Name: Rabbit Bonnet Type: Armor Buy: 20 Weight: 200 Defense: 10 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 549 Trade: NoDrop: true Script: | bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus bDelayrate,-3; if (getrefine()>6) { bonus2 bSubEle,Ele_All,5; } - 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 Trade: NoDrop: true Script: | bonus2 bHPRegenRate,1,10000; bonus bMaxHP,100; - Id: 5595 AegisName: Eye_Of_Juno Name: Eye Of Juno Type: Armor Buy: 20 Weight: 400 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 570 Script: | bonus bMdef,2; .@i = JobLevel/14; if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) { bonus bInt,2; bonus bDex,2; bonus2 bSubEle,Ele_Neutral,.@i; bonus2 bSubEle,Ele_Water,.@i; } else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) { bonus bAgi,2; bonus bVit,2; bonus2 bSubEle,Ele_Neutral,.@i; bonus2 bSubEle,Ele_Water,.@i; } - Id: 5596 AegisName: 4Leaf_Clover_In_Mouth Name: Four Leaf Clover 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 bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bExpAddRace,RC_All,2; bonus bAllStats,1; } - 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 bBaseAtk,5; bonus bMatk,5; bonus bMdef,2; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,5; bonus bAllStats,1; } - Id: 5598 AegisName: Virgo_Crown Name: Virgo Crown Type: Armor Buy: 20 Weight: 300 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 573 Script: | bonus bDex,2; bonus bAspdRate,1; if (getrefine()>6) { bonus2 bSubEle,Ele_Earth,5; autobonus "{ bonus bDex,20; }",30,6000,BF_MAGIC,"{ specialeffect2 EF_WIND; }"; autobonus "{ bonus bDex,20; }",30,6000,BF_NORMAL,"{ specialeffect2 EF_WIND; }"; } - Id: 5599 AegisName: Virgo_Diadem Name: Virgo Diadem Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 574 Script: | bonus bAspdRate,3; bonus2 bSubEle,Ele_Earth,5; if (getrefine()>6) bonus3 bAutoSpell,"MO_BALKYOUNG",1,20; - 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: 5601 AegisName: Br_Beret Name: Brazil Beret Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 576 Script: | bonus bAllStats,3; bonus bMdef,1; - Id: 5602 AegisName: Jaguar_Hat_J Name: Jaguar Hat J Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 530 Script: | bonus2 bAddEle,Ele_Fire,5; - 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; bonus bAspdRate,10; bonus bFixedCast,-500; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus bUnbreakableHelm; - 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; bonus bAspdRate,7; bonus bFixedCast,-300; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bMagicAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus bUnbreakableHelm; - 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; bonus bAspdRate,5; bonus bFixedCast,-100; bonus2 bAddRace,RC_DemiHuman,3; bonus2 bMagicAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; bonus2 bMagicAddRace,RC_Player_Human,3; bonus bUnbreakableHelm; - Id: 5606 AegisName: Campume_Hat Name: Champune Hat Type: Armor Buy: 500 Weight: 1200 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 3 Refineable: true View: 580 Script: | bonus bAllStats,1; - Id: 5607 AegisName: Lyria_Doll_Hat Name: Lyria Doll Hat Type: Armor Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 581 Script: | bonus bMaxHP,500; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; - Id: 5608 AegisName: Dorothy_Doll_Hat Name: Dorothy Doll Hat Type: Armor Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 582 Script: | bonus bMaxSP,80; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; - Id: 5609 AegisName: Chung_Hairband Name: Chung Hairband Type: Armor Weight: 500 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 583 Trade: NoDrop: true Script: | bonus bLuk,3; bonus bMdef,4; bonus3 bAutoSpellWhenHit,"MC_MAMMONITE",5,5; - Id: 5610 AegisName: Ice_Wing_Ear Name: Ice Wing Ear Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 584 Script: | bonus bLuk,1; bonus3 bAutoSpellWhenHit,"MG_COLDBOLT",5,5; - Id: 5611 AegisName: Turtle_Hat Name: Turtle Hat Type: Armor Weight: 300 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 585 Script: | bonus bAgi,1; bonus3 bAutoSpellWhenHit,"AL_DECAGI",3,5; - Id: 5612 AegisName: F_Blue_Drooping_Kitty Name: F Blue Drooping Kitty 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 Script: | bonus bMdef,15; - Id: 5613 AegisName: F_Flying_Angel Name: F Flying Angel 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; - Id: 5614 AegisName: F_Smoking_Pipe_ Name: F Smoking Pipe Type: Armor Buy: 20 Weight: 100 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 View: 55 Script: | bonus bVit,1; bonus2 bSubRace,RC_Insect,5; - Id: 5615 AegisName: F_Pair_Of_Red_Ribbon_ Name: F Pair Of Red Ribbon Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 45 View: 169 Script: | bonus bFlee,5; - Id: 5616 AegisName: F_Fish_On_Head_ Name: F Fish On Head Type: Armor Buy: 20 Weight: 500 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 149 Script: | bonus bDex,1; bonus bAgi,1; bonus2 bAddRace,RC_Fish,10; - Id: 5617 AegisName: F_Hibiscus Name: F Hibiscus Type: Armor Buy: 20 Weight: 200 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 210 Script: | bonus bInt,1; bonus bDex,1; bonus bMdef,5; - Id: 5618 AegisName: F_Cat_Hat Name: F Cat Hat 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: 5619 AegisName: F_Bunny_Band_ Name: F Bunny Band Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 15 Script: | bonus bInt,2; - Id: 5620 AegisName: F_Magestic_Goat_TW Name: F Magestic Goat TW 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,2; - Id: 5621 AegisName: F_Sheep_Hat Name: F 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 Script: | bonus bShortWeaponDamageReturn,5; - Id: 5622 AegisName: F_Mini_Propeller_ Name: F Mini Propeller Type: Armor Buy: 20 Weight: 200 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 270 Script: | bonus bDex,1; bonus bAgi,2; bonus bFlee,10; bonus bVariableCastrate,-getrefine(); - Id: 5623 AegisName: F_Alice_Doll Name: F 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,1; - Id: 5624 AegisName: F_Red_Glasses Name: F Red Glasses Type: Armor Buy: 20 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 316 Script: | bonus bInt,1; - Id: 5625 AegisName: F_Chick_Hat Name: F Chick Hat Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 311 Script: | bonus bLuk,2; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,3; skill "TF_DOUBLE",2; bonus bMaxHP,50; bonus bMaxSP,50; - Id: 5626 AegisName: F_White_Deviruchi_Cap Name: F White Deviruchi Cap 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 Script: | bonus bStr,1; bonus bInt,1; - Id: 5627 AegisName: F_Vane_Hairpin Name: F Vane Hairpin Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 313 Script: | bonus bAgi,2; - Id: 5628 AegisName: F_Pecopeco_Hairband Name: F Pecopeco Hairband Type: Armor Buy: 20 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 View: 314 Script: | bonus bSpeedRate,25; bonus bAspdRate,10; bonus bVariableCastrate,-25; - Id: 5629 AegisName: F_Vacation_Hat Name: F Vacation Hat Type: Armor Buy: 20 Weight: 200 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 315 Script: | bonus bVit,1; - Id: 5630 AegisName: F_Charming_Ribbon Name: F 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_Demon,5; bonus2 bSubRace,RC_Undead,5; - Id: 5631 AegisName: F_Water_Lily_Crown Name: F Water Lily Crown Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 312 Script: | bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; - Id: 5632 AegisName: F_Vanilmirth_Hat Name: F Vanilmirth Hat Type: Armor Buy: 20 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 317 Script: | bonus bMdef,5; bonus4 bAutoSpell,"MG_FIREBOLT",1,50,1; bonus4 bAutoSpell,"MG_COLDBOLT",1,50,1; bonus4 bAutoSpell,"MG_LIGHTNINGBOLT",1,50,1; - Id: 5633 AegisName: F_Drooping_Bunny_ Name: F 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: 5634 AegisName: F_Kettle_Hat Name: F Kettle Hat Type: Armor Buy: 20 Weight: 600 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 318 Script: | bonus4 bAutoSpell,"SA_DELUGE",2,30,0; bonus4 bAutoSpell,"WZ_WATERBALL",3,30,1; - Id: 5635 AegisName: F_Dragon_Skull Name: F Dragon Skull Type: Armor Buy: 20 Weight: 800 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 319 Script: | bonus2 bSubRace,RC_Dragon,5; - Id: 5636 AegisName: F_Ramen_Hat Name: F Ramen Hat Type: Armor Buy: 20 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 View: 320 Script: | bonus bDex,4; bonus3 bAutoSpellWhenHit,"AL_DECAGI",1,30; - Id: 5637 AegisName: F_Pink_Fur_Hat Name: F Pink Fur Hat Type: Armor Buy: 20 Weight: 350 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 281 Script: | bonus bLuk,1; - Id: 5638 AegisName: F_Puppy_Hat Name: F Puppy Hat Type: Armor Buy: 20 Weight: 500 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 234 Script: | bonus bAgi,1; if (readparam(bAgi)>77) { bonus3 bAutoSpell,"PR_GLORIA",3,25; } else { bonus3 bAutoSpell,"PR_GLORIA",1,25; } - Id: 5639 AegisName: F_Magic_Eyes Name: F 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 bVariableCastrate,-10; bonus bUseSPrate,20; - Id: 5640 AegisName: F_Jumping_Poring Name: F Jumping Poring Type: Armor Weight: 300 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 View: 349 Script: | bonus bLuk,1; - Id: 5641 AegisName: F_Robo_Eye Name: F Robo Eye Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 345 Script: | bonus bDex,1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; - Id: 5642 AegisName: F_Yellow_Wizardry_Hat Name: F Yellow Wizardry 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 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5643 AegisName: F_Crescent_Helm Name: F 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: 5644 AegisName: F_Tiger_Mask Name: F Tiger Mask Type: Armor Buy: 20 Weight: 400 Defense: 2 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 181 Script: | bonus bStr,3; bonus bMaxHP,100; - Id: 5645 AegisName: F_Fantastic_Wig Name: F 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 bDef,4; bonus bSpeedRate,25; skill "TF_HIDING",1; - Id: 5646 AegisName: F_Whisper_Mask Name: F Whisper Mask Type: Armor Buy: 20 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 View: 321 Script: | bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,10; - Id: 5647 AegisName: F_Bunny_Band_C Name: F Bunny Band C Type: Armor Buy: 1 Defense: 9 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 15 Script: | bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; - Id: 5648 AegisName: F_Centimental_Flower_C Name: F Centimental Flower C Type: Armor Buy: 1 Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 56 Script: | bonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,30,0; - Id: 5649 AegisName: F_Apple_Of_Archer_C Name: F Apple Of Archer C Type: Armor Buy: 1 Defense: 7 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 72 Script: | bonus bDex,4; - Id: 5650 AegisName: F_Elven_Ears_C Name: F Elven Ears C Type: Armor Buy: 1 Defense: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 73 Script: | bonus bInt,1; - Id: 5651 AegisName: F_Brooch_C Name: F Brooch C Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAgi,4; - Id: 5652 AegisName: F_Magestic_Goat_C Name: F Magestic Goat C Type: Armor Buy: 2 Defense: 5 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 41 Script: | bonus bStr,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: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 587 Trade: NoDrop: true Script: | .@r = getrefine(); bonus bMatkRate,2; if (.@r>8) { bonus bMatkRate,5; bonus bHealPower,5; } else if (.@r>6) { bonus bHealPower,5; } bonus bMdef,5; bonus bInt,1; bonus bDex,1; - Id: 5655 AegisName: Dark_Snake_Lord_Hat_J Name: Evil Snake Lord Hat Type: Armor Buy: 20 Weight: 500 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 372 Script: | bonus bInt,2; bonus bAgi,2; bonus bDex,-2; autobonus "{ bonus bVariableCastrate,-50; bonus bFlee,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; - Id: 5656 AegisName: Scooter_Hat_J Name: Scooter Helmet Type: Armor Buy: 20 Weight: 1000 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 588 Script: | bonus bUnbreakableHelm; - Id: 5657 AegisName: Antique_Pipe_J Name: Captain's Pipe Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 View: 383 Script: | bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; - Id: 5658 AegisName: Imp_Hat Name: Imp Hat Type: Armor Buy: 20 Weight: 400 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 589 Trade: NoDrop: true 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 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 591 Trade: NoDrop: true Script: | if (getrefine()>8) { bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus bAgi,2; } else if (getrefine()>6) { bonus bAgi,2; } bonus bAgi,2; - Id: 5661 AegisName: Red_Pirate_Bandana Name: Red Pirate Bandana Type: Armor Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 592 Script: | bonus bStr,1; bonus bDex,1; bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus3 bAutoSpell,"MO_EXTREMITYFIST",1,3; - Id: 5662 AegisName: Libra_Crown Name: Libra Crown Type: Armor Buy: 10 Weight: 300 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 593 Script: | bonus bDex,3; bonus2 bSubEle,Ele_Wind,7; if (getrefine()>=7) { bonus bMatkRate,3; } if (getrefine()>=9) { bonus bMatkRate,5; bonus3 bAutoSpellWhenHit,"WZ_FROSTNOVA",5,20; } - Id: 5663 AegisName: Libra_Diadem Name: Libra Diadem Type: Armor Buy: 10 Weight: 300 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 594 Script: | bonus bBaseAtk,7; if (getrefine()>=7) { bonus3 bAutoSpell,"TK_SEVENWIND",2,5; } if (getrefine()>=9) { bonus bFlee,5; bonus2 bAddClass,Class_All,3; } - 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; - Id: 5665 AegisName: Shaman_Hat Name: Shaman Hat Type: Armor Buy: 20 Weight: 400 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 596 Trade: NoDrop: true Script: | .@r = getrefine(); bonus bMdef,5; if (BaseClass == Job_Mage) bonus bVariableCastrate,-3; if (BaseClass == Job_Soul_Linker) bonus5 bAutoSpell,"SL_STUN",5,10,BF_MAGIC,1; if (.@r>=7) bonus bInt,2; if (.@r>=10) bonus bInt,.@r-10; - 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 Trade: NoDrop: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if (.@r>=9) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; } if (.@r>=12) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } bonus bInt,1; bonus bDex,1; bonus bLuk,1; - Id: 5667 AegisName: Skull_Hood Name: Skull Hood Type: Armor Buy: 20 Weight: 700 Defense: 10 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 598 Trade: NoDrop: true Script: | bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Undead,10; if (getrefine()>=7) autobonus "{ bonus bCritical,30; bonus bHit,10; }",10,10000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - 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; bonus2 bAddMonsterDropItem,12192,100; - Id: 5669 AegisName: Poring_Party_Hat_J Name: Poring Party Hat J Type: Armor Buy: 20 Weight: 300 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 340 - Id: 5670 AegisName: Aniv_Star_Hat Name: Aniv Star Hat Type: Armor Buy: 20 Weight: 300 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 599 - 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 Refineable: true Script: | bonus bSPGainValue,2; bonus bMagicSPGainValue,2; if (getrefine()>8) { bonus4 bAutoSpellWhenHit,"NPC_CRITICALWOUND",3,5,1; bonus4 bAutoSpell,"NPC_CRITICALWOUND",3,5,1; bonus4 bAutoSpell,"NPC_WIDEBLEEDING",2,5,0; } else { bonus4 bAutoSpellWhenHit,"NPC_CRITICALWOUND",2,2,1; } - Id: 5672 AegisName: Southern_Cross Name: Southern Cross Type: Armor Buy: 20 Weight: 600 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 601 Script: | bonus bInt,1; - Id: 5673 AegisName: Home_Cherry_Blossom Name: Home Cherry Blossom Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 602 Script: | bonus bNoCastCancel; bonus bVariableCastrate,35; - Id: 5674 AegisName: Pig_Moneybox Name: Pig Moneybox Type: Armor Buy: 20 Weight: 1000 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 603 Script: | skill "MC_OVERCHARGE",2; - Id: 5675 AegisName: Poring_Letter Name: Poring Letter Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 604 Script: | bonus2 bAddMonsterDropItem,619,10; bonus bUnbreakableHelm; - Id: 5676 AegisName: Scorpio_Crown Name: Scorpio Crown Type: Armor Buy: 20 Weight: 300 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 605 Script: | bonus bAspdRate,3; bonus2 bSubEle,Ele_Water,5; .@r = getrefine(); bonus bBaseAtk,5; if (.@r>6) { bonus3 bAutoSpell,"TK_SEVENWIND",3,20; } if (.@r>7) { bonus bAspdRate,2; } if (.@r>8) { bonus3 bAutoSpell,"WZ_FROSTNOVA",5,10; } if (.@r>9) { bonus bAspdRate,2; bonus bBaseAtk,5; } - Id: 5677 AegisName: Scorpio_Diadem Name: Scorpio Diadem Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 606 Script: | bonus bDex,2; if (getrefine()>6) { bonus bDex,1; bonus bBaseAtk,5; } - Id: 5678 AegisName: Notation_Hairband Name: Notation Hairband Type: Armor Buy: 200 Weight: 100 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 607 Script: | bonus bUnbreakableHelm; - Id: 5679 AegisName: Engineer_Cap Name: Engineer Cap Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 608 Script: | bonus2 bAddRace,RC_Formless,10; - Id: 5680 AegisName: Hawkeyes Name: Hawkeyes Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 609 Script: | bonus bHit,10; bonus bUnbreakableHelm; - 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 Trade: NoDrop: true Script: | bonus bInt,1; 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: 5688 AegisName: 2009Love_Daddy Name: 2009 Love Dad Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 611 Script: | bonus bVit,2; - Id: 5689 AegisName: Queen_Ant_Diadem Name: Queen Ant Diadem Type: Armor Buy: 20 Weight: 300 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 75 Refineable: true View: 612 Script: | bonus3 bAutoSpellWhenHit,"MG_SIGHT",1,5; bonus2 bSubRace,RC_Insect,5; - Id: 5690 AegisName: Red_Wing_Hat Name: Red Wing Hat Type: Armor Buy: 20 Weight: 600 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 613 Script: | bonus bHPrecovRate,20; bonus bSPrecovRate,20; - Id: 5691 AegisName: Catain_Bandanna Name: Sailor's Bandana Type: Armor Buy: 20 Weight: 10 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 542 Script: | bonus bDex,1; bonus2 bSubEle,Ele_Poison,20; bonus2 bResEff,Eff_Poison,2000; bonus bUnbreakableHelm; - 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; bonus2 bResEff,Eff_Curse,2000; bonus bUnbreakableHelm; - Id: 5693 AegisName: No_Fear_Underware Name: No Fear Underwear Type: Armor Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 View: 30 Script: | bonus bStr,1; bonus bInt,1; bonus bDex,1; bonus bMaxHP,700; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; - Id: 5694 AegisName: No_Fear_P_Headgear Name: No Fear P Headgear Type: Armor Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 View: 614 Script: | bonus bVit,1; bonus bMaxHP,100; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; - Id: 5695 AegisName: E_Blue_Drooping_Kitty Name: E Blue Drooping Kitty Type: Armor Buy: 250000 Weight: 500 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 277 Script: | bonus bMdef,15; - Id: 5696 AegisName: E_Flying_Angel Name: E Flying Angel 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; - Id: 5697 AegisName: E_Smoking_Pipe_ Name: E Smoking Pipe Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 55 Script: | bonus bVit,1; - Id: 5698 AegisName: E_Pair_OE_Red_Ribbon_ Name: E Pair OE Red Ribbon Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 45 View: 169 - Id: 5699 AegisName: E_Fish_On_Head_ Name: E Fish On Head Type: Armor Buy: 20 Weight: 500 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 149 Script: | bonus bDex,1; bonus bAgi,1; - Id: 5700 AegisName: E_Hibiscus Name: E Hibiscus Type: Armor Buy: 20 Weight: 200 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 210 Script: | bonus bInt,1; bonus bDex,1; bonus bMdef,5; - Id: 5701 AegisName: E_Cat_Hat Name: E Cat Hat 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; - Id: 5702 AegisName: E_Bunny_Band_ Name: E Bunny Band Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 15 Script: | bonus bInt,2; - Id: 5703 AegisName: E_Magestic_Goat_TW Name: E Magestic Goat TW 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,2; - Id: 5704 AegisName: E_Sheep_Hat Name: E 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 - Id: 5705 AegisName: E_Mini_Propeller_ Name: E Mini Propeller Type: Armor Buy: 20 Weight: 200 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 270 Script: | bonus bDex,1; bonus bAgi,2; - Id: 5706 AegisName: E_Alice_Doll Name: E 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; - Id: 5707 AegisName: E_Red_Glasses Name: E Red Glasses Type: Armor Buy: 20 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 316 Script: | bonus bInt,1; - Id: 5708 AegisName: E_Chick_Hat Name: E Chick Hat Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 311 Script: | bonus bLuk,2; - Id: 5709 AegisName: E_White_Deviruchi_Cap Name: E White Deviruchi Cap 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 Script: | bonus bStr,1; bonus bInt,1; - Id: 5710 AegisName: E_Vane_Hairpin Name: E Vane Hairpin Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 313 Script: | bonus bAgi,2; - Id: 5711 AegisName: E_Pecopeco_Hairband Name: E Pecopeco Hairband Type: Armor Buy: 20 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 View: 314 - Id: 5712 AegisName: E_Vacation_Hat Name: E Vacation Hat Type: Armor Buy: 20 Weight: 200 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 315 Script: | bonus bVit,1; - Id: 5713 AegisName: E_Charming_Ribbon Name: E Charming Ribbon Type: Armor Buy: 20 Weight: 400 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 211 - Id: 5714 AegisName: E_Water_Lily_Crown Name: E Water Lily Crown Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 312 Script: | bonus bDex,1; bonus bAgi,1; bonus bMdef,3; - Id: 5715 AegisName: E_Vanilmirth_Hat Name: E Vanilmirth Hat Type: Armor Buy: 20 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 317 Script: | bonus bMdef,5; - Id: 5716 AegisName: E_Drooping_Bunny_ Name: E Drooping Bunny Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 249 Script: | bonus bDex,1; - Id: 5717 AegisName: E_Kettle_Hat Name: E Kettle Hat Type: Armor Buy: 20 Weight: 600 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 318 - Id: 5718 AegisName: E_Dragon_Skull Name: E Dragon Skull Type: Armor Buy: 20 Weight: 800 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 319 - Id: 5719 AegisName: E_Ramen_Hat Name: E Ramen Hat Type: Armor Buy: 20 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 View: 320 Script: | bonus bDex,4; - Id: 5720 AegisName: E_Pink_Fur_Hat Name: E Pink Fur Hat Type: Armor Buy: 20 Weight: 350 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 281 Script: | bonus bLuk,1; - Id: 5721 AegisName: E_Puppy_Hat Name: E Puppy Hat Type: Armor Buy: 20 Weight: 500 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 234 Script: | bonus bAgi,1; - Id: 5722 AegisName: E_Magic_Eyes Name: E 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; - Id: 5723 AegisName: E_Jumping_Poring Name: E Jumping Poring Type: Armor Weight: 300 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 View: 349 Script: | bonus bLuk,1; - Id: 5724 AegisName: E_Robo_Eye Name: E Robo Eye Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 345 Script: | bonus bDex,1; - Id: 5725 AegisName: E_Yellow_Wizardry_Hat Name: E Yellow Wizardry 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 Script: | bonus bInt,2; - Id: 5726 AegisName: E_Crescent_Helm Name: E 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; - Id: 5727 AegisName: E_Tiger_Mask Name: E Tiger Mask Type: Armor Buy: 20 Weight: 400 Defense: 2 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 181 Script: | bonus bStr,3; - Id: 5728 AegisName: E_Fantastic_Wig Name: E Fantastic Wig Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 308 - Id: 5729 AegisName: E_Bunny_Band_C Name: E Bunny Band C Type: Armor Buy: 1 Defense: 9 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 15 Script: | bonus bMdef,5; - Id: 5730 AegisName: E_Centimental_Flower_C Name: E Centimental Flower C Type: Armor Buy: 1 Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 56 - Id: 5731 AegisName: E_Apple_OE_Archer_C Name: E Apple OE Archer C Type: Armor Buy: 1 Defense: 7 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 72 Script: | bonus bDex,4; - Id: 5732 AegisName: E_Elven_Ears_C Name: E Elven Ears C Type: Armor Buy: 1 Defense: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 73 Script: | bonus bInt,1; - Id: 5733 AegisName: E_Brooch_C Name: E Brooch C Type: Armor Buy: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAgi,4; - Id: 5734 AegisName: E_Magestic_Goat_C Name: E Magestic Goat C Type: Armor Buy: 2 Defense: 5 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 41 Script: | bonus bStr,1; - Id: 5735 AegisName: E_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: 5736 AegisName: EF_Whisper_Mask Name: Whisper Mask Type: Armor Buy: 20 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 View: 321 Script: | bonus bAgi,3; bonus2 bSubEle,Ele_Ghost,-10; - Id: 5737 AegisName: Cactus_Hat Name: Cactus Hat Type: Armor Buy: 20 Weight: 300 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 615 Script: | bonus3 bAddMonsterDropItem,952,RC_Plant,500; - 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 Script: | bonus bStr,1; bonus bInt,1; bonus bMdef,3; bonus2 bSubEle,Ele_Water,7; bonus2 bAddMonsterDropItem,12354,100; bonus2 bAddMonsterDropItem,530,300; bonus5 bAutoSpellWhenHit,"BA_FROSTJOKER",(getrefine()>7?5:1),20,BF_WEAPON|BF_MAGIC,0; - Id: 5739 AegisName: Sagittarius_Crown Name: Sagittarius Crown Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 617 Script: | bonus bDex,2; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bAspdRate,2; } if (.@r>7) { bonus bAgi,2; } if (.@r>8) { bonus bLongAtkRate,5; } if (.@r>9) { autobonus "{ bonus bAgi,10; bonus bDex,10; }",3,10000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; } - Id: 5740 AegisName: Sagittarius_Diadem Name: Sagittarius Diadem Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 618 Script: | bonus bDex,2; bonus bMdef,3; bonus2 bSubEle,Ele_Fire,7; .@r = getrefine(); if (.@r>6) { bonus bVariableCastrate,-3; } if (.@r>7) { bonus5 bAutoSpell,"WZ_SIGHTRASHER",1,5,BF_MAGIC,0; } if (.@r>8) { bonus bVariableCastrate,-2; } if (.@r>9) { bonus bMatkRate,4; } - 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 Script: | bonus2 bAddItemGroupHealRate,IG_Potion,10; bonus bHealPower2,10; - 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: | bonus2 bAddMonsterDropItem,538,100; bonus2 bAddMonsterDropItem,539,100; bonus2 bAddItemHealRate,538,100; bonus2 bAddItemHealRate,539,100; - Id: 5743 AegisName: Orange_Stem_Hat Name: Orange Stem Hat Type: Armor Buy: 20 Weight: 100 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 620 Script: | bonus bLuk,3; - Id: 5744 AegisName: Capricon_Crown Name: Capricorn Crown Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 621 Script: | bonus bVit,2; bonus bDex,2; if (getrefine()>6) { bonus3 bAutoSpell,"TK_SEVENWIND",1,20; } - Id: 5745 AegisName: Capricon_Diadem Name: Capricorn Diadem Type: Armor Buy: 20 Weight: 300 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 622 Script: | bonus bDex,2; bonus bMdef,5; bonus2 bSubEle,Ele_Earth,5; .@r = getrefine(); if (.@r>6) { bonus bInt,2; } if (.@r>7) { bonus bVariableCastrate,-3; } if (.@r>8) { bonus bHealPower2,4; } if (.@r>9) { bonus5 bAutoSpellWhenHit,"BS_HAMMERFALL",5,30,BF_WEAPON|BF_MAGIC,1; } - Id: 5746 AegisName: Rune_Circlet Name: Rune Circlet Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 623 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; bonus bInt,1; bonus bMdef,5; if (readparam(bStr)>=120) { bonus bBaseAtk,10; bonus bMatk,5; } - Id: 5747 AegisName: Mitra Name: Mitra Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 624 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,1; bonus bInt,1; bonus bMdef,5; bonus bHealPower,5; if (readparam(bInt)>=120) { bonus bMatk,10; } - Id: 5748 AegisName: Sniper_Goggle Name: Sniper Goggles Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 625 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,1; bonus bDex,1; bonus bMdef,5; if (readparam(bAgi)>=120) { bonus bLongAtkRate,4; bonus bAspd,1; } - Id: 5749 AegisName: Driver_Band Name: Driver Band Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 626 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; bonus bDex,1; bonus bMdef,5; if (readparam(bStr)>=120) { bonus bBaseAtk,10; bonus bCritical,3; } - Id: 5750 AegisName: Shadow_Handicraft Name: Shadow Crown Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 627 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,1; bonus bInt,1; bonus bMdef,5; if (readparam(bAgi)>=120) { bonus bBaseAtk,10; bonus bFlee,3; } - Id: 5751 AegisName: Minstrel_Song_Hat Name: Minstrel Song Hat Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 628 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"MI_RUSH_WINDMILL",10; bonus2 bSkillUseSP,"MI_ECHOSONG",10; - Id: 5752 AegisName: Midas_Whisper Name: Midas Whispers Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 629 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; bonus bDex,1; bonus bMdef,5; if (readparam(bStr)>=120) { bonus bBaseAtk,5; bonus bAspd,1; } - Id: 5753 AegisName: Magic_Stone_Hat Name: Magic Stone Hat Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 630 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; bonus bDex,1; bonus bMdef,5; if (readparam(bDex)>=120) { bonus bMatk,10; bonus bVariableCastrate,-2; } - Id: 5754 AegisName: Blazing_Soul Name: Burning Spirit Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 631 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; bonus bVit,1; bonus bMdef,5; if (readparam(bStr)>=120) { bonus bBaseAtk,10; bonus bHit,3; } - Id: 5755 AegisName: Silent_Executer Name: Silent Enforcer Type: Armor Buy: 20 Weight: 100 Defense: 6 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 632 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,1; bonus bMdef,5; if (readparam(bAgi)>=120) { bonus bBaseAtk,10; bonus bFlee2,5; } - Id: 5756 AegisName: Wind_Whisper Name: Wispers of Wind Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 633 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; bonus bDex,1; bonus bMdef,5; bonus bHealPower,5; if (readparam(bInt)>=120) { bonus bMatk,10; bonus bFlee,3; } - Id: 5757 AegisName: Schmidt_Helm Name: Reissue Schmitz Helm Type: Armor Buy: 20 Weight: 100 Defense: 17 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 634 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,2; bonus bInt,1; bonus bMdef,5; if (readparam(bInt)>=120) { bonus bMatk,10; bonus bDef,5; } - Id: 5758 AegisName: Dying_Swan Name: Resting Swan Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 635 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; bonus bLuk,1; bonus bMdef,5; bonus bLongAtkRate,5; bonus2 bSkillUseSP,"WA_SWING_DANCE",10; bonus2 bSkillUseSP,"WA_SYMPHONY_OF_LOVER",10; - Id: 5759 AegisName: Noah_Hat Name: Noah Hat Type: Armor Buy: 20 Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 636 Script: | bonus bMdef,3; - Id: 5760 AegisName: Driver_Band_ Name: Driver Band Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 637 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; bonus bDex,1; bonus bMdef,5; if (readparam(bStr)>=120) { bonus bBaseAtk,10; bonus bCritical,3; } - Id: 5761 AegisName: Sloth_Hat Name: Sloth Hat Type: Armor Buy: 20 Weight: 800 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 638 Script: | bonus bAgi,2; bonus3 bAutoSpell,"AS_SONICBLOW",5,50; - Id: 5762 AegisName: Duneyrr_Helm Name: Duneyrr Helm Type: Armor Buy: 20 Weight: 100 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 639 Script: | bonus bAllStats,1; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Brute,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 5763 AegisName: Red_Bunny_Band Name: Red Bunny Band Type: Armor Weight: 200 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 640 Script: | bonus bAgi,2; bonus bMdef,3; - Id: 5764 AegisName: Love_Rabbit_Hood Name: Love Rabbit Hood Type: Armor Buy: 20 Weight: 300 Defense: 1 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 549 Script: | bonus3 bAutoSpell,"PR_GLORIA",3,((readparam(bAgi)>=80)?30:10); - Id: 5765 AegisName: Black_Tail_Ribbon Name: Black Tail Ribbon Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 642 Script: | bonus bMdef,5; bonus bLongAtkDef,10; bonus2 bSubEle,Ele_Neutral,5; - Id: 5766 AegisName: Amistr_Cap Name: Amistr Cap Type: Armor Buy: 20 Weight: 500 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 643 Trade: NoDrop: true Script: | bonus bVit,1+(getrefine()/2); bonus5 bAutoSpell,"KN_PIERCE",5,10,BF_WEAPON,1; - Id: 5767 AegisName: Samurai_Mask Name: Samurai Mask Type: Armor Buy: 20 Weight: 300 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 644 Trade: NoDrop: true Script: | bonus2 bAddClass,Class_All,1; - Id: 5768 AegisName: Sakura_Coronet Name: Sakura Coronet Type: Armor Buy: 20 Weight: 800 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 645 Script: | bonus bMdef,3; bonus bMaxSP,25; - Id: 5769 AegisName: Gold_Angel_Sculpture Name: Gold Angel Sculpture Type: Armor Buy: 100 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 646 Script: | skill "RG_GRAFFITI",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: 649 Script: | autobonus "{}",3,180000,BF_WEAPON,"{ sc_start SC_WINDWEAPON,180000,1; 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: 650 Script: | bonus bDex,1; bonus bMdef,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; skill "PR_MAGNIFICAT",1; - Id: 5772 AegisName: Red_Navy_Hat Name: Red Navy Hat Type: Armor Buy: 3000 Weight: 500 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true View: 651 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; - Id: 5773 AegisName: Navy_Beret Name: Navy Beret Type: Armor Buy: 3000 Weight: 500 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true View: 652 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; - Id: 5774 AegisName: Red_Pirate_Hat Name: Red Pirate Hat Type: Armor Buy: 3000 Weight: 500 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true View: 496 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; - 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 Script: | bonus bMaxHP,50; - Id: 5776 AegisName: Blazing_Sun Name: Blazing Sun Type: Armor Weight: 500 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 654 Script: | bonus2 bVariableCastrate,"MG_FIREBOLT",-5; bonus2 bSkillAtk,"MG_FIREBOLT",5; bonus2 bVariableCastrate,"MG_FIREBALL",-5; bonus2 bSkillAtk,"MG_FIREBALL",5; bonus2 bSkillAtk,"MG_FIREWALL",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus bUseSPrate,5; - Id: 5777 AegisName: Remover_Hat Name: Remover Hat Type: Armor Buy: 20 Weight: 800 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 655 Script: | bonus bMdef,1; bonus3 bAddMonsterDropItem,713,RC_Formless,200; bonus3 bAddMonsterDropItem,971,RC_Formless,30; bonus3 bAddMonsterDropItem,972,RC_Formless,10; - Id: 5778 AegisName: Blue_Arara_Hat Name: Blue Arara Hat Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 656 Script: | bonus bStr,2; autobonus "{ bonus bAspdRate,5; }",10,10000,0,"{ specialeffect2 EF_ENHANCE; }"; - Id: 5779 AegisName: Drooping_Boto Name: Drooping Boto Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 657 Script: | bonus bInt,2; autobonus "{ bonus bMatkRate,3; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; - Id: 5780 AegisName: Tendrilion_Hat Name: Tendrilion Hat Type: Armor Buy: 20 Weight: 100 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 658 Script: | skill "WZ_EARTHSPIKE",3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; - Id: 5781 AegisName: Persika Name: Persika Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 659 Script: | bonus bFlee,1; bonus bMaxSP,20; - Id: 5782 AegisName: Hoplite_Helmet Name: Legionaire Helm Type: Armor Buy: 20 Weight: 700 Defense: 4 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 660 Script: | bonus bMaxHPrate,3; - Id: 5783 AegisName: YellowBunny_Hairband Name: YellowBunny Hairband Type: Armor Buy: 20 Weight: 200 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 662 Script: | bonus bStr,1; bonus bInt,1; bonus bDex,2; - Id: 5784 AegisName: PinkBunny_Hairband Name: PinkBunny Hairband Type: Armor Buy: 20 Weight: 200 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 663 Script: | bonus bStr,1; bonus bInt,2; bonus bDex,1; - Id: 5785 AegisName: Green_Bunny_Hairband Name: Green Bunny Hairband Type: Armor Buy: 20 Weight: 200 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 664 Script: | bonus bStr,2; bonus bInt,1; bonus bDex,1; - 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; bonus bMaxHP,100; bonus bMaxSP,30; - Id: 5787 AegisName: Tha_Maero_Mask Name: Tha Maero Mask Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 666 Script: | bonus bMdef,2; - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bBaseAtk,3+(BaseLevel/30); } if (BaseClass == Job_Thief) { bonus bFlee,1+(BaseLevel/30); } if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) { bonus bMatk,3+(BaseLevel/30); } if (Class == Job_Novice || Class == Job_SuperNovice || (BaseJob == Job_Taekwon && Class != Job_Soul_Linker)) { bonus bMaxHP,100+(BaseLevel/30)*30; bonus bMaxSP,50+(BaseLevel/30); } - Id: 5789 AegisName: Thanatos_Mal_Mask Name: Thanatos Mal Mask Type: Armor Buy: 20 Weight: 100 Defense: 3 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 667 Script: | bonus bVit,1; - Id: 5790 AegisName: Holy_Mom_Love Name: TM Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true View: 610 Script: | bonus2 bSubRace,RC_Demon,-5; bonus2 bSubRace,RC_Undead,-5; bonus3 bAutoSpell,"AL_BLESSING",1,20; - Id: 5791 AegisName: Tenkaippin_Ramen Name: Tenkaippin Ramen Type: Armor Buy: 20 Weight: 500 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 668 Script: | bonus bInt,-1; bonus bDex,4; - 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 Script: | bonus2 bSubRace,RC_Fish,1; - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; bonus bMdef,2; bonus bHealPower,2; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bInt,2; bonus bStr,1; bonus bDex,1; bonus bAgi,1; bonus bLuk,1; bonus bVit,1; bonus bHealPower2,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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@tmp = BaseLevel/30; if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bBaseAtk,(3+.@tmp); } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseClass == Job_Soul_Linker) { bonus bMatk,(3+.@tmp); } else if (BaseClass == Job_Thief) { bonus bFleeRate,(1+.@tmp); } else if (BaseClass == Job_Novice || BaseClass == Job_SuperNovice || BaseClass == Job_Taekwon || BaseClass == Job_Star_Gladiator || BaseClass == Job_Star_Gladiator2) { bonus bMaxHP,(50+BaseLevel); bonus bMaxSP,(50+.@tmp); } - Id: 5795 AegisName: Red_Dress_Hat Name: Bright Red Dress Hat Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 670 Script: | bonus bMdef,7+(getrefine()/2); - 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 NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,20; - 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 Script: | bonus2 bExpAddRace,RC_All,20; - 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 Script: | bonus2 bExpAddRace,RC_All,30; - 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 Script: | bonus2 bExpAddRace,RC_All,40; - 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: 10 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; bonus3 bAutoSpellWhenHit,"AL_HEAL",(getskilllv("AL_HEAL") == 10?10:5),20; - Id: 5802 AegisName: Upgrade_Elephant_Hat Name: Upgraded Elephant Hat Type: Armor Weight: 500 Defense: 6 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: 4 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: 2 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: 9 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: 2 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: All_Upper: true Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 364 Script: | .@r = getrefine(); bonus2 bResEff,Eff_Stone,2000+(.@r*200); bonus2 bResEff,Eff_Freeze,2000+(.@r*200); bonus2 bResEff,Eff_Stun,2000+(.@r*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 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,5; bonus bSpeedRate,25; - Id: 5810 AegisName: Ph.D_Hat_V Name: Ph.D Hat V Type: Armor Buy: 20 Weight: 100 Defense: 5 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 Locations: Head_Low: true ArmorLevel: 1 View: 25 Script: | bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; - 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 Script: | bonus3 bAddEffWhenHit,Eff_Bleeding,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Silence,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Confusion,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Curse,500,ATF_TARGET|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Blind,500,ATF_TARGET|ATF_SELF; - Id: 5813 AegisName: Red_Ph.D_Hat Name: Red Ph.D Hat Type: Armor Buy: 1000 Weight: 500 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 481 Script: | bonus bInt,1; bonus2 bSPRegenRate,1,10000; bonus bMagicSPGainValue,1; - Id: 5814 AegisName: Ati_Atihan_Hat3 Name: 2011 Pagdayaw Type: Armor Buy: 20 Defense: 2 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 View: 303 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Ghost,10; bonus2 bAddEle,Ele_Ghost,50; bonus2 bAddRace,RC_DemiHuman,50; - 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,Size_All,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: 6 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; bonus bHealPower,10; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; bonus bFlee,10; bonus bAspdRate,1; - 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: 5820 AegisName: Black_Elven_Ears Name: Black Elven Ears Type: Armor Buy: 10 Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 View: 498 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - 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 NoCart: 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_Brute,7; bonus2 bSubRace,RC_Player_Doram,7; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; - Id: 5823 AegisName: Love_Arrow Name: Arrow of Love Type: Armor Buy: 5000 Weight: 100 Defense: 2 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,5; bonus bAgi,5; - 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: 5825 AegisName: Badge_Of_Order_Grace Name: Badge Of Order Grace Type: Armor Defense: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bMdef,1; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bMaxHP,1500; - 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 bAspdRate,3; bonus bMdef,5; bonus bCastrate,-3; - 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: 5829 AegisName: Ordinary_Armor Name: Ordinary Armor Type: Armor Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true - Id: 5830 AegisName: Woe_Sahkkat Name: Woe Sahkkat Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 67 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 5831 AegisName: Woe_Big_Sis_Ribbon Name: Woe Big Sis Ribbon Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 28 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 5832 AegisName: Woe_Vane_Hairpin Name: Woe Vane Hairpin Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 313 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 5833 AegisName: Woe_Picnic_Hat Name: Woe Picnic Hat Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 117 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 5834 AegisName: Woe_Crown Name: Woe Crown Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 45 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 5835 AegisName: Woe_Tiara Name: Woe Tiara Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 19 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 5836 AegisName: Woe_Boys_Cap Name: Woe Boys Cap Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 102 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 5837 AegisName: Woe_Sunglass Name: Woe Sunglass Type: Armor Buy: 20 Weight: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 12 Script: | bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 5838 AegisName: Woe_Fin_Helm Name: Woe Fin Helm Type: Armor Buy: 20 Weight: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 100 Script: | bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 5839 AegisName: Woe_Blush Name: Woe Blush Type: Armor Buy: 20 Weight: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 125 Script: | bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 5840 AegisName: Woe_Elven_Ears Name: Woe Elven Ears Type: Armor Buy: 20 Weight: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 73 Script: | bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 5841 AegisName: Shaman_Hat_ Name: Shaman Hat Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 596 Script: | bonus bLuk,2; bonus3 bSubEle,Ele_Neutral,3,BF_MAGIC; bonus3 bSubEle,Ele_Water,3,BF_MAGIC; bonus3 bSubEle,Ele_Earth,3,BF_MAGIC; bonus3 bSubEle,Ele_Fire,3,BF_MAGIC; bonus3 bSubEle,Ele_Wind,3,BF_MAGIC; bonus3 bSubEle,Ele_Poison,3,BF_MAGIC; bonus3 bSubEle,Ele_Holy,3,BF_MAGIC; bonus3 bSubEle,Ele_Dark,3,BF_MAGIC; bonus3 bSubEle,Ele_Ghost,3,BF_MAGIC; bonus3 bSubEle,Ele_Undead,3,BF_MAGIC; - Id: 5842 AegisName: Loyal_Ring1 Name: Loyal Ring1 Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 5843 AegisName: Loyal_Ring2 Name: Loyal Ring2 Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,2; - Id: 5844 AegisName: Loyal_Ring3 Name: Loyal Ring3 Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,3; - Id: 5845 AegisName: Buzzy_Ball_Board Name: Buzzy Ball Board Type: Armor Buy: 50 Weight: 400 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 641 - 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: 5847 AegisName: Fools_Day_Helmet Name: Fools Day Helmet Type: Armor Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 647 Script: | bonus bInt,5; bonus bVit,-3; - Id: 5848 AegisName: Robin_Eyepatch Name: Robin Eyepatch Type: Armor Buy: 20 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 50 - Id: 5849 AegisName: Doctor_Hairband Name: Doctor Hairband Type: Armor Buy: 20 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 60 - Id: 5850 AegisName: Golden_Savage_Hat Name: Golden Savage Hat Type: Armor Buy: 20 Weight: 500 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 648 - 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: 5852 AegisName: Easter_Egg_Shell Name: Easter Egg Shell Type: Armor Buy: 20 Weight: 500 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 537 Script: | bonus bDef,-7; bonus bMdef,-7; bonus2 bHPRegenRate,(MaxHp/100),10000; .@r = getrefine(); if (.@r>=7) bonus bFlee,2; if (.@r >= 9) bonus2 bSPRegenRate,(MaxSp/100),10000; - Id: 5853 AegisName: 1Aniversary_Crown Name: IdRO Crown Type: Armor Buy: 10 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 165 Script: | bonus bHPrecovRate,7; bonus bSPrecovRate,7; if (getrefine()>7) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bMdef,2; } - Id: 5855 AegisName: Fish_Rod Name: Fishing Rod Type: Armor Buy: 10 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 5856 AegisName: Passion_FB_Hat Name: Worldcup Hat of Passion 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 Script: | bonus bStr,2; bonus bDex,2; autobonus "{ bonus bFlee,-15; bonus2 bAddClass,Class_All,5; }",20,10000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 5857 AegisName: Cool_FB_Hat Name: Worldcup Hat of Fight 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 Script: | bonus bInt,2; bonus bVit,2; autobonus3 "{ bonus bHealPower,20; }",150,5000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }"; - Id: 5858 AegisName: Victory_FB_Hat Name: Worldcup Hat of Victory 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 Script: | bonus bInt,2; bonus bDex,2; autobonus "{ bonus bMatkRate,5; bonus bDef,-30; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_SUFFRAGIUM; }"; - Id: 5859 AegisName: Glory_FB_Hat Name: Worldcup Hat of Honor 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 Script: | bonus bAllStats,1; bonus bAspd,1; bonus bBaseAtk,BaseLevel/7; bonus bMatk,BaseLevel/7; - Id: 5864 AegisName: Shadow_Booster Name: Shadow Booster Type: Armor Buy: 10 Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 873 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspd,1; bonus bDelayrate,-1; - Id: 5865 AegisName: Filir_Wing_Ears Name: Filir's Wing Ears Type: Armor Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 595 Script: | bonus2 bAddRace,RC_Insect,5; bonus2 bSubRace,RC_Insect,5; - Id: 5866 AegisName: Red_Cherry_Blossom Name: Red Cherry Blossom Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 View: 823 Script: | bonus2 bSkillAtk,"WL_CRIMSONROCK",3; bonus2 bSkillAtk,"WZ_METEOR",3; bonus bUseSPrate,5; - Id: 5867 AegisName: Hat_Of_Drowsy_Cat Name: Sleeping Cat Type: Armor Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 838 Script: | bonus2 bSubRace,RC_Insect,5; if (getrefine() >= 6) bonus2 bSubRace,RC_Insect,5; - Id: 5868 AegisName: Bushy_Moustache Name: Bushy Moustache Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 1004 Script: | bonus bUnbreakableHelm; bonus bBaseAtk,10; bonus bMatk,10; - Id: 5869 AegisName: Mimic_Egg_Shell Name: Mimic Egg Shell Type: Armor Buy: 10 Weight: 100 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 999 Script: | bonus2 bAddEffWhenHit,Eff_Stone,600; bonus bSpeedRate,25; - Id: 5870 AegisName: Bunny_Egg_Shell Name: Bunny Egg Shell Type: Armor Buy: 10 Weight: 100 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1000 Script: | bonus bAgi,3; bonus bAspd,1; - Id: 5871 AegisName: Picky_Egg_Shell Name: Picky Egg Shell Type: Armor Buy: 10 Weight: 100 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1001 Script: | bonus bVit,3; bonus bMdef,2; - Id: 5873 AegisName: Helmet_Of_Siegfried Name: Helmet Of Siegfried Type: Armor Buy: 20 Weight: 600 Defense: 7 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1055 Script: | bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",5,5; bonus2 bHPLossRate,600,4000; bonus bUnbreakableHelm; - Id: 5874 AegisName: Circlet_Of_Kriemhild Name: Circlet Of Kriemhild Type: Armor Buy: 20 Weight: 600 Defense: 7 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1056 Script: | bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"PR_KYRIE",9,5; bonus2 bHPLossRate,400,4000; bonus bUnbreakableHelm; - Id: 5875 AegisName: Diadem_Of_Bruenhild Name: Diadem Of Bruenhild Type: Armor Buy: 20 Weight: 600 Defense: 7 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1057 Script: | bonus bAllStats,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAutoSpellWhenHit,"SM_ENDURE",8,5; bonus2 bHPLossRate,300,4000; bonus bUnbreakableHelm; - Id: 5878 AegisName: Miracle_Blue_Rose Name: Miracle Blue Rose Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 View: 1064 Script: | bonus bLuk,1; bonus3 bAutoSpell,"PR_ASPERSIO",1,20; - Id: 5879 AegisName: Poring_Sunglasses_J Name: Poring Sunglasses Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 954 Script: | bonus2 bAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,5; - Id: 5880 AegisName: Cheering_Whistle_J Name: Cheering Whistle Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 952 Script: | bonus5 bAutoSpell,"PR_MAGNIFICAT",1,50,BF_WEAPON|BF_MAGIC,0; - Id: 5881 AegisName: Weissbier_Hat Name: Weissbier Hat Type: Armor Buy: 20 Weight: 300 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1079 Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDex,10; if (getrefine()>6) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDex,5; } - Id: 5882 AegisName: White_Wizardry_Hat_C Name: White Mage Hat C 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 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5883 AegisName: Gray_Wizardry_Hat_C Name: Gray Mage Hat C 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 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5884 AegisName: Blue_Wizardry_Hat_C Name: Blue Mage Hat C 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 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5885 AegisName: Red_Wizardry_Hat_C Name: Red Mage Hat C 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 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5886 AegisName: Yellow_Wizardry_Hat_C Name: Yellow Mage Hat C 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 Script: | bonus bInt,2; bonus bMaxSP,150; - Id: 5887 AegisName: Half_L_Magestic_Goat Name: Half L Majestic Goat Type: Armor Buy: 20 Weight: 800 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 380 Script: | bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus bBaseAtk,(JobLevel*2)/7; - Id: 5888 AegisName: Wedding_Veil_ Name: Wedding Veil Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 44 Script: | bonus bMdef,5; - Id: 5889 AegisName: L_Orc_Hero_Helm_ Name: Large Orc Hero Helm Type: Armor Weight: 900 Defense: 5 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 55 Refineable: true View: 381 Script: | bonus bStr,2; bonus bVit,1; bonus bNoSizeFix; - Id: 5890 AegisName: Angel_Earing Name: Angel's Whisper Type: Armor Weight: 100 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 View: 1093 Script: | bonus bAllStats,1; bonus bMdef,3; - Id: 5891 AegisName: Black_Cat_Hat Name: Black Cat Hat Type: Armor Weight: 100 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1105 Script: | bonus5 bAutoSpellWhenHit,"DC_SCREAM",5,20,BF_WEAPON|BF_MAGIC,0; - Id: 5892 AegisName: RCC2013_1ST_CROWN Name: RCC2013 1st Crown Type: Armor Buy: 20 Weight: 300 Defense: 5 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 1106 Script: | bonus bAllStats,5; bonus bMdef,5; skill "AL_TELEPORT",1; bonus bSpeedRate,25; - Id: 5893 AegisName: RCC2013_2ND_CROWN Name: RCC2013 2nd Crown Type: Armor Buy: 20 Weight: 300 Defense: 5 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 1107 Script: | bonus bAllStats,4; bonus bMdef,4; skill "AL_TELEPORT",1; bonus bSpeedRate,25; - Id: 5894 AegisName: RCC2013_3RD_CROWN Name: RCC2013 3rd Crown Type: Armor Buy: 20 Weight: 300 Defense: 5 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 1108 Script: | bonus bAllStats,3; bonus bMdef,3; skill "AL_TELEPORT",1; bonus bSpeedRate,25; - Id: 5895 AegisName: RCC2013_ANV_Hat Name: RCC2013 Commemorative Hat Type: Armor Buy: 20 Weight: 300 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 1 View: 1109 Script: | bonus bAllStats,1; bonus bAtkRate,2; bonus bMatkRate,2; - Id: 5896 AegisName: EGGTART_HAT Name: Egg Tart Hat Type: Armor Weight: 300 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1114 Script: | bonus bDex,2; bonus bLuk,1; bonus bMdef,3; - Id: 5897 AegisName: Ascendant_Crown_ Name: Ascendant Crown Type: Armor Buy: 20 Weight: 50 Defense: 20 Slots: 1 Jobs: SuperNovice: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1118 Script: | .@r = getrefine(); bonus bBaseAtk,30; bonus bMatk,30; bonus bHit,10; bonus bFlee,10; bonus bCritical,10; bonus bMdef,10; bonus bFlee2,5; bonus bAspd,2; bonus bVariableCastrate,-20; bonus2 bSubEle,Ele_Neutral,5; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; } if (.@r>=9) bonus bAllStats,5; - Id: 5898 AegisName: Autumn_Headband Name: Autumn Headband Type: Armor Buy: 20 Weight: 200 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1119 Script: | bonus bBaseAtk,2*(readparam(bDex)/5); bonus2 bVariableCastrate,"RA_ARROWSTORM",-100; bonus2 bSPDrainRate,40,1; if (getrefine()>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",BaseLevel/5; - Id: 5899 AegisName: Black_Ribbon_ Name: Black Ribbon Type: Armor Buy: 20 Weight: 200 Defense: 10 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1120 Script: | bonus bBaseAtk,2*(readparam(bStr)/5); bonus2 bSkillCooldown,"RK_WINDCUTTER",-1800; bonus2 bSkillUseSP,"RK_WINDCUTTER",16; if (getrefine()>=9) { bonus2 bSkillAtk,"RK_SONICWAVE",50; bonus2 bSkillAtk,"RK_WINDCUTTER",50; bonus2 bSkillAtk,"RK_IGNITIONBREAK",30; } - Id: 5900 AegisName: Divine_Guard_Hat_ Name: Divine Guard Hat Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1121 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSubSize,Size_All,5; if (.@r>=7) { .@level = getskilllv("AL_HEAL"); bonus3 bAutoSpellWhenHit,"AL_HEAL",(.@level ? .@level : 5),10; } if (.@r>=9) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; } - Id: 5901 AegisName: Focus_Beret_ Name: Focus Beret Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1122 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus4 bAutoSpellOnSkill,"SR_DRAGONCOMBO","SR_FALLENEMPIRE",max(getskilllv("SR_FALLENEMPIRE"),1),100; if (.@r>=7) { autobonus "{ bonus bAspd,2; }",30,5000,0,"{ specialeffect2 EF_ENHANCE; }"; } if (.@r>=9) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",30; } - Id: 5902 AegisName: Harvester_Hat_ Name: Harvester Hat Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1123 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bAddMonsterDropItem,6211,100; bonus2 bAddMonsterDropItem,6212,100; if (.@r>=7) { bonus2 bAddMonsterDropItem,6210,50; } if (.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",15; } - Id: 5903 AegisName: Hitaikakushi_ Name: Deadman Bandana Type: Armor Weight: 200 Defense: 15 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 1124 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); .@rate = 1; bonus bCritical,.@r*2; bonus bFixedCastrate,-2; if (.@r>=7) { bonus bMatk,20; .@rate += 3; } if (.@r>=9) { bonus bVariableCastrate,-20; bonus2 bSkillUseSP,"SL_STUN",5; bonus2 bSkillUseSP,"SL_SMA",5; } bonus3 bAutoSpellWhenHit,"SL_SWOO",getskilllv("SL_SWOO"),(.@rate*10); - Id: 5904 AegisName: Inconspicuous_Hat_ Name: Inconspicuous Hat Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1125 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (.@r>=9) { .@matk = 5; } bonus bMatkRate,(7+.@matk); if (.@r>=7) { bonus bMatk,(readparam(bInt)/5)*2; } - Id: 5905 AegisName: Lyrica_Hat_ Name: Lyrica Hat Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1126 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; if (.@r>=7) { bonus bFixedCastrate,4*(getskilllv("WM_LESSON")); } if (.@r>=9) { bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; } - Id: 5906 AegisName: Oni_Horns_ Name: Oni Horns Type: Armor Weight: 20 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1127 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"GC_COUNTERSLASH",(10*getskilllv("GC_WEAPONBLOCKING")); .@r = getrefine(); if (.@r > 6) { bonus bBaseAtk,20; bonus bHit,5; } if (.@r > 9) { bonus3 bAutoSpell,"GC_CROSSIMPACT",1,10; } - Id: 5907 AegisName: Sea_Captain_Hat_ Name: Sea Captain Hat Type: Armor Weight: 200 Defense: 20 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1128 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; .@dmg = 20; .@r = getrefine(); if (.@r>=7) { .@dmg += getskilllv("BS_WEAPONRESEARCH"); } if (.@r>=9) { .@dmg += getskilllv("NC_TRAININGAXE"); } bonus2 bSkillAtk,"NC_AXETORNADO",.@dmg; - Id: 5908 AegisName: Accessory_of_Ascetic Name: Priest Decoration Type: Armor Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 1150 Script: | bonus bMdef,3; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5; bonus3 bAddMonsterDropItem,12027,RC_Undead,300; - Id: 5909 AegisName: C_Valkyrie_Circlet Name: C Valkyrie Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 940 - Id: 5911 AegisName: C_Imperial_Feather Name: Costume Imperial Feather Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 935 - Id: 5912 AegisName: C_Minions_Of_Devil Name: Costume Servant Deviling Type: Armor Buy: 20 Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1036 - Id: 5913 AegisName: C_Anemos_Mask Name: Costume Mask of Anemos Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 906 - Id: 5914 AegisName: C_Flutter_Butterfly Name: C Flutter Butterfly Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect HAT_EF_FLUTTER_BUTTERFLY,true; UnEquipScript: | hateffect HAT_EF_FLUTTER_BUTTERFLY,false; - Id: 5915 AegisName: C_Angel_Veil Name: Costume Angel Veil Type: Armor View: 1379 Buy: 20 Weight: 300 Defense: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 5916 AegisName: Exosrcist_Glass Name: Exorcist Glasses Type: Armor Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1169 Script: | bonus2 bAddRace,RC_Demon,5; bonus2 bSubRace,RC_Demon,5; - Id: 5917 AegisName: Yellow_Scarf Name: Yellow Scarf Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 90 View: 1170 Script: | bonus bLongAtkDef,3; - Id: 5918 AegisName: Gambler_Seal Name: Gambler's Seal Type: Armor Weight: 500 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1202 Script: | .@dex = readparam(bDex); .@luk = readparam(bLuk); .@critical = 3 + (.@luk / 10); .@critical_dmg = 3 - (.@dex/10) * 2; .@sub_arrowstorm = 10; .@sub_gateofhell = 10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk / 10) * 2; if (.@luk > 107) { .@critical += 5; .@critical_dmg += 10; } if (.@luk > 119) { .@critical += 10; .@critical_dmg += 17; .@sub_arrowstorm += 30; .@sub_gateofhell += 30; } bonus bCritical,.@critical; bonus bCritAtkRate,.@critical_dmg; bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm; bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell; - Id: 5919 AegisName: Camellia_Hair_Pin Name: Camellia Hair Ornament Type: Armor Weight: 1000 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1203 Script: | bonus bMdef,20; bonus3 bAutoSpell,"AL_PNEUMA",1,30+getrefine()*5; hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); /* CONFIRM The Rate*/ UnEquipScript: | hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); - Id: 5920 AegisName: Medical_Boots Name: Medical Boots Type: Armor Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5); - Id: 5921 AegisName: Monster_Fish_Gill Name: Monster Fish Gills Type: Armor Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1218 Script: | bonus2 bAddRace,RC_Fish,5; bonus2 bSubRace,RC_Fish,5; - Id: 5924 AegisName: DragonKnight_Eyepatch Name: Dragon Knight Eye Patch Type: Armor Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1227 Script: | bonus2 bAddRace,RC_Dragon,5; bonus2 bSubRace,RC_Dragon,5; - Id: 5930 AegisName: Magical_Feather Name: Magical Feather Type: Armor Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 1279 Script: | .@r = ((getrefine()-5)*5); bonus2 bMagicAddEle,Ele_Dark,5+.@r; bonus2 bMagicAddEle,Ele_Ghost,5+.@r; bonus2 bMagicAddEle,Ele_Holy,5+.@r; bonus2 bMagicAddEle,Ele_Poison,5+.@r; bonus2 bMagicAddEle,Ele_Undead,5+.@r; bonus3 bAutoSpell,"AL_HOLYLIGHT",1,50+(getskilllv("AL_DEMONBANE")*10); bonus2 bSkillAtk,"AL_HOLYLIGHT",80*getskilllv("PR_IMPOSITIO"); bonus2 bSkillUseSP,"AL_HOLYLIGHT",-15*getskilllv("PR_IMPOSITIO"); autobonus3 "{ }",1000,10000,"NV_FIRSTAID","{ active_transform 2449,10000; }"; hateffect HAT_EF_MAGICAL_FEATHER,true; UnEquipScript: | hateffect HAT_EF_MAGICAL_FEATHER,false; - Id: 5931 AegisName: Niflheim_Bunny_Hat Name: Niflheim Bunny Hat Type: Armor Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1285 Script: | .@r = getrefine(); .@per = ((.@r >= 9) ? 40 : ((.@r >= 7) ? 20 : ((.@r >= 5) ? 10 : 5))); bonus2 bAddDamageClass,1373,.@per; bonus2 bAddDamageClass,1503,.@per; bonus2 bAddDamageClass,1504,.@per; bonus2 bAddDamageClass,1505,.@per; bonus2 bAddDamageClass,1506,.@per; bonus2 bAddDamageClass,1507,.@per; bonus2 bAddDamageClass,1508,.@per; bonus2 bAddDamageClass,1509,.@per; bonus2 bAddDamageClass,1510,.@per; bonus2 bAddMagicDamageClass,1373,.@per; bonus2 bAddMagicDamageClass,1503,.@per; bonus2 bAddMagicDamageClass,1504,.@per; bonus2 bAddMagicDamageClass,1505,.@per; bonus2 bAddMagicDamageClass,1506,.@per; bonus2 bAddMagicDamageClass,1507,.@per; bonus2 bAddMagicDamageClass,1508,.@per; bonus2 bAddMagicDamageClass,1509,.@per; bonus2 bAddMagicDamageClass,1510,.@per; bonus5 bAutoSpellWhenHit,"NPC_WIDECURSE",2,10+((.@r*5)/10),BF_WEAPON|BF_MAGIC,1; skill "ALL_NIFLHEIM_RECALL",1; - Id: 5932 AegisName: Heaven_Cage Name: Paradise Bird Cage Type: Armor View: 1286 Weight: 800 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bLuk,5; bonus bCritical,5; bonus bFlee2,5; if (BaseClass == Job_Ranger) bonus2 bSkillAtk,"HT_BLITZBEAT",5*getrefine(); - Id: 5933 AegisName: Crow_Tengu_Mask Name: Crow Tengu Mask Type: Armor Buy: 20 Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 80 View: 1287 Script: | bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; if (readparam(bStr)>=108) { bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; } if (readparam(bStr)>=120) { bonus2 bAddSize,Size_All,2; bonus bLongAtkRate,3; } - Id: 5934 AegisName: Happy_Balloon_J Name: Happy Balloon Type: Armor View: 1289 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bMdef,5; bonus2 bAddMonsterDropItem,12355,30; - Id: 5936 AegisName: 8_Type_PurgatorialWing Name: 8 Styles Purgatory Wings Type: Armor View: 1008 Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus2 bMagicAddRace,RC_Dragon,4; bonus2 bSubRace,RC_Dragon,5; - Id: 5937 AegisName: Flying_Helmet Name: Flying Helmet Type: Armor Buy: 1 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 820 Script: | bonus bMdef,5; bonus bHPGainValue,100; bonus2 bSPGainRace,RC_Dragon,5; .@r = getrefine(); if (.@r>=5) { bonus2 bSubRace,RC_Dragon,5; } if (.@r>=7) { bonus2 bSubRace,RC_Dragon,5; } - Id: 5938 AegisName: Octopus_Hat_J Name: Octopus Hat Type: Armor Buy: 20 Weight: 880 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 538 Script: | bonus bMdef,8; bonus bUnbreakableHelm,1; bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; .@r = getrefine(); if (.@r>=5) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=6) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } if (.@r>=7) { bonus2 bAddItemHealRate,579,50; bonus2 bAddItemHealRate,544,125; bonus2 bAddItemHealRate,551,125; } - Id: 5940 AegisName: Boitata_Hat_J Name: Boitata Hat Type: Armor Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 1150 Script: | .@r = getrefine(); bonus bMdef,5; bonus bHPGainValue,100; bonus2 bSPGainRace,RC_Brute,5; if (.@r >= 5) { bonus2 bSubRace,RC_Brute,5; if (.@r >= 7) bonus2 bSubRace,RC_Brute,5; } - Id: 5943 AegisName: Owlviscount_Silk_Hat Name: Owl Viscount Silk Hat Type: Armor Weight: 500 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1323 Script: | bonus bInt,1; bonus bAspdRate,10; .@r = getrefine(); bonus bMatk,7*.@r; autobonus "{ .@r = getrefine(); bonus bAspdRate,(.@r >= 9 ? 40 : ((.@r >= 7) ? 10 : ((.@r >= 5) ? 5 : 0))); }",20,30000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; - Id: 5944 AegisName: Thief_Hood Name: Bandit Hood Type: Armor View: 776 Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bSPGainRace,RC_DemiHuman,5; bonus bHPGainValue,100; if (.@r>=7) { bonus2 bSubRace,RC_DemiHuman,10; } else if (.@r>=5) { bonus2 bSubRace,RC_DemiHuman,5; } - Id: 5945 AegisName: Red_Pencil_Mouth Name: Well-Chewed Pencil (Red) Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 View: 931 Script: | bonus bStr,1; autobonus "{ bonus bAtkEle,Ele_Fire; }",50,60000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow rate and specialeffect */ - Id: 5946 AegisName: Drama_Clockwork Name: Drama Clockwork Type: Armor Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 1335 Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bSPGainRace,RC_Formless,5; bonus bHPGainValue,100; if (.@r>=7) bonus2 bSubRace,RC_Formless,10; else if (.@r>=5) bonus2 bSubRace,RC_Formless,5; - Id: 5963 AegisName: Wing_Headphone Name: Wing Headphone Type: Armor Weight: 10 Defense: 24 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1347 Script: | .@r = getrefine(); bonus bInt,3; bonus bMatkRate,.@r; if (.@r>=7) { bonus2 bSkillAtk,"WM_REVERBERATION",30; bonus2 bSkillUseSP,"WM_REVERBERATION",18; } if (.@r>=10) bonus2 bSkillCooldown,"WM_REVERBERATION",-2000; - Id: 5965 AegisName: Riot_Chip_J Name: Riot Chip Type: Armor Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1201 Script: | bonus bFixedCastrate,-50; .@r = getrefine(); bonus2 bAddClass,Class_All,.@r; bonus2 bMagicAddClass,Class_All,.@r; - Id: 5966 AegisName: KarduiEar Name: Kardui Ear Type: Armor Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1357 Script: | .@dex = readparam(bDex); bonus bMatk,(.@dex > 10) ? .@dex/10*2 : 0; if (.@dex > 107) { bonus bVariableCastrate,-10; bonus bMatk,60; } if (.@dex > 119) { bonus bVariableCastrate,-5; bonus bMatk,100; } - Id: 5967 AegisName: FlyingGalapago Name: Flying Galapago Type: Armor Weight: 500 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 110 View: 1358 Script: | set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus bAgi,1; bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2); bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW") * 40; - Id: 5968 AegisName: DVAngelNurseCap Name: Clergy Nurse Cap Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1359 Script: | if (BaseClass == Job_Acolyte) bonus bHealPower,3; bonus bNoCastCancel; .@r = getrefine(); bonus bHealPower,(.@r > 8) ? 12 : ((.@r > 6) ? 9 : ((.@r > 4) ? 6 : 0)); - Id: 5969 AegisName: QueenAnzRevenge Name: Queen Anz Revenge Type: Armor Weight: 400 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1360 Script: | bonus bStr,5; .@r = getrefine(); bonus2 bAddClass,Class_All,7+(.@r > 8 ? 4 : (.@r > 6 ? 3 : (.@r > 4 ? 2 : 0))); bonus bNoSizeFix; - Id: 5970 AegisName: RuneHelm Name: Rune Helm Type: Armor Buy: 20 Weight: 3000 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1361 Script: | .@r = getrefine(); bonus bVit,3; bonus bMaxHPrate,4; bonus2 bSkillAtk,"RK_STORMBLAST",(.@r>=8?70:(.@r>=6?50:30)); bonus2 bFixedCastrate,"RK_REFRESH",-100; autobonus3 "{ bonus bAtkRate,-50; bonus bMatkRate,-50; bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,10; }",1000,60000,"RK_MILLENNIUMSHIELD"; autobonus3 "{ percentheal 100,100; sc_end UNLUCKY; sc_end IGNORANCE; sc_end WEAKNESS; sc_end ENERVATION; sc_end LAZINESS; }",1000,1000,"RK_REFRESH"; autobonus3 "{ bonus bNoKnockback; }",1000,30000,"RK_CRUSHSTRIKE"; autobonus3 "{ bonus2 bHPRegenRate,500,10000; }",1000,300000,"RK_VITALITYACTIVATION"; autobonus3 "{ bonus bBaseAtk,10; bonus bAspdRate,10; }",1000,300000,"RK_FIGHTINGSPIRIT"; autobonus3 "{ bonus2 bSPRegenRate,40,10000; }",1000,300000,"RK_ABUNDANCE"; autobonus3 "{ bonus bStr,30; bonus bInt,-30; }",1000,300000,"RK_GIANTGROWTH"; autobonus3 "{ bonus bShortWeaponDamageReturn,10; heal -1000,0; }",1000,300000,"RK_STONEHARDSKIN"; if (BaseLevel >= 100) bonus bVit,.@r; else if (BaseLevel <= 99) bonus bVit,.@r/2; if (.@r>=6) autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,20; }",1000,60000,"RK_MILLENNIUMSHIELD"; if(.@r>=8) autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,30; }",1000,60000,"RK_MILLENNIUMSHIELD"; - Id: 5971 AegisName: Moon_Eyepatch Name: Moon Eyepatch Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1370 Script: | bonus2 bSubEle,Ele_Water,5; - Id: 5972 AegisName: Chatty_Parrot Name: Chatty Parrot Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 1116 Script: | bonus bMatkRate,BaseLevel/50; bonus bVariableCast,-readparam(bInt)/30; - Id: 5973 AegisName: Ancient_Elven_Ear_J Name: Ancient Elven Ear Type: Armor Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 665 Script: | bonus bLuk,10; bonus bMdef,10; bonus bFlee2,2; - Id: 5975 AegisName: Zherlthsh_Doll Name: Zealotus Doll Type: Armor Buy: 10 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1376 Script: | bonus bMdef,5; .@def = 10; if (getpetinfo(PETINFO_EGGID) == 9026) { .@def += 5; if (getpetinfo(PETINFO_INTIMATE) >= PET_INTIMATE_CORDIAL) { .@def += 5; bonus bNoKnockback; } } bonus2 bSubClass,Class_Boss,.@def; - Id: 5977 AegisName: C_Poker_Card_In_Mouth Name: "Costume: Poker Card In Mouth" Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 889 - Id: 5978 AegisName: Toy_Syringe Name: Toy Syringe Type: Armor Weight: 100 Defense: 3 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 View: 842 Script: | bonus bMdef,3; bonus2 bAddItemHealRate,545,150; bonus2 bAddItemHealRate,546,150; bonus2 bAddItemHealRate,547,150; - Id: 5979 AegisName: C_Angel_Fluttering Name: C Angel Fluttering Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect HAT_EF_ANGEL_FLUTTERING,true; UnEquipScript: | hateffect HAT_EF_ANGEL_FLUTTERING,false; - Id: 5980 AegisName: C_Classical_Fhat Name: C Classical Fhat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1381 - Id: 5981 AegisName: C_Satanic_Chain_P Name: Costume Flapping Devil Wings Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 382 - Id: 5985 AegisName: Noble_Mask Name: Noble Mask Type: Armor Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 1409 Script: | bonus2 bSkillAtk,"PA_SACRIFICE",BaseLevel*2; bonus2 bSkillVariableCast,"PA_PRESSURE",-2000; bonus2 bSkillVariableCast,"CR_DEVOTION",-2000; if (BaseLevel > 149) { bonus bMaxHPrate,3; bonus bAspdRate,3; } else if (BaseLevel > 99) { bonus bMaxHPrate,2; bonus bAspdRate,2; } else { bonus bMaxHPrate,1; bonus bAspdRate,1; } - Id: 5986 AegisName: Whikebain_Ears_ Name: Wickebine's Black Cat Ears Type: Armor View: 368 Weight: 200 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true Script: | bonus bDef2Rate,-50; bonus bFlee,10; bonus bCritical,3; bonus bCritAtkRate,10; - 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 - 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: 9057 AegisName: Egg_Of_Tiny Name: Egg Of Tiny Type: Petegg Buy: 20 - Id: 9058 AegisName: Snow_Rabbit_Egg Name: Christmas Snow Rabbit Egg Type: Petegg Buy: 20 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 9059 AegisName: Tikbalang_Pet Name: Tikbalang Egg Type: Petegg Buy: 20 - Id: 9060 AegisName: Brownie_Egg Name: Domovoi Egg Type: Petegg Buy: 20 - Id: 9061 AegisName: Marin_Egg Name: Marin Egg Type: Petegg Buy: 20 - Id: 9062 AegisName: Novice_Poring_Egg Name: Novice Poring Egg Type: Petegg Buy: 20 - Id: 9063 AegisName: Woodie_Egg Name: Woodie Egg Type: Petegg Buy: 20 - Id: 9064 AegisName: Elephant_Egg Name: Elephant Egg Type: Petegg Buy: 20 - Id: 9065 AegisName: Gorilla_Egg Name: Gorilla Egg Type: Petegg Buy: 20 - Id: 9066 AegisName: Lion_Egg Name: Lion Egg Type: Petegg Buy: 20 - Id: 9067 AegisName: Rhino_Egg Name: Rhino Egg Type: Petegg Buy: 20 - Id: 9068 AegisName: Blue_Unicorn_Egg Name: Blue Unicorn Egg Type: Petegg Buy: 20 - Id: 9069 AegisName: Mastering_Egg Name: Mastering Egg Type: Petegg Buy: 20 - Id: 9070 AegisName: Savage_Egg Name: Savage Egg Type: Petegg Buy: 20 - Id: 9071 AegisName: Grand_Peco_Egg Name: Grand Peco Peco Egg Type: Petegg Buy: 20 - Id: 9072 AegisName: Orc_Hero_Egg Name: Orc Hero Egg Type: Petegg Buy: 20 - Id: 9073 AegisName: Orc_Lord_Egg Name: Orc Lord Egg Type: Petegg Buy: 20 - Id: 9074 AegisName: Rubylit_Egg Name: Rubylit Egg Type: Petegg Buy: 20 - Id: 9075 AegisName: Sapphilit_Egg Name: Sapphilit Egg Type: Petegg Buy: 20 - Id: 9076 AegisName: Emelit_Egg Name: Emelit Egg Type: Petegg Buy: 20 - Id: 9077 AegisName: Topalit_Egg Name: Topalit Egg Type: Petegg Buy: 20 - Id: 9078 AegisName: Amelit_Egg Name: Amelit Egg Type: Petegg Buy: 20 - Id: 9079 AegisName: Mythlit_Egg Name: Mythlit Egg Type: Petegg Buy: 20 - Id: 9080 AegisName: Tamadora_Egg Name: Tamadora Egg Type: Petegg Buy: 20 - Id: 9087 AegisName: High_Orc_Egg Name: High Orc Egg Type: Petegg Buy: 20 - Id: 9088 AegisName: Angeling_Egg Name: Angeling Egg Type: Petegg Buy: 20 - Id: 9089 AegisName: Ammut_Egg Name: Am Mut Egg Type: Petegg Buy: 20 - Id: 9090 AegisName: Littleisis_Egg Name: Little Isis Egg Type: Petegg Buy: 20 - Id: 9091 AegisName: Choco_Egg Name: Choco Egg Type: Petegg Buy: 20 - Id: 9092 AegisName: Eggring_Egg Name: Eggring Egg Type: Petegg Buy: 20 - Id: 9093 AegisName: Hyegun_Egg Name: Hyegun Egg Type: Petegg Buy: 20 - Id: 9094 AegisName: Leaf_Lunatic_Egg Name: Leaf Lunatic Egg Type: Petegg Buy: 20 - Id: 9095 AegisName: Nine_Tail_Egg Name: Nine Tail Egg Type: Petegg Buy: 20 - Id: 9096 AegisName: Cat_O_Nine_Tail_Egg Name: Cat o Nine Tail Egg Type: Petegg Buy: 20 - Id: 9097 AegisName: Diabolic_Egg2 Name: Diabolic Egg Type: Petegg Buy: 20 - Id: 9098 AegisName: Red_Deleter_Egg2 Name: Fire Deleter Egg Type: Petegg Buy: 20 - Id: 9099 AegisName: Teddy_Bear_Egg Name: Teddy Bear Egg Type: Petegg Buy: 20 - Id: 9100 AegisName: Gremlin_Egg Name: Gremlin Egg Type: Petegg Buy: 20 - Id: 9101 AegisName: Scatletoncarrier Name: Scatleton's Cage Type: Petegg Buy: 20 - Id: 9102 AegisName: Mummy_Egg Name: Mummy Egg Type: Petegg Buy: 20 - Id: 9103 AegisName: Wilow_Egg Name: Willow Egg Type: Petegg Buy: 20 - Id: 9104 AegisName: Roween_Egg Name: Roween Egg Type: Petegg Buy: 20 - Id: 9105 AegisName: Hodremlin_Egg Name: Hodremlin Egg Type: Petegg Buy: 20 - Id: 9106 AegisName: Metaller_Egg Name: Metaller Egg Type: Petegg Buy: 20 - Id: 9107 AegisName: Ancient_Mummy_Egg Name: Ancient Mummy Egg Type: Petegg Buy: 20 - Id: 9108 AegisName: Xm_Teddybear_Egg Name: Xmas Teddy Bear Egg Type: Petegg Buy: 20 - Id: 9109 AegisName: Sweets_Drops_Egg Name: Sweet Drops Egg Type: Petegg Buy: 20 - Id: 9111 AegisName: Phreeoni_Egg Name: Phreeoni Egg Type: Petegg Buy: 20 - Id: 9112 AegisName: Moonlight_Egg Name: Moonlight Egg Type: Petegg Buy: 20 - Id: 9113 AegisName: Roost_Of_Skelion Name: Roost Of Skelion Type: Petegg Buy: 20 - Id: 9114 AegisName: Pouring_Egg Name: Pouring Egg Type: Petegg Buy: 20 - Id: 9115 AegisName: Bacsojin_Egg2 Name: Bacsojin Egg Type: Petegg Buy: 20 - Id: 9116 AegisName: Nightmare_TerrorH_EGG Name: Rigid Nightmare Terror Egg Type: Petegg Buy: 20 - Id: 9117 AegisName: Wanderer_H_EGG Name: Contaminated Wanderer Egg Type: Petegg Buy: 20 - Id: 9118 AegisName: Aliot_EGG Name: Aliot Egg Type: Petegg Buy: 20 - Id: 9119 AegisName: Alicel_EGG Name: Alicel Egg Type: Petegg Buy: 20 - Id: 9120 AegisName: Aliza_EGG Name: Aliza Egg Type: Petegg Buy: 20 - Id: 9121 AegisName: Ork_Hero_EGG Name: Orc Hero Egg Type: Petegg Buy: 20 - Id: 9122 AegisName: Gloom_Under_Egg Name: Gloom Under Night Egg Type: Petegg Buy: 20 - Id: 9123 AegisName: Ep17_2_C_Admin1_Egg Name: Child Admin Beta Egg Type: Petegg Buy: 20 - Id: 9124 AegisName: Ep17_2_C_Admin2_Egg Name: Child Admin Alpha Egg Type: Petegg Buy: 20 - Id: 9125 AegisName: E_Duckling_Egg Name: Wandering Duck Doll Egg Type: PetEgg - Id: 9126 AegisName: Kiel_Egg Name: Kiel-D-01 Egg Type: PetEgg Buy: 20 - Id: 9128 AegisName: Dark_Priest_Egg Name: Dark Priest Egg Type: Petegg Buy: 20 - Id: 9129 AegisName: Desert_Wolf_Egg Name: Desert Wolf Egg Type: PetEgg - Id: 9130 AegisName: Chaos_Bapho_Jr_Egg Name: Chaotic Baphomet Junior Egg Type: PetEgg - Id: 9131 AegisName: Fire_Golem_Egg Name: Fire Golem Egg Type: PetEgg - Id: 9132 AegisName: Abyss_Knight_Egg Name: Abysmal Knight Egg Type: PetEgg - Id: 9133 AegisName: Change_W_Knight_Egg Name: Mutated White Knight Egg Type: PetEgg - Id: 9134 AegisName: White_Knight_Egg Name: White Knight Egg Type: PetEgg - Id: 9137 AegisName: Baphomet_Egg Name: Baphomet Egg Type: PetEgg - Id: 9138 AegisName: Farmiliar_Egg Name: Familiar Egg Type: PetEgg - Id: 9139 AegisName: Dark_Illusion_Egg Name: Dark Illusion Egg Type: PetEgg - Id: 9140 AegisName: Blue_Moon_Loli_Ruri_Egg Name: Blue Moon Loli Ruri Egg Type: PetEgg - Id: 9141 AegisName: Wild_Rose_Egg2 Name: Wild Rose Egg Type: PetEgg - Id: 9142 AegisName: Eddga_Egg2 Name: Eddga Egg Type: PetEgg - Id: 9144 AegisName: Larva_Violet_Egg Name: Violet Egg Type: PetEgg Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 9145 AegisName: Copo_Egg Name: Copo Egg Type: PetEgg - Id: 9146 AegisName: Grey_Icewind_Egg Name: Gray Icewind Egg Type: PetEgg - Id: 9147 AegisName: Icewind_Egg Name: Icewind Egg Type: PetEgg - Id: 9148 AegisName: Dark_Lord_Egg Name: Dark Lord Egg Type: PetEgg - Id: 9156 AegisName: Sonic_Chao_Egg Name: Chao Egg Type: PetEgg Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - 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: 10039 AegisName: Tw_Backpack Name: Tw Backpack Type: Petarmor Buy: 20 - Id: 10040 AegisName: Red_Chorker_Bell Name: Red Bell Necklace Type: Petarmor Buy: 20 - Id: 10041 AegisName: Twinkle_Star_Button Name: Shiny Star Button Type: Petarmor Buy: 20 - Id: 10042 AegisName: Dark_Mane Name: Dark Mane Type: Petarmor Buy: 20 - Id: 10043 AegisName: Ep_17_2_C_Admin1_Acc Name: Little Headdress Beta Type: PetArmor - Id: 10044 AegisName: Ep_17_2_C_Admin2_Acc Name: Little Headdress Alpha Type: PetArmor - Id: 10045 AegisName: C_Twinkle_Star_Button Name: Duck Doll's Star Button Type: PetArmor Weight: 10 - 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 55 Refineable: true Script: | bonus bDef,5; - Id: 13005 AegisName: Counter_Dagger_IL_J Name: Angelic Wing Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 120 Range: 1 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 1 Refineable: true - Id: 13006 AegisName: Khukri Name: Khukri Type: Weapon SubType: Dagger Buy: 240000 Weight: 600 Attack: 150 Range: 1 Jobs: KagerouOboro: true 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: KagerouOboro: true 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: KagerouOboro: true 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: KagerouOboro: true 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 MagicAttack: 50 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 12 Refineable: true - Id: 13011 AegisName: Asura_ Name: Asura Type: Weapon SubType: Dagger Buy: 3000 Weight: 600 Attack: 50 MagicAttack: 50 Range: 1 Slots: 3 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 12 Refineable: true - Id: 13012 AegisName: Murasame Name: Murasame Type: Weapon SubType: Dagger Buy: 20 Weight: 700 Attack: 95 Range: 1 Slots: 1 Jobs: KagerouOboro: true 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: KagerouOboro: true 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: KagerouOboro: true 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: KagerouOboro: true 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 13023 AegisName: Asura_C Name: Ashura Type: Weapon SubType: Dagger Buy: 1 Attack: 120 MagicAttack: 98 Range: 1 Jobs: KagerouOboro: true 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: | if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 KagerouOboro: 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 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 KagerouOboro: 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 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 KagerouOboro: 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 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 Rogue: true Sage: true Swordman: true Thief: true Wizard: true Classes: All_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 Rogue: true Sage: true Swordman: true Thief: true Wizard: true Classes: All_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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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 KagerouOboro: 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: All_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: All_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 KagerouOboro: 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 NoStorage: 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 bMatk,90; - 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 KagerouOboro: 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 NoStorage: 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 bMatk,90; - 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: All_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 Rogue: true Sage: true Swordman: true Thief: true Wizard: true Classes: All_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 KagerouOboro: 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 - 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 KagerouOboro: 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 - 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 KagerouOboro: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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 KagerouOboro: 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 bFlee2,20; 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 KagerouOboro: 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 bDefRatioAtkClass,Class_All; autobonus "{ bonus bFlee,20; }",10,10000,BF_WEAPON|BF_MISC; - Id: 13045 AegisName: Kamaitachi_I Name: Kamaitachi Type: Weapon SubType: Dagger Attack: 155 Range: 2 Jobs: KagerouOboro: true 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 Script: | bonus bUnbreakableWeapon; bonus bCritical,10; bonus bAspdRate,5; bonus bAtkEle,Ele_Wind; - 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: All_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: All_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 KagerouOboro: 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 13049 AegisName: Lacma Name: Lacma Type: Weapon SubType: Dagger Buy: 20 Weight: 650 Attack: 45 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/3)*40; bonus bMatk,(.@r/3)*40; if (.@r>=6) { bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",10,5000; } if (.@r>=9) { bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if (.@r>12) { bonus bNoSizeFix; } if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Medium,5; if (.@r>=8) { bonus bNoSizeFix; } } - Id: 13050 AegisName: P_Dagger1 Name: Eden Dagger I Type: Weapon SubType: Dagger Attack: 124 MagicAttack: 60 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13051 AegisName: P_Dagger2 Name: Eden Dagger II Type: Weapon SubType: Dagger Attack: 158 MagicAttack: 70 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13052 AegisName: Tourist_Dagger Name: Tourist Dagger Type: Weapon SubType: Dagger Weight: 500 Attack: 51 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 Script: | bonus bAgi,2; - Id: 13053 AegisName: F_Moonlight_Sword_C Name: Moonlight Sword 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 KagerouOboro: 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 bSPDrainValue,3; bonus bMaxSPrate,10; - Id: 13054 AegisName: F_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 KagerouOboro: 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 Script: | bonus bIgnoreDefRace,RC_DemiHuman; bonus bIgnoreDefRace,RC_Player_Human; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bSPDrainValue,3; bonus bMaxSPrate,10; - Id: 13055 AegisName: F_Asura_C Name: Asura Type: Weapon SubType: Dagger Buy: 1 Attack: 120 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Script: | bonus bMatkRate,15; - Id: 13056 AegisName: F_Counter_Dagger_C Name: Counter Dagger 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 Script: | bonus bCritical,90; - Id: 13057 AegisName: E_Moonlight_Sword_C Name: Moonlight Sword 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 KagerouOboro: 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 - Id: 13058 AegisName: E_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 KagerouOboro: 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 - Id: 13059 AegisName: E_Asura_C Name: Asura Type: Weapon SubType: Dagger Buy: 1 Attack: 120 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 - Id: 13060 AegisName: E_Counter_Dagger_C Name: Counter Dagger 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 - Id: 13061 AegisName: Black_Wing Name: Black Wing Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 142 Range: 1 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 102 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=6) { bonus2 bSkillAtk,"SC_FATALMENACE",(.@r-5)*2; bonus bMatk,((.@r-5)*3); } - Id: 13062 AegisName: Ancient_Dagger Name: Ancient Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 107 MagicAttack: 120 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true Knight: true Mage: true Merchant: true Rogue: true Sage: true Swordman: true Thief: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bMaxSP,100; bonus bSPrecovRate,5; bonus2 bAddEff2,Eff_Curse,20; bonus3 bAddEff,Eff_Curse,20,ATF_SELF; - Id: 13063 AegisName: Adventure_Knife Name: Adventure Knife Type: Weapon SubType: Dagger Attack: 60 Range: 1 Jobs: Assassin: true KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Script: | bonus bUnbreakableWeapon; - Id: 13064 AegisName: Academy_Knife Name: Academy Knife Type: Weapon SubType: Dagger Weight: 700 Attack: 110 Range: 1 Slots: 1 Jobs: Assassin: true KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 13065 AegisName: Academy_Eti_Knife Name: Academy Eti Knife Type: Weapon SubType: Dagger Weight: 1200 Attack: 120 Range: 1 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 13066 AegisName: P_Dagger3 Name: Eden Dagger III Type: Weapon SubType: Dagger Attack: 165 MagicAttack: 80 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13067 AegisName: Caress Name: Keris Type: Weapon SubType: Dagger Buy: 20 Weight: 700 Attack: 107 MagicAttack: 70 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 30 Refineable: true Script: | bonus2 bHPDrainRate,20,10; - Id: 13068 AegisName: Saurel Name: Pompano Type: Weapon SubType: Dagger Attack: 160 MagicAttack: 100 Range: 3 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,3; bonus bUnbreakableWeapon; autobonus "{ bonus bBaseAtk,30; }",15,7000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,20; }",15,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; if (BaseLevel>99) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 13069 AegisName: Aztoe_Nail Name: As-nail Type: Weapon SubType: Dagger Buy: 56000 Weight: 500 Attack: 160 MagicAttack: 80 Range: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus bAtkEle,Ele_Wind; bonus2 bAddEff,Eff_Freeze,100+(getrefine()*50); - Id: 13070 AegisName: Scarletto_Nail Name: Scarlet-nail Type: Weapon SubType: Dagger Buy: 56000 Weight: 500 Attack: 160 MagicAttack: 80 Range: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus bAtkEle,Ele_Fire; bonus2 bAddEff,Eff_Stone,100+(getrefine()*50); - Id: 13071 AegisName: Upg_Dagger Name: Upg Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 55 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); - Id: 13072 AegisName: Velum_Damascus Name: Vellum Damascus Type: Weapon SubType: Dagger Buy: 20 Weight: 1000 Attack: 180 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 95 Refineable: true Script: | bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus bAspdRate,getrefine(); - Id: 13073 AegisName: Counter_Dagger_ Name: Counter Dagger Type: Weapon SubType: Dagger Buy: 120000 Weight: 550 Attack: 140 Range: 1 Slots: 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: 13074 AegisName: Ninja_Cutter Name: Ninja Sword Prototype Type: Weapon SubType: Dagger Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13075 AegisName: Kurenai Name: Kurenai Type: Weapon SubType: Dagger Buy: 5000 Weight: 700 Attack: 130 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 99 Refineable: true Script: | bonus bInt,3; - Id: 13076 AegisName: Raksasa_Dagger Name: Nachal Sword Type: Weapon SubType: Dagger Buy: 40000 Weight: 600 Attack: 120 MagicAttack: 100 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | bonus bInt,3; - Id: 13077 AegisName: Kagekiri Name: Kagekiri Type: Weapon SubType: Dagger Buy: 40000 Weight: 600 Attack: 50 MagicAttack: 120 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true - Id: 13078 AegisName: Mikatsuki Name: Mikacheuki Type: Weapon SubType: Dagger Buy: 40000 Weight: 600 Attack: 50 MagicAttack: 120 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUseSPrate,-5; bonus bVariableCastrate,-5; - Id: 13079 AegisName: Metal_Dagger Name: Metal Dagger Type: Weapon SubType: Dagger Buy: 20 Attack: 55 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (.@i>2) bonus bBaseAtk,((.@i-2)*5); - Id: 13080 AegisName: Rogue_Kinfe Name: Rogue Kinfe Type: Weapon SubType: Dagger Buy: 20 Weight: 200 Attack: 80 Jobs: Swordman: true Knight: true Crusader: true Mage: true Wizard: true Sage: true Archer: true Hunter: true BardDancer: true Merchant: true Blacksmith: true Alchemist: true Thief: true Assassin: true Rogue: true SoulLinker: true Ninja: true KagerouOboro: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Water; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Water,2; bonus2 bSubEle,Ele_Fire,-5; if (.@r >= 7) { bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Water,3; if (.@r > 7) bonus bMaxHPrate,.@r-7; } - Id: 13081 AegisName: Octo_kitchen_Knife Name: Octopus Knife Type: Weapon SubType: Dagger Buy: 200000 Weight: 700 Attack: 140 Slots: 3 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 105 Refineable: true Script: | .@r = getrefine(); bonus bHit,.@r; - Id: 13082 AegisName: Ivory_Knife_ Name: Ivory Knife Type: Weapon SubType: Dagger Buy: 20 Weight: 700 Attack: 130 Slots: 3 Jobs: Swordman: true Knight: true Crusader: true Merchant: true Blacksmith: true Alchemist: true Thief: true Assassin: true Rogue: true Archer: true Hunter: true BardDancer: true Mage: true Wizard: true Sage: 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: 13083 AegisName: TE_Woe_Knife Name: TE Woe Knife Type: Weapon SubType: Dagger Attack: 100 MagicAttack: 100 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Silence,1000; - Id: 13084 AegisName: Eihwaz_Knife Name: Eihwaz Knife Type: Weapon SubType: Dagger Buy: 20 Weight: 200 Attack: 80 Jobs: Swordman: true Knight: true Crusader: true Mage: true Wizard: true Sage: true Archer: true Hunter: true BardDancer: true Merchant: true Blacksmith: true Alchemist: true Thief: true Assassin: true Rogue: true SoulLinker: true Ninja: true KagerouOboro: true Locations: Right_Hand: true Trade: NoDrop: true NoSell: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Earth; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Earth,2; bonus2 bSubEle,Ele_Wind,-5; if (.@r >= 7) { bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Earth,3; if (.@r > 7) bonus bMaxHPrate,.@r-7; } - Id: 13085 AegisName: Volcano_Knife Name: Volcano Knife Type: Weapon SubType: Dagger Buy: 10 Weight: 200 Attack: 80 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 60 Refineable: true Script: | bonus bAtkEle,Ele_Fire; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,-5; .@r = getrefine(); if (.@r>=7) { bonus bMaxHPrate,.@r-6; bonus2 bSubEle,Ele_Fire,3; } - Id: 13086 AegisName: Goldsmithing_Dagger Name: Goldsmithing Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 500 Attack: 35 MagicAttack: 25 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 EquipLevelMin: 1 Refineable: true - Id: 13087 AegisName: Hagalas_Knife Name: Hagalas Knife Type: Weapon SubType: Dagger Buy: 20 Weight: 200 Attack: 80 Jobs: Swordman: true Knight: true Crusader: true Mage: true Wizard: true Sage: true Archer: true Hunter: true BardDancer: true Merchant: true Blacksmith: true Alchemist: true Thief: true Assassin: true Rogue: true SoulLinker: true Ninja: true KagerouOboro: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; bonus bAgi,2; bonus bMaxHPrate,-2; bonus2 bSubEle,Ele_Wind,2; bonus2 bSubEle,Ele_Earth,-5; if (.@r >= 7) { bonus bMaxHPrate,1; bonus2 bSubEle,Ele_Wind,3; if (.@r > 7) bonus bMaxHPrate,.@r-7; } - Id: 13088 AegisName: Krishnagar Name: Krishnagar Type: Weapon SubType: Dagger Buy: 10 Weight: 500 Attack: 110 MagicAttack: 50 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 30 Refineable: true Script: | .@r = getrefine(); if (.@r >= 5) bonus bMatk,30; if (.@r >= 7) bonus bMatk,40; if (.@r >= 9) bonus bMatk,50; - Id: 13089 AegisName: FaceWorm_Leg Name: Faceworm Leg Type: Weapon SubType: Dagger Buy: 20 Weight: 500 Attack: 110 MagicAttack: 50 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 24 Refineable: true Script: | bonus bAtkEle,Ele_Poison; autobonus "{}",30,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2528,5000; }"; - Id: 13090 AegisName: FaceWormQueen_Leg Name: Faceworm Queen Leg Type: Weapon SubType: Dagger Buy: 20 Weight: 500 Attack: 180 MagicAttack: 120 Range: 1 Slots: 2 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 100 Refineable: true Script: | bonus bInt,3; autobonus "{ bonus3 bAutoSpell,\"NPC_EARTHQUAKE\",1,200; }",8,5000,BF_NORMAL,"{ specialeffect2 EF_POTION_BERSERK; active_transform 2529,5000; }"; - Id: 13091 AegisName: Owl_Cutter Name: Owl's Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 500 Attack: 50 Slots: 1 Jobs: Novice: true Swordman: true Knight: true Crusader: true Mage: true Wizard: true Sage: true Archer: true Hunter: true BardDancer: true Merchant: true Blacksmith: true Alchemist: true Thief: true Assassin: true Rogue: true SoulLinker: true Ninja: true KagerouOboro: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bInt,.@r; bonus bLuk,.@r; - Id: 13092 AegisName: RWC_Memory_Knife Name: RWC Memory Knife Type: Weapon SubType: Dagger Buy: 20 Weight: 650 Attack: 50 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/3); bonus bMatk,20*(.@r/3); if (.@r>=9) { .@i = 1; bonus4 bAutoSpell,"BS_WEAPONPERFECT",1,10,0; } if (.@r>=6) { .@rate = 5*(.@i+1); bonus2 bAddRace,RC_All,.@rate; bonus2 bMagicAddRace,RC_All,.@rate; } - Id: 13093 AegisName: Thanos_Dagger Name: Thanos Dagger Type: Weapon SubType: Dagger Buy: 10 Weight: 800 Attack: 100 MagicAttack: 130 Range: 1 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: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 13094 AegisName: Dagger_Of_Evil_Slayer Name: Evil Slayer Stabber Dagger Type: Weapon SubType: Dagger Weight: 900 Attack: 120 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 100 Refineable: true Script: | bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if (.@r>=9) { .@dmg = 5; if (.@r>=12) { .@dmg += 7; } bonus bAtkRate,.@dmg; } - Id: 13096 AegisName: Half_BF_Dagger2 Name: Half BF Dagger2 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 KagerouOboro: 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: 1 Refineable: true Script: | bonus bStr,1; bonus bAgi,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; autobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker) bonus bMatkRate,45; - Id: 13097 AegisName: Ru_Blue_Dagger Name: Blue Dagger Type: Weapon SubType: Dagger Buy: 10 Weight: 1000 Attack: 160 Range: 1 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bStr,5; bonus bInt,5; - Id: 13098 AegisName: Ru_Blue_Ashura Name: Blue Ashura Type: Weapon SubType: Dagger Buy: 10 Weight: 1000 Attack: 150 MagicAttack: 150 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true - Id: 13099 AegisName: Ru_Blue_Knife Name: Blue Knife Type: Weapon SubType: Dagger Buy: 10 Weight: 500 Attack: 160 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bVit,5; bonus bInt,5; - 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: true Locations: Both_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 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 Rebellion: 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,readparam(bAgi)/10; bonus bAspdRate,readparam(bAgi)/14; bonus2 bAddClass,Class_All,40; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 13110 AegisName: Krieger_Pistol1 Name: Glorious Pistol Type: Weapon SubType: Revolver Attack: 80 Range: 7 Jobs: Gunslinger: true Rebellion: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000; bonus2 bSkillAtk,"GS_RAPIDSHOWER",.@r*2; } - Id: 13111 AegisName: Sharpshooter_Revolver Name: Sharpshooter Revolver Type: Weapon SubType: Revolver Buy: 20 Attack: 105 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; bonus2 bSkillAtk,"GS_DESPERADO",25; - Id: 13112 AegisName: P_Revolver1 Name: Eden Revlover I Type: Weapon SubType: Revolver Attack: 44 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 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 Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,-5; - Id: 13114 AegisName: P_Revolver3 Name: Eden Revolver III Type: Weapon SubType: Revolver Attack: 76 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,-5; - Id: 13115 AegisName: Upg_Revolver Name: Upg Revolver Type: Weapon SubType: Revolver Buy: 20 Weight: 500 Attack: 35 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*5); bonus bLongAtkRate,(.@r*2); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); - Id: 13116 AegisName: Novice_Revolver Name: Novice Revolver Type: Weapon SubType: Revolver Weight: 500 Attack: 20 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Script: | bonus bHit,-5; - Id: 13117 AegisName: TE_Woe_Pistol Name: TE Woe Pistol Type: Weapon SubType: Revolver Attack: 60 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Curse,1000; - Id: 13118 AegisName: Tiny_Flame Name: Fading Flame Type: Weapon SubType: Revolver Buy: 1 Weight: 100 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13119 AegisName: Freedom_Flame Name: Freedom Flame Type: Weapon SubType: Revolver Buy: 1 Weight: 100 Attack: 100 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13120 AegisName: H_FEATHER_H_FIRE Name: Heaven's Feather & Hell's Fire Type: Weapon SubType: Revolver Buy: 1200000 Weight: 800 Attack: 150 Range: 9 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 99 Refineable: true Script: | bonus2 bSkillAtk,"GS_DESPERADO",20; bonus2 bAddEff,Eff_Burning,200; - Id: 13122 AegisName: ALTAIR_ARES Name: Altair & Ares Type: Weapon SubType: Revolver Buy: 1450000 Weight: 1000 Attack: 200 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; - Id: 13124 AegisName: ALTAIR_ARES_ Name: Altair & Ares Type: Weapon SubType: Revolver Buy: 1450000 Weight: 1000 Attack: 200 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bHit,5; bonus bAspdRate,10; bonus bLongAtkRate,30; - Id: 13125 AegisName: Metal_Revolver Name: Metal Revolver Type: Weapon SubType: Revolver Attack: 30 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,3*.@r; bonus bLongAtkRate,.@r; if (BaseLevel >= 20) { bonus bBaseAtk,3*(min(BaseLevel,120)/10); } - Id: 13126 AegisName: Gun_Of_Infinite Name: Infinity Pistol Type: Weapon SubType: Revolver Buy: 20 Weight: 500 Attack: 175 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13127 AegisName: Scarlet_Revolver Name: Crimson Revolver Type: Weapon SubType: Revolver Buy: 20 Weight: 1000 Attack: 100 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); if (BaseLevel>=70) { bonus bBaseAtk,(BaseLevel/10)*5; } - Id: 13128 AegisName: Sinister_Revolver Name: Revolver of Vicious Mind Type: Weapon SubType: Revolver Buy: 20 Weight: 1500 Attack: 150 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 13129 AegisName: Union_Revolver Name: Unity Revolver Type: Weapon SubType: Revolver Buy: 20 Weight: 500 Attack: 95 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 13130 AegisName: Gun_of_Trust Name: Thunder Gun Type: Weapon SubType: Revolver Weight: 1000 Attack: 60 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; if (.@r>=7) { .@val = 10; if (.@r>=9) .@val += 15; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddRace,RC_Fish,.@val; } - Id: 13131 AegisName: Gun_of_Trust2 Name: "[Rental] Hunting Gun" Type: Weapon SubType: Revolver Attack: 60 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Fire; if (.@r>=7) { .@val = 10; if (.@r>=9) .@val += 15; bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Insect,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Water,.@val; } /*Todo: When Equipped Adds fire attribute to bullets for 180 minutes*/ - Id: 13132 AegisName: Toughen_Metal_Revolver Name: Enhanced Metal Revolver Type: Weapon SubType: Revolver Buy: 20 Attack: 60 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_FIREDANCE",10; bonus bLongAtkRate,2*.@r; bonus bBaseAtk,5*.@r; bonus bBaseAtk,5*(min(BaseLevel,150)/10); - Id: 13133 AegisName: UnrivaledGun Name: Unrivaled Gun Type: Weapon SubType: Revolver Buy: 20 Weight: 1000 Attack: 55 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Earth; if (.@r >= 7) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if (.@r >= 9) { bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } /*Todo When Equipped Adds Earth Attribute to Bullets for 180 Minutes*/ - Id: 13134 AegisName: ALTAIR_ARES_J Name: Altair Ares Type: Weapon SubType: Revolver Buy: 20 Weight: 400 Attack: 65 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bHit,-10; bonus2 bAddEff,Eff_Stun,2000; - Id: 13135 AegisName: H_FEATHER_H_FIRE_J Name: Heaven's Feather & Hell's Fire Type: Weapon SubType: Revolver Buy: 20 Weight: 350 Attack: 70 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bHit,-10; bonus2 bAddRace,RC_Angel,20; bonus2 bAddRace,RC_Demon,20; - Id: 13136 AegisName: Probation_Revolver Name: Trial Rebel's Revolver Type: Weapon SubType: Revolver Buy: 20 Attack: 120 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,((min(BaseLevel,160)/10)*6); bonus2 bSkillAtk,"RL_FIREDANCE",20; if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_CHAINACTION"); } - Id: 13137 AegisName: Avenger_Revolver Name: Avenger Handgun Type: Weapon SubType: Revolver Buy: 20 Attack: 80 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (.@r>=5) { bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (.@r>=7) { bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (.@r>=9) { bonus4 bAutoSpellOnSkill,"GS_GLITTERING","RL_RICHS_COIN",1,1000; } } } - Id: 13138 AegisName: Dark_Rose Name: Dark Rose Type: Weapon SubType: Revolver Buy: 20 Weight: 1800 Attack: 150 Range: 7 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,10; if (.@r >= 7) { bonus bLongAtkRate,15; if (.@r >= 9) { bonus bAspd,1; } } - Id: 13139 AegisName: Blue_Gun Name: Blue Gun Type: Weapon SubType: Revolver Buy: 20 Weight: 100 Attack: 60 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Formless,10; bonus2 bAddEle,Ele_Fire,10; } if (.@r>=9) { bonus2 bAddRace,RC_Demon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bAddEle,Ele_Fire,15; } /*Todo: When Equipped Adds Water Attribute to Arrows for 180 minutes*/ - Id: 13140 AegisName: Diva_Handgun Name: Diva Handgun Type: Weapon SubType: Revolver Weight: 350 Attack: 70 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 13141 AegisName: Mirage_Handgun Name: Mirage Handgun Type: Weapon SubType: Revolver Weight: 350 Attack: 70 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,2*getskilllv("GS_SNAKEEYE"); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 13142 AegisName: Sinister_Revolver_J Name: Handgun of Evil Type: Weapon Buy: 100000 SubType: Revolver Weight: 350 Attack: 40 Range: 7 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 13144 AegisName: Rebeginer_RL_Gun Name: Beginner Rebel's Revolver Type: Weapon SubType: Revolver Attack: 170 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | bonus bAspdRate,10; if (getrefine()>=7) { bonus2 bSkillAtk,"RL_FIREDANCE",15; } - Id: 13145 AegisName: Calf_Deathadder_J Name: Metal Deathadder Type: Weapon SubType: Revolver Buy: 20 Weight: 350 Attack: 70 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bVit,3; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSubRace,RC_Player_Doram,30; bonus bLongAtkRate,50; autobonus3 "{ bonus bFlee2,100; }",((.@r>=10)?150:(.@r>=9?100:50)),3000,"RL_FIREDANCE"; - Id: 13146 AegisName: Calf_Deathadder Name: Calf Deathadder Type: Weapon SubType: Revolver Weight: 1400 Attack: 170 Range: 7 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,10; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if (.@r > 6) { bonus bAspdRate,5; } if (.@r > 8) { bonus2 bSkillAtk,"RL_FIREDANCE",25; } - Id: 13150 AegisName: Branch Name: Branch Type: Weapon SubType: Rifle Buy: 3000 Weight: 500 Attack: 50 Range: 9 Slots: 3 Jobs: Gunslinger: true Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 55 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: 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 Rebellion: true Locations: Both_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 bDex,2; bonus bHit,10; bonus bCritical,10; bonus2 bAddRace,RC_DemiHuman,75; bonus2 bAddRace,RC_Player_Human,75; bonus2 bVariableCastrate,"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 Rebellion: true Locations: Both_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 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 Rebellion: true Locations: Both_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 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 Rebellion: true Locations: Both_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 bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,20; bonus2 bIgnoreDefRaceRate,RC_Player_Human,20; bonus bDex,2; 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 Rebellion: 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 bHit,20; bonus bCritical,50; bonus2 bAddClass,Class_All,40; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 13176 AegisName: Krieger_Rifle1 Name: Glorious Rifle Type: Weapon SubType: Rifle Attack: 90 Range: 9 Jobs: Gunslinger: true Rebellion: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus2 bVariableCastrate,"GS_TRACKING",-25; bonus2 bSkillAtk,"GS_TRACKING",.@r * 3; } - Id: 13177 AegisName: Krieger_Gatling1 Name: Glorious Gatling Gun Type: Weapon SubType: Gatling Attack: 90 Range: 9 Jobs: Gunslinger: true Rebellion: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus2 bAddClass,Class_All,.@r; } - Id: 13178 AegisName: Krieger_Shotgun1 Name: Glorious Shotgun Type: Weapon SubType: Shotgun Attack: 110 Range: 9 Jobs: Gunslinger: true Rebellion: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus2 bSkillAtk,"GS_SPREADATTACK",.@r * 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 Rebellion: 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(.@r,14)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(.@r,14)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>8) { bonus2 bSkillAtk,"GS_GROUNDDRIFT",.@r * 2; bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000; autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } - Id: 13180 AegisName: Novice_Rifle Name: Novice Rifle Type: Weapon SubType: Rifle Weight: 500 Attack: 50 Range: 9 Slots: 3 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 - Id: 13181 AegisName: Novice_Shotgun Name: Novice Shotgun Type: Weapon SubType: Shotgun Weight: 1000 Attack: 80 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Script: | bonus bSplashRange,1; - Id: 13182 AegisName: Novice_Gatling Name: Novice Gatling Type: Weapon SubType: Gatling Weight: 1500 Attack: 40 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 - Id: 13183 AegisName: Novice_Grenade_Launcher Name: Novice Grenade Launcher Type: Weapon SubType: Grenade Weight: 1500 Attack: 40 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 - Id: 13184 AegisName: TE_Woe_Rifle Name: TE Woe Rifle Type: Weapon SubType: Rifle Attack: 80 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Silence,1000; - Id: 13185 AegisName: TE_Woe_Gatling Name: TE Woe Gatling Type: Weapon SubType: Gatling Attack: 100 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Stun,1000; - Id: 13186 AegisName: TE_Woe_Shotgun Name: TE Woe Shotgun Type: Weapon SubType: Shotgun Attack: 100 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Poison,1000; - Id: 13187 AegisName: TE_Woe_Grenade Name: TE Woe Grenade Type: Weapon SubType: Grenade Attack: 100 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Blind,1000; - Id: 13189 AegisName: COLORSCOPE Name: Color Scope Type: Weapon SubType: Rifle Buy: 1350000 Weight: 1200 Attack: 240 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 105 Refineable: true Script: | bonus bCritical,30; bonus bHit,20; - Id: 13190 AegisName: RAG203_ Name: RAG203 Type: Weapon SubType: Rifle Buy: 1800000 Weight: 1300 Attack: 260 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bCritical,15; bonus bHit,10; bonus4 bAutoSpell,"AL_DECAGI",1,30,1; - Id: 13192 AegisName: DEATHFIRE Name: Death Fire Type: Weapon SubType: Shotgun Buy: 1250000 Weight: 2000 Attack: 400 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 108 Refineable: true Script: | bonus bSplashRange,1; bonus bAtkRange,5; bonus bHit,-50; bonus bAspdRate,-10; - Id: 13193 AegisName: R_THUNDER Name: Rolling Thunder Type: Weapon SubType: Shotgun Buy: 1350000 Weight: 1800 Attack: 280 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bSplashRange,1; bonus bHit,-10; bonus bAspdRate,-10; bonus3 bAutoSpell,"MG_THUNDERSTORM",5,30; - Id: 13194 AegisName: P_BREAKER Name: Peace Breaker Type: Weapon SubType: Shotgun Buy: 1950000 Weight: 1400 Attack: 250 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bSplashRange,1; bonus bHit,-25; bonus bAspdRate,25; - Id: 13195 AegisName: RAG203 Name: RAG203 Type: Weapon SubType: Rifle Buy: 1800000 Weight: 1300 Attack: 260 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bCritical,15; bonus bHit,10; bonus4 bAutoSpell,"AL_DECAGI",1,30,1; - Id: 13196 AegisName: P_BREAKER_ Name: Peace Breaker Type: Weapon SubType: Shotgun Buy: 1950000 Weight: 1400 Attack: 250 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 140 Refineable: true Script: | bonus bSplashRange,1; bonus bHit,-25; bonus bAspdRate,25; - Id: 13197 AegisName: MINIMAY Name: Mini Mei Type: Weapon SubType: Gatling Buy: 1600000 Weight: 500 Attack: 220 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 106 Refineable: true Script: | bonus bCritical,5; bonus bHit,-5; - Id: 13198 AegisName: TEMPEST Name: Tempest Type: Weapon SubType: Gatling Buy: 2200000 Weight: 2500 Attack: 250 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 140 Refineable: true Script: | bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; - Id: 13199 AegisName: TEMPEST_ Name: Tempest Type: Weapon SubType: Gatling Buy: 2200000 Weight: 2500 Attack: 250 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 140 Refineable: true Script: | bonus bHit,-25; bonus bCritical,10; bonus bLongAtkRate,20; - Id: 13300 AegisName: Huuma_Bird_Wing Name: Huuma Wing Shuriken Type: Weapon SubType: Huuma Buy: 90000 Weight: 3000 Attack: 150 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 65 Refineable: true Script: | 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: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 42 Refineable: true Script: | 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: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 42 Refineable: true Script: | 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: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 55 Refineable: true Script: | 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: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | 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: KagerouOboro: true Ninja: true Locations: Both_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,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: KagerouOboro: true Ninja: true Locations: Both_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,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 MagicAttack: 90 Range: 1 Jobs: KagerouOboro: true 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; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000; bonus bUnbreakableWeapon; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-3,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-3,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>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: KagerouOboro: true 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 bAtkEle,Ele_Fire; bonus3 bAutoSpell,"MG_FIREBALL",5,30; bonus bDex,2; - Id: 13309 AegisName: Huuma_Giant_Wheel_C Name: Huuma Giant Wheel Shuriken Type: Weapon SubType: Huuma Attack: 99 Range: 1 Jobs: KagerouOboro: true 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 bAddEff,Eff_Bleeding,100; bonus2 bAddSize,Size_All,80; - Id: 13310 AegisName: P_Huuma_Shuriken1 Name: P.Huuma Suriken I Type: Weapon SubType: Huuma Attack: 150 MagicAttack: 50 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13311 AegisName: Huuma_Shadow Name: Sword Huuma Shuriken Type: Weapon SubType: Huuma Buy: 5000 Weight: 1500 Attack: 170 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 99 Refineable: true Script: | bonus bStr,3; - Id: 13312 AegisName: Huuma_Job_Test Name: Prototype Huuma Shuriken Type: Weapon SubType: Huuma Weight: 3000 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13313 AegisName: Huuma_Swirling_Petal Name: Flower Huuma Shuriken Type: Weapon SubType: Huuma Buy: 100000 Weight: 1500 Attack: 150 MagicAttack: 50 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | bonus2 bSkillAtk,"KO_HUUMARANKA",20; - Id: 13314 AegisName: Huuma_Fluttering_Snow Name: Wave Huuma Shuriken Type: Weapon SubType: Huuma Buy: 100000 Weight: 1500 Attack: 200 MagicAttack: 50 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus bAtkEle,Ele_Water; bonus3 bAutoSpell,"NJ_HYOUSYOURAKU",max(getskilllv("NJ_HYOUSYOURAKU"),1),30; - Id: 13315 AegisName: Huuma_Thunderstorm Name: Thunderstorm Huuma Shuriken Type: Weapon SubType: Huuma Buy: 100000 Weight: 1500 Attack: 200 MagicAttack: 50 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus bAtkEle,Ele_Wind; bonus3 bAutoSpell,"NJ_RAIGEKISAI",max(getskilllv("NJ_RAIGEKISAI"),1),30; bonus2 bAddEff,Eff_Blind,500; - Id: 13316 AegisName: Upg_Huuma_Shuriken Name: Upg Huuma Shuriken Type: Weapon SubType: Huuma Buy: 20 Weight: 1500 Attack: 55 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bMatk,(.@r*5); bonus bLongAtkRate,(.@r); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); bonus bUnbreakableWeapon; - Id: 13317 AegisName: TE_Woe_Huuma Name: TE Woe Huuma Type: Weapon SubType: Huuma Attack: 80 MagicAttack: 100 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Bleeding,1000; bonus bUnbreakableWeapon; - Id: 13321 AegisName: Half_BF_Huuma_Shuriken2 Name: Half BF Huuma Shuriken Type: Weapon SubType: Huuma Buy: 20 Attack: 55 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 80 Refineable: true Script: | bonus bStr,2; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; autobonus "{ bonus2 bSkillAtk,\"NJ_HUUMA\",100; bonus2 bSkillAtk,\"NJ_ISSEN\",100; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; bonus bUnbreakableWeapon; - Id: 13322 AegisName: Metal_Huuma_Shuriken Name: Huuma Metal Shuriken Type: Weapon SubType: Huuma Buy: 20 Attack: 50 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*5; bonus bMatk,.@r*3; bonus bLongAtkRate,.@r; if (BaseLevel >= 20 && BaseLevel <= 120) bonus bBaseAtk,3*.@r/10; - Id: 13323 AegisName: Huuma_Of_Infinite Name: Infinity Shuriken Type: Weapon SubType: Huuma Buy: 20 Weight: 500 Attack: 150 MagicAttack: 40 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; - Id: 13327 AegisName: Scarlet_Huuma Name: Crimson Huuma Shuriken Type: Weapon SubType: Huuma Buy: 20 Weight: 1000 Attack: 100 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); - Id: 13328 AegisName: Sinister_Huuma Name: Huuma Shuriken of Vicious Mind Type: Weapon SubType: Huuma Buy: 20 Weight: 1500 Attack: 150 MagicAttack: 50 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; bonus bUnbreakableWeapon; - Id: 13329 AegisName: Union_Huuma Name: Unity Huuma Shuriken Type: Weapon SubType: Huuma Buy: 20 Weight: 500 Attack: 95 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 13330 AegisName: Toughen_Metal_Shuriken Name: Enhanced Metal Huuma Shuriken Type: Weapon SubType: Huuma Buy: 20 Attack: 75 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"KO_HUUMARANKA",10; bonus bMatk,(5*.@r)+3*(min(BaseLevel,150)/10); bonus bBaseAtk,(7*.@r)+5*(min(BaseLevel,150)/10); bonus bLongAtkRate,2*(.@r/2); - Id: 13332 AegisName: Huuma_Hundred_Petal Name: Huuma Shuriken of Dancing Petals Type: Weapon SubType: Huuma Weight: 2000 Attack: 250 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@bonus = 20; if (.@r>=7) { bonus bLongAtkRate,10; } if (.@r>=9) { .@bonus += 20; } bonus2 bSkillAtk,"KO_HUUMARANKA",.@bonus; - Id: 13333 AegisName: Diva_Huuma Name: Diva Huuma Type: Weapon SubType: Huuma Weight: 1500 Attack: 150 MagicAttack: 160 Range: 3 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 13334 AegisName: Mirage_Huuma Name: Mirage Huuma Type: Weapon SubType: Huuma Weight: 1500 Attack: 150 MagicAttack: 160 Range: 5 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 13335 AegisName: Sinister_Huuma_J Name: Huuma of Evil Type: Weapon SubType: Huuma Buy: 100000 Weight: 600 Attack: 110 Range: 1 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 13336 AegisName: Probation_Huuma Name: Trial Ninja's Huuma Shuriken Type: Weapon SubType: Huuma Buy: 20 Attack: 200 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KO_HUUMARANKA",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bLongAtkRate,getskilllv("NJ_TOBIDOUGU"); } - Id: 13337 AegisName: Huuma_Flutter_Snow_IL Name: Illusion Huuma Fluttering Snow Type: Weapon SubType: Huuma Weight: 1500 Attack: 250 MagicAttack: 50 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(30*(.@r/3)); bonus bLongAtkRate,(3*.@r); - Id: 13338 AegisName: Huuma_Bird_Wing_IL Name: Illusion Wing Shuriken Type: Weapon SubType: Huuma Weight: 1500 Attack: 300 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bDex,2; bonus2 bSkillAtk,"KO_HAPPOKUNAI",(9*getrefine()); - Id: 13339 AegisName: Neev_Huuma_Shuriken Name: Neev Huuma Shuriken Type: Weapon SubType: Huuma Buy: 100000 Weight: 350 Attack: 150 MagicAttack: 160 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 13340 AegisName: Huuma_Hundred_Petal_J Name: Huuma Shuriken of Dancing Petals Type: Weapon SubType: Huuma Weight: 2000 Attack: 250 MagicAttack: 180 Range: 1 Slots: 3 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,.@r; if (.@r>=9) bonus bSPGainValue,20; - Id: 13341 AegisName: Rebeginer_KO_Humma Name: Beginner Kagerou&Oboro's Huuma Shuriken Type: Weapon SubType: Huuma Attack: 170 Range: 1 Slots: 1 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; bonus bMatk,130; if (getrefine()>=7) { bonus2 bSkillAtk,"KO_HUUMARANKA",15; } - Id: 13343 AegisName: Variant_Huuma Name: Abyss Huuma Type: Weapon SubType: Huuma Weight: 1500 Attack: 150 MagicAttack: 160 Range: 3 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 13345 AegisName: Humma_Clear Name: Huuma Shuriken Clearness Type: Weapon SubType: Huuma Buy: 20 Weight: 1300 Attack: 230 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r >= 9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddEle,Ele_Fire,15; bonus2 bAddEle,Ele_Dark,15; } } } - Id: 13346 AegisName: Ein_BHHuuma Name: Grinder Huuma Shuriken Type: Weapon SubType: Huuma Weight: 1800 Attack: 280 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,15; bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KO_HUUMARANKA",15; if (.@r>=7) { bonus bVariableCastrate,-15; bonus bBaseAtk,60; } if (.@r>=9) { bonus2 bSkillAtk,"KO_HUUMARANKA",20; autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } - Id: 13347 AegisName: R_Huuma_Shuriken Name: Royal Huuma Shuriken Type: Weapon SubType: Huuma Weight: 1500 Attack: 240 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; } - 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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkEle,Ele_Fire; bonus2 bSPLossRate,15,10000; bonus2 bHPDrainRate,1000,1; - 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 Classes: All_Upper: 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 Classes: All_Upper: 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "TF_DOUBLE",5; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Human,40; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkEle,Ele_Fire; bonus bInt,2; skill "MG_FIREBOLT",5; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkEle,Ele_Ghost; bonus3 bSPVanishRate,80,45,BF_WEAPON|BF_MAGIC|BF_MISC; 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 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; 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 MagicAttack: 74 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 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: All_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,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - 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: All_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,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 13414 AegisName: Elemental_Sword Name: Elemental Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 1200 Attack: 105 MagicAttack: 95 Range: 1 Slots: 3 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | bonus bStr,2; bonus bInt,4; bonus bDex,1; 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 - 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; .@r = getrefine(); if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,pow(min(14,.@r)-4,2); bonus2 bAddRace,RC_Player_Human,pow(min(14,.@r)-4,2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; } if (.@r>6) bonus bAspdRate,5; if (.@r>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 MagicAttack: 80 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: | .@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if (.@r>5) bonus bUseSPrate,-10; if (.@r>8) bonus bInt,5; - Id: 13418 AegisName: Krieger_Onehand_Sword3 Name: Glorious Holy Avenger Type: Weapon SubType: 1hSword Buy: 20 Attack: 130 MagicAttack: 80 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: | .@r = getrefine(); bonus bInt,6; bonus bInt,.@r-5; bonus bUnbreakableWeapon; if (.@r>5) bonus bUseSPrate,-10; if (.@r>8) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000; if (.@r>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 Script: | bonus2 bAddEle,Ele_Undead,40; bonus2 bMagicAddEle,Ele_Undead,40; - 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 Script: | bonus bStr,2; bonus bInt,2; bonus3 bAutoSpell,"WZ_METEOR",1,5; - 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: All_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: | bonus2 bAddSize,Size_All,40; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 13423 AegisName: P_Sabre1 Name: Eden Sabre I Type: Weapon SubType: 1hSword Attack: 147 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: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13424 AegisName: P_Sabre2 Name: Eden Sabre II Type: Weapon SubType: 1hSword 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: 2 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13425 AegisName: Tourist_Sword Name: Tourist Sword Type: Weapon SubType: 1hSword Weight: 500 Attack: 61 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,1; bonus bDex,1; - Id: 13426 AegisName: F_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: 13427 AegisName: F_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 bHPDrainValue,1; bonus2 bSPLossRate,15,10000; - Id: 13428 AegisName: Priest_Sword Name: Priest Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 1200 Attack: 170 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: 4 EquipLevelMin: 50 Refineable: true - Id: 13429 AegisName: E_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: 13430 AegisName: E_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; - Id: 13431 AegisName: Chrome_Sword Name: Chrome Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 2200 Attack: 180 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | bonus bAgi,1; bonus bMaxHPrate,-5; bonus bUnbreakableWeapon; - Id: 13432 AegisName: Adventure_Sword Name: Adventure Sword Type: Weapon SubType: 1hSword Attack: 80 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 - Id: 13433 AegisName: Academy_Sword Name: Academy Sword Type: Weapon SubType: 1hSword Weight: 1200 Attack: 120 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus bMaxHP,200; bonus bMaxSP,100; .@b = BaseLevel/10; bonus bMaxHP,-40*.@b; bonus bMaxSP,-20*.@b; - Id: 13434 AegisName: P_Saber3 Name: Eden Saber III Type: Weapon SubType: 1hSword 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: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 13435 AegisName: Fire_Brand_ Name: Fireblend Type: Weapon SubType: 1hSword Buy: 20 Weight: 500 Attack: 100 MagicAttack: 108 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: 4 EquipLevelMin: 40 Refineable: true Script: | bonus bAtkEle,Ele_Fire; skill "MG_FIREBOLT",3; bonus3 bAutoSpell,"MG_FIREBOLT",3,100; - Id: 13436 AegisName: Ice_Falchon_ Name: Ice Falchion Type: Weapon SubType: 1hSword Buy: 20 Weight: 600 Attack: 100 MagicAttack: 108 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: 4 EquipLevelMin: 40 Refineable: true Script: | bonus bAtkEle,Ele_Water; skill "MG_COLDBOLT",3; bonus3 bAutoSpell,"MG_COLDBOLT",3,100; - Id: 13437 AegisName: Orcish_Sword_ Name: Orcish Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 800 Attack: 90 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: 5 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 13438 AegisName: Magical_Blade Name: Magical Blade Type: Weapon SubType: 1hSword Buy: 60000 Weight: 2000 Attack: 165 MagicAttack: 110 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: 4 EquipLevelMin: 105 Refineable: true - Id: 13439 AegisName: TE_Woe_Sword Name: TE Woe Sword Type: Weapon SubType: 1hSword Attack: 120 MagicAttack: 100 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: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Poison,1000; - Id: 13440 AegisName: Ceremonial_Sword Name: Ceremonial Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 500 Attack: 60 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 EquipLevelMin: 1 Refineable: true Script: | bonus bAtkEle,Ele_Holy; - Id: 13441 AegisName: Thanos_Sword Name: Thanos Sword Type: Weapon SubType: 1hSword Buy: 10 Weight: 700 Attack: 150 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 13442 AegisName: Old_Parasol Name: Old Parasol Type: Weapon SubType: 1hSword Buy: 10 Weight: 500 Attack: 120 MagicAttack: 80 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: 80 Refineable: true Script: | bonus bMatk,getrefine()*10; skill "MG_SOULSTRIKE",10; - Id: 13444 AegisName: Pala Name: Pala Type: Weapon SubType: 1hSword Buy: 20 Weight: 700 Attack: 190 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 Refineable: true Script: | bonus bAspdRate,8; - Id: 13445 AegisName: Half_BF_Sword1 Name: Half BF Sword1 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 Script: | bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; - Id: 13446 AegisName: Star_Dust_Blade_ Name: Star Dust Blade Type: Weapon SubType: 1hSword Buy: 1 Weight: 1000 Attack: 140 Range: 1 Slots: 3 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 45 Refineable: true Script: | bonus2 bAddEff,Eff_Stun,500; bonus bUnbreakableWeapon; - Id: 13447 AegisName: Byeorrun_Gum_ Name: Byeollungum Type: Weapon SubType: 1hSword Buy: 1 Weight: 900 Attack: 150 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: 40 Refineable: true Script: | bonus2 bSubClass,Class_Normal,-10; bonus2 bAddClass,Class_Boss,50; bonus bAllStats,2; - Id: 13448 AegisName: Magical_Blade_ Name: Magical Blade Type: Weapon SubType: 1hSword Buy: 1 Weight: 2000 Attack: 165 MagicAttack: 110 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: 4 EquipLevelMin: 105 Refineable: true - Id: 13449 AegisName: Gladius_Daemonicus Name: Gladius Daemonicus Type: Weapon SubType: 1hSword Buy: 20 Weight: 1200 Attack: 130 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: 80 Refineable: true Script: | bonus bAspdRate,10; .@r = getrefine(); if (.@r>=9) { autobonus "{ bonus bAspd,3; }",30,5000; } - Id: 13450 AegisName: LI_Saber Name: Saber Type: Weapon SubType: 1hSword Buy: 10 Weight: 1000 Attack: 115 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 Trade: NoDrop: true - Id: 13451 AegisName: Ru_Blue_Sword Name: Ru Blue Sword Type: Weapon SubType: 1hSword Buy: 1 Weight: 1200 Attack: 200 Range: 1 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bStr,5; bonus bAgi,5; - Id: 13452 AegisName: Ru_Gold_Sword Name: Ru Gold Sword Type: Weapon SubType: 1hSword Weight: 1200 Attack: 190 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bStr,8; bonus bAgi,8; - Id: 13453 AegisName: Mysteltainn_S Name: Mysteltainn Type: Weapon SubType: 1hSword Buy: 20 Weight: 1000 Attack: 170 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: 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: 13454 AegisName: Scarlet_Saber Name: Crimson Saber Type: Weapon SubType: 1hSword Buy: 20 Weight: 850 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: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 13455 AegisName: Sinister_Saber Name: Saber of Vicious Mind Type: Weapon SubType: 1hSword Buy: 20 Weight: 1350 Attack: 135 Range: 1 Slots: 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: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 13456 AegisName: Union_Sword Name: Unity Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 420 Attack: 80 Range: 1 Slots: 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 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 13457 AegisName: Union_Dagger Name: Unity Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 270 Attack: 52 Range: 1 Slots: 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 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 13460 AegisName: Sealed_Magic_Sword Name: Sealed Magic Sword Type: Weapon SubType: 1hSword Weight: 1500 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 Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@sp = -100; bonus3 bAutoSpell,"MG_FIREBOLT",5,100; if (.@r >= 7) { .@sp += 50; .@matk = 85; if (.@r >= 10) { bonus bAspd,1; .@sp += 50; .@matk += 45; } bonus bMatk,.@matk; } bonus bMaxSP,.@sp; - Id: 13461 AegisName: Sealed_Evil_Sword Name: Sealed Evil Sword Type: Weapon SubType: 1hSword Weight: 1500 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 Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@def = -50; .@mdef = -10; bonus3 bAutoSpell,"WZ_FROSTNOVA",5,100; if (.@r >= 7) { .@crit = 30; .@mdef += 10; if (.@r >= 10) { bonus bAspd,1; .@crit += 20; .@def += 50; } bonus bCritical,.@crit; } bonus bDef,.@def; bonus bMdef,.@mdef; - Id: 13462 AegisName: Sealed_Max_Sword Name: Sealed Maximum Sword Type: Weapon SubType: 1hSword Weight: 1500 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 Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@hp = -1000; bonus3 bAutoSpell,"MG_COLDBOLT",5,100; if (.@r >= 7) { .@atk = 65; .@hp += 500; if (.@r >= 10) { bonus bAspd,1; .@atk += 45; .@hp += 500; } bonus bBaseAtk,.@atk; } if (.@hp) { bonus bMaxHP,.@hp; } - Id: 13465 AegisName: Save_The_King Name: Save the King Type: Weapon SubType: 1hSword Buy: 20 Weight: 600 Attack: 170 MagicAttack: 130 Range: 1 Slots: 3 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Ghost; if (getskilllv("KN_RIDING") < 1) { bonus bNoSizeFix; bonus bFlee,2*getskilllv("CR_SPEARQUICKEN"); bonus bCritical,3*getskilllv("CR_SPEARQUICKEN"); bonus bAspdRate,3*getskilllv("CR_SPEARQUICKEN"); bonus2 bSkillAtk,"CR_GRANDCROSS",20*.@r; bonus2 bSkillAtk,"SM_BASH",20*.@r; bonus2 bSkillAtk,"CR_HOLYCROSS",20*.@r; if (.@r>=6) { bonus bHealPower,40; bonus bHealPower2,15; bonus bAddItemHealRate,15; if (.@r>=8) { bonus bHealPower,40; bonus bHealPower2,15; bonus bAddItemHealRate,15; } } } - Id: 13466 AegisName: Diva_Blade Name: Diva Blade Type: Weapon SubType: 1hSword Weight: 1200 Attack: 150 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 13467 AegisName: Mirage_Blade Name: Mirage Blade Type: Weapon SubType: 1hSword Weight: 1200 Attack: 150 MagicAttack: 130 Range: 5 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 13468 AegisName: Sinister_Saber_J Name: Saber of Evil Type: Weapon SubType: 1hSword Buy: 100000 Weight: 600 Attack: 105 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 13469 AegisName: Immaterial_Sword_IL Name: Illusion Immaterial Sword Type: Weapon SubType: 1hSword Weight: 900 Attack: 180 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: 120 Refineable: true Script: | .@r = getrefine(); bonus bSPDrainValue,-1; bonus bUnbreakableWeapon; if (.@r >= 12) { .@val = 20; } bonus2 bSPVanishRate,(80+(20*.@r)),(30+.@val); bonus bAtkEle,Ele_Ghost; - Id: 13470 AegisName: Sealed_Magic_SwordJ Name: Sealed Magic Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 1500 Attack: 180 MagicAttack: 160 Range: 1 Slots: 3 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Rogue: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Fire; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutoSpell,"WL_CRIMSONROCK",3,10+((.@r*5)+(BaseLevel/5)); - Id: 13471 AegisName: Sealed_Evil_SwordJ Name: Sealed Evil Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 1500 Attack: 180 MagicAttack: 160 Range: 1 Slots: 3 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Rogue: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Dark; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutoSpell,"WL_HELLINFERNO",3,10+((.@r*5)+(BaseLevel/5)); - Id: 13472 AegisName: Sealed_Max_SwordJ Name: Sealed Maximum Sword Type: Weapon SubType: 1hSword Buy: 20 Weight: 1500 Attack: 180 MagicAttack: 160 Range: 1 Slots: 3 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Rogue: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Holy; autobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutoSpell,"AB_JUDEX",3,10+((.@r*5)+(BaseLevel/5)); - Id: 13473 AegisName: Gods_Sword Name: God's Sword Type: Weapon SubType: 1hSword Weight: 1300 Attack: 150 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 Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bAgi,5; bonus bCritical,50; bonus bFlee2,20; bonus2 bAddRace,RC_Demon,30; .@r = getrefine(); .@rate = 1+.@r; .@s = getskilllv("ASC_BREAKER"); .@slv = 3; if (.@s>3) { .@slv = .@s; } bonus3 bAutoSpell,"ASC_BREAKER",.@slv,.@rate; if (.@r>=8) { skill "ASC_BREAKER",3; } - Id: 13474 AegisName: Sword_Z Name: Sword Type: Weapon SubType: 1hSword Buy: 1 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: 13475 AegisName: Falchion_Z Name: Falchion Type: Weapon SubType: 1hSword Buy: 1 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: 13476 AegisName: Blade_Z Name: Blade Type: Weapon SubType: 1hSword Buy: 1 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: 13477 AegisName: Lapier_Z Name: Rapier Type: Weapon SubType: 1hSword Buy: 10 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: 13478 AegisName: Scimiter_Z Name: Scimitar Type: Weapon SubType: 1hSword Buy: 10 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: 13479 AegisName: Tsurugi_z Name: Tsurugi Type: Weapon SubType: 1hSword Buy: 1 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: 13480 AegisName: Ring_Pommel_Saber_Z Name: Ring Pommel Saber Type: Weapon SubType: 1hSword Buy: 1 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: 13481 AegisName: Saber_Z Name: Saber Type: Weapon SubType: 1hSword Buy: 1 Weight: 1000 Attack: 115 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: 13482 AegisName: Orcish_Blade Name: Orcish Blade Type: Weapon SubType: 1hSword Buy: 1 Weight: 1200 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: 50 Refineable: true Script: | bonus2 bSkillAtk,"SM_BASH",5; bonus bMaxHP,150; bonus bHealPower2,5; bonus bUseSPrate,-50; .@r = getrefine(); if (.@r>=7) { bonus2 bSkillAtk,"SM_BASH",5; bonus bHealPower2,5; } if (.@r>=9) { bonus2 bSkillAtk,"SM_BASH",5; } - Id: 13483 AegisName: Rebeginer_GN_Sword Name: Beginner Genetic's Sword Type: Weapon SubType: 1hSword Buy: 1 Attack: 140 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) { bonus2 bSkillAtk,"GN_CARTCANNON",15; } - Id: 13485 AegisName: Sword_Of_Bluefire Name: Red Lotus Sword Type: Weapon SubType: 1hSword Buy: 1 Weight: 800 Attack: 180 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=9) { bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if (.@r>=11) { bonus2 bSkillAtk,"GN_CARTCANNON",15; } - Id: 13490 AegisName: Woe_Onehand_Sword1_Z Name: Lesser Guild Member's Flamberge Type: Weapon SubType: 1hSword Weight: 700 Attack: 110 Range: 1 Jobs: Crusader: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus3 "{ .@r = getrefine(); bonus bMaxHP,1000+((.@r-10)*50); }",1000,30000,"CR_DEVOTION"; - Id: 13492 AegisName: Variant_Blade Name: Abyss Blade Type: Weapon SubType: 1hSword Buy: 1 Weight: 1200 Attack: 150 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 13493 AegisName: Cannon_Rapier_OS Name: Cannon Rapier-OS Type: Weapon SubType: 1hSword Buy: 20 Weight: 800 Attack: 160 MagicAttack: 150 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: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),40; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBALL",30; if (.@r >= 11) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,40; } } } - Id: 13495 AegisName: Evt_Bluefire_Sword Name: Sealed Red Lotus Sword Type: Weapon SubType: 1hSword Buy: 1 Attack: 180 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; } if (.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",15; } - Id: 13497 AegisName: Edge_Z Name: Edge Type: Weapon SubType: 1hSword Buy: 1 Weight: 1200 Attack: 60 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: 60 Refineable: true Script: | bonus bHit,-40; bonus3 bAddEffOnSkill,"RG_RAID",Eff_Bleeding,100; bonus2 bSkillAtk,"RG_RAID",50; .@s = getskilllv("SM_SWORD"); bonus bHit,3*.@s; bonus2 bAddClass,Class_All,2; .@r = getrefine(); if (.@r>=9) { bonus bHit,2*.@s; bonus2 bAddClass,Class_All,2; } - Id: 13498 AegisName: Nagan_Z Name: Nagan Type: Weapon SubType: 1hSword Buy: 1 Weight: 500 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: 4 EquipLevelMin: 60 Refineable: true Script: | .@b = readparam(bStr); bonus bCritical,(.@b/10); bonus bCritAtkRate,2; skill "TF_DOUBLE",5; .@r = getrefine(); if (.@r>=1) { bonus bCritAtkRate,(.@b/10); } - Id: 13499 AegisName: Sword_Kladenets Name: Kladenets Type: Weapon SubType: 1hSword Buy: 1 Weight: 1500 Attack: 180 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@rate = 1+.@r; bonus3 bAutoSpellWhenHit,"SO_PSYCHIC_WAVE",3,.@rate; if (.@r>=10) { bonus bFixedCastrate,-70; } - Id: 15000 AegisName: Bone_Plate Name: Bone Plate Type: Armor Buy: 20 Weight: 1000 Defense: 60 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Rogue: true Swordman: true Thief: true Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 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: 15002 AegisName: Rune_Plate Name: Rune Plate Type: Armor Defense: 95 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 15003 AegisName: Freyja_SRobe7 Name: Freyja Soul Robe7 Type: Armor Weight: 300 Defense: 7 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHP,700; - Id: 15004 AegisName: Freyja_SRobe30 Name: Freyja Soul Robe30 Type: Armor Weight: 300 Defense: 7 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHP,700; - Id: 15005 AegisName: Freyja_SRobe60 Name: Freyja Soul Robe60 Type: Armor Weight: 300 Defense: 7 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHP,700; - Id: 15006 AegisName: Freyja_SRobe90 Name: Freyja Soul Robe90 Type: Armor Weight: 300 Defense: 7 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bMaxHP,700; - Id: 15007 AegisName: Time_Keepr_Robe Name: Time Keeper Robe Type: Armor Buy: 30000 Defense: 62 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,1; bonus bStr,2; bonus bMaxHP,200; - Id: 15008 AegisName: Flame_Sprits_Armor__ Name: Flame Sprits Armor Type: Armor Buy: 20 Weight: 1000 Defense: 25 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMdef,1; bonus bDefEle,Ele_Fire; bonus2 bSubEle,Ele_Earth,4; - Id: 15009 AegisName: Para_Team_Uniform1 Name: Eden Team Uniform I Type: Armor Defense: 35 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 7 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bMaxSP,10; - Id: 15010 AegisName: Para_Team_Uniform2 Name: Eden Team Uniform II Type: Armor Defense: 46 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,200; bonus bMaxSP,20; - Id: 15011 AegisName: Para_Team_Uniform3 Name: Eden Team Uniform III Type: Armor Defense: 58 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,300; bonus bMaxSP,30; bonus bMdef,5; - Id: 15012 AegisName: Puente_Robe Name: Puente Robe Type: Armor Buy: 12000 Weight: 400 Defense: 42 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 22 Refineable: true Script: | bonus bFixedCastrate,-3; bonus bHealPower,5; - Id: 15013 AegisName: Claire_Suits Name: Claire Suits Type: Armor Buy: 28000 Weight: 2800 Defense: 58 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 22 Refineable: true - Id: 15014 AegisName: Ebone_Armor Name: Ebon Armor Type: Armor Buy: 40000 Weight: 4500 Defense: 93 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true - Id: 15015 AegisName: Upg_Adv_Suit Name: Upg Adv Suit Type: Armor Buy: 20 Weight: 150 Defense: 25 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 15016 AegisName: Upg_Coat Name: Upg Coat Type: Armor Buy: 20 Weight: 600 Defense: 47 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 15017 AegisName: Upg_Saint_Robe Name: Upg Saint Robe Type: Armor Buy: 20 Weight: 300 Defense: 55 Slots: 1 Jobs: Acolyte: true Alchemist: true Blacksmith: true Merchant: true Monk: true Priest: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMdef,5; bonus bMaxHPrate,3; - Id: 15018 AegisName: Upg_Tights Name: Upg Tights Type: Armor Buy: 20 Weight: 250 Defense: 32 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bDex,1; bonus bMaxHPrate,3; - Id: 15019 AegisName: Upg_Thief_Cloth Name: Upg Thief Cloth Type: Armor Buy: 20 Weight: 100 Defense: 45 Slots: 1 Jobs: Assassin: true KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bAgi,1; bonus bMaxHPrate,3; - Id: 15020 AegisName: Upg_Mail Name: Upg Mail Type: Armor Buy: 20 Weight: 1650 Defense: 60 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 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 15021 AegisName: Upg_Formal_Dress Name: Upg Formal Dress Type: Armor Buy: 20 Weight: 150 Defense: 45 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | bonus bMaxHPrate,3; - Id: 15022 AegisName: Brazil_Swimsuit Name: Brazil Swimsuit Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bStr,4; bonus bInt,4; bonus bMdef,3; bonus2 bSubEle,Ele_Water,20; - Id: 15023 AegisName: Half_Brynhild Name: Half Brynhild Type: Armor Buy: 20 Defense: 60 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 47 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bMaxHP,20*BaseLevel; bonus bMaxSP,5*BaseLevel; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bUnbreakableArmor; bonus bNoKnockback; - Id: 15024 AegisName: Army_Padding Name: Army Padding Type: Armor Weight: 10 Defense: 10 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true - Id: 15025 AegisName: Golden_Rod_Robe Name: Golden Rod Robe Type: Armor Buy: 20 Weight: 500 Defense: 40 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDefEle,Ele_Wind; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_VERMILION",-3000; if (readparam(bInt)>=120) { bonus bInt,1; } - Id: 15026 AegisName: Aqua_Robe Name: Aqua Robe Type: Armor Buy: 20 Weight: 500 Defense: 40 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDefEle,Ele_Water; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_STORMGUST",-3000; if (readparam(bInt)>=120) { bonus bInt,1; } - Id: 15027 AegisName: Crimson_Robe Name: Crimson Robe Type: Armor Buy: 20 Weight: 500 Defense: 40 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDefEle,Ele_Fire; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_METEOR",-3000; if (readparam(bInt)>=120) { bonus bInt,1; } - Id: 15028 AegisName: Forest_Robe Name: Forest Robe Type: Armor Buy: 20 Weight: 500 Defense: 40 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDefEle,Ele_Earth; bonus bMdef,10; bonus bInt,1; bonus2 bSkillVariableCast,"WZ_HEAVENDRIVE",-3000; if (readparam(bInt)>=120) { bonus bInt,1; } - Id: 15029 AegisName: Robe_Of_Affection Name: Robe Of Affection Type: Armor Buy: 20 Weight: 300 Defense: 22 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus bInt,1; bonus2 bSkillUseSP,"AB_CLEMENTIA",50; - Id: 15030 AegisName: Robe_Of_Judgement Name: Robe Of Judgement Type: Armor Buy: 20 Weight: 300 Defense: 22 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDefEle,Ele_Dark; bonus bMdef,10; bonus bStr,1; bonus bInt,1; bonus2 bSubRace,RC_All,-10; bonus2 bSubRace,RC_Undead,20; bonus2 bSubRace,RC_Demon,20; - Id: 15031 AegisName: Para_Team_Armor Name: Paradise Uniform IV Type: Armor Defense: 70 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bMaxHP,500; bonus bMaxSP,50; bonus bStr,1; bonus bInt,1; bonus bDex,1; - Id: 15032 AegisName: Tidung Name: Tidung Type: Armor Buy: 10 Weight: 500 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,10; bonus2 bSubEle,Ele_All,5; bonus2 bResEff,Eff_Stun,1500; bonus2 bResEff,Eff_Freeze,1500; - Id: 15033 AegisName: Tutorial_Mattle Name: Tutorial Mantle Type: Armor Weight: 600 Defense: 37 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 15034 AegisName: Tutorial_Mattle_ Name: Tutorial Mantle Type: Armor Weight: 600 Defense: 37 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 15035 AegisName: 2010Love_Daddy Name: 2010 Love Dad Type: Armor Buy: 10 Weight: 100 Defense: 6 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; bonus bMaxHP,150; bonus bMaxSP,150; bonus2 bResEff,Eff_Stone,9000; bonus2 bResEff,Eff_Freeze,9000; bonus2 bResEff,Eff_Stun,9000; bonus2 bResEff,Eff_Sleep,9000; bonus2 bResEff,Eff_Silence,9000; bonus2 bResEff,Eff_Curse,9000; bonus2 bResEff,Eff_Confusion,9000; bonus2 bResEff,Eff_Blind,9000; bonus2 bResEff,Eff_Poison,9000; bonus2 bResEff,Eff_Bleeding,9000; - Id: 15036 AegisName: Ur_Plate Name: Ur's Plate Type: Armor Buy: 20 Weight: 3000 Defense: 110 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,10; bonus bMaxHPrate,getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Formless,5; - Id: 15037 AegisName: Peuz_Plate Name: Peuz's Plate Type: Armor Buy: 20 Weight: 3000 Defense: 110 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,10; bonus bBaseAtk,20; bonus bFlee,17; - Id: 15038 AegisName: Sabah_Cloth Name: Sapha's Cloth Type: Armor Buy: 20 Weight: 100 Defense: 45 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bLuk,3; bonus3 bAutoSpell,"ASC_METEORASSAULT",max(getskilllv("ASC_METEORASSAULT"),1),20; - Id: 15039 AegisName: Nab_Cloth Name: Nab's Cloth Type: Armor Buy: 20 Weight: 100 Defense: 45 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bStr,2; bonus bInt,2; - Id: 15040 AegisName: Prison_Uniform Name: Prison Uniform Type: Armor Buy: 10 Weight: 1500 Defense: 5 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bHit,.@r; bonus bFlee,.@r; - Id: 15041 AegisName: Boitata_Armor Name: Boitata Armor Type: Armor Buy: 20 Weight: 600 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,7; bonus bMaxHPrate,5; bonus bFlee,5; - Id: 15042 AegisName: White_Wing_Suits Name: White Wing Suits Type: Armor Buy: 20 Weight: 100 Defense: 45 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,.@r*2; bonus bFlee,.@r; - Id: 15043 AegisName: Black_Wing_Suits Name: Black Wing Suits Type: Armor Buy: 20 Weight: 100 Defense: 45 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bInt,2; bonus bBaseAtk,getrefine()*3; - Id: 15044 AegisName: Green_Operation_Coat Name: Green Surgical Gown Type: Armor Buy: 56000 Weight: 660 Defense: 66 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDex,1; bonus bMaxSP,30; - Id: 15045 AegisName: Armor_Of_Valor Name: Armor Of Valor Type: Armor Defense: 4 Locations: Armor: true ArmorLevel: 1 Script: | bonus bHPrecovRate,10; - Id: 15046 AegisName: Siege_Plate Name: Siege Plate Type: Armor Weight: 3300 Defense: 85 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: 95 Refineable: true Script: | bonus bMdef,5; bonus2 bSubRace,RC_Player_Doram,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if (.@r>5) { bonus bHealPower2,12; bonus bAddItemHealRate,12; } if (.@r>8) { bonus bMaxHPrate,25; } - Id: 15047 AegisName: Siege_Suits Name: Siege Suit Type: Armor Weight: 750 Defense: 50 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Gunslinger: true Hunter: true KagerouOboro: true Knight: true Merchant: true Ninja: true Rebellion: true Rogue: true StarGladiator: true Swordman: true Taekwon: true Thief: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Doram,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if (.@r>5) { bonus bFlee2,5; bonus bLongAtkDef,20; } if (.@r>8) { bonus bMaxHPrate,15; } - Id: 15048 AegisName: Siege_Robe Name: Siege Robe Type: Armor Weight: 500 Defense: 40 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true Script: | bonus bMdef,20; bonus2 bSubRace,RC_Player_Doram,2; bonus2 bSubRace,RC_Player_Human,2; .@r = getrefine(); if (.@r>5) { bonus bFlee,5; bonus bLongAtkDef,15; } if (.@r>8) { bonus bMaxHP,1000; bonus bMaxSP,100; } - Id: 15049 AegisName: Armor_Of_Faith Name: Armor Of Faith Type: Armor Buy: 20 Weight: 1000 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bAllStats,4; - Id: 15050 AegisName: Armor_Of_Sanctity Name: Armor Of Sanctity Type: Armor Buy: 20 Weight: 1000 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bStr,4; bonus bInt,4; bonus bVit,4; bonus bDex,4; bonus bAgi,4; bonus bLuk,4; - Id: 15051 AegisName: Bakonawa_Armor Name: Bakunawa Scale Armor Type: Armor Buy: 20 Weight: 500 Defense: 55 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,1; - Id: 15052 AegisName: Bayani_Bakonawa_Armor Name: Bayani Bakunawa Scale Armor Type: Armor Buy: 20 Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubClass,Class_Boss,getrefine()/2; bonus bAllStats,2; - Id: 15053 AegisName: Special_Ninja_Suit Name: Special Ninja Suit Type: Armor Buy: 10000 Weight: 1200 Defense: 70 Jobs: KagerouOboro: true Ninja: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,1+(getrefine()/3); - Id: 15054 AegisName: Ninja_Scale_Armor Name: Ninja Scale Armor Type: Armor Buy: 10000 Weight: 1800 Defense: 90 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxHPrate,15; bonus bMaxSPrate,-30; - Id: 15055 AegisName: Tenebris_Latitantes Name: Tenebris Latitantes Type: Armor Buy: 10000 Weight: 1500 Defense: 60 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,1; bonus4 bAutoSpellWhenHit,"KO_ZANZOU",1,50,1; - Id: 15056 AegisName: Special_Ninja_Suit_ Name: Special Ninja Suit Type: Armor Buy: 10000 Weight: 1200 Defense: 70 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,1+(getrefine()/3); - Id: 15057 AegisName: Pure_White_Apron Name: Pure White Apron Type: Armor Buy: 20 Weight: 600 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15058 AegisName: Rider_Suit Name: Rider Suit Type: Armor Buy: 20 Weight: 1000 Defense: 40 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAgi,1+(getrefine()/2); - Id: 15059 AegisName: 2011Love_Daddy Name: 2011Love Daddy Type: Armor Buy: 20 Weight: 100 Defense: 80 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15060 AegisName: Sky_Blue_Smock Name: Sky Blue Smock Type: Armor Buy: 20 Weight: 300 Defense: 1 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (BaseLevel<80) { bonus bHealPower,5; } - Id: 15061 AegisName: Egir_Armor Name: Egir Armor Type: Armor Buy: 200000 Weight: 2600 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 110 Refineable: true Script: | bonus bAllStats,1; 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: 15062 AegisName: TE_Woe_Coat Name: TE Woe Coat Type: Armor Defense: 15 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,15; bonus bMaxHP,250; bonus bMaxSP,250; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bResEff,Eff_Freeze,2500; - Id: 15063 AegisName: TE_Woe_Chain_Mail Name: TE Woe Chain Mail Type: Armor Defense: 25 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bMaxHP,450; bonus bMaxSP,50; bonus2 bSubRace,RC_Player_Human,15; bonus2 bSubRace,RC_Player_Doram,15; bonus2 bResEff,Eff_Freeze,2500; - Id: 15064 AegisName: TE_Woe_Mage_Coat Name: TE Woe Mage Coat Type: Armor Defense: 5 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,25; bonus bMaxHP,200; bonus bMaxSP,300; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Freeze,2500; - Id: 15065 AegisName: AmeshaSpenta Name: Amesha Spenta Type: Armor Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15066 AegisName: Engraved_Armor Name: Engraved Plate Armor Type: Armor Buy: 100000 Weight: 3000 Defense: 120 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | bonus bMdef,25; - Id: 15067 AegisName: Rune_Suit Name: Rune Suit Type: Armor Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 EquipLevelMax: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 15068 AegisName: Im_Angel's_Protection Name: Advanced Angelic Protection Type: Armor Buy: 10000 Weight: 600 Defense: 40 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bMdef,30; - Id: 15069 AegisName: Suit_Of_Sid Name: Suit Of Sid Type: Armor Buy: 20 Weight: 1000 Defense: 30 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bHPGainValue,100; bonus2 bAddEle,Ele_Water,5; if (.@r>=8) bonus bMaxHP,300; - Id: 15070 AegisName: Robe_Of_Happiness Name: Happy Clothes Type: Armor Buy: 10 Weight: 1000 Defense: 5 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMdef,5; bonus bLuk,getrefine(); - Id: 15071 AegisName: Valkyrie_Robe Name: Valkyrian Robe Type: Armor Buy: 20 Weight: 2800 Defense: 55 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 All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,1; bonus bUnbreakableArmor,1; 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: 15072 AegisName: Nectar_Suit Name: Nectar Suit Type: Armor Buy: 20 Weight: 300 Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bVit,3; bonus bMdef,5; bonus bMaxHPrate,(getrefine()/2); bonus bMaxSPrate,(getrefine()/2); - Id: 15073 AegisName: Anti_Magic_Suit Name: Anti-Magic Suits Type: Armor Buy: 10 Weight: 1500 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5+((.@r >= 9) ? 2 : 0); bonus bMdef,10+((.@r >= 7) ? 5 : 0); - Id: 15074 AegisName: Geffen_Mage_Robe Name: Geffen Magic Robe Type: Armor Buy: 10 Weight: 1000 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bUseSPrate,-10-((.@r>=7) ? 5: 0); bonus bVariableCastrate,15-((.@r>=9) ? 5: 0); bonus bNoCastCancel2; - Id: 15075 AegisName: GC_Battle_Armor Name: Guillotine Cross Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,400; bonus bStr,.@r/3; bonus bDex,.@r/3; if (.@r>=10) bonus bAspd,1; if (.@r>=14) bonus bAspd,1; - Id: 15076 AegisName: RA_Battle_Armor Name: Ranger Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,400; bonus bAgi,.@r/3; bonus bDex,.@r/3; if (.@r>=10) bonus bAspd,1; if (.@r>=14) bonus bAspd,1; - Id: 15077 AegisName: LG_Battle_Armor Name: Royal Guard Battle Armor Type: Armor Defense: 60 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,500; bonus bAgi,.@r/3; bonus bVit,.@r/3; - Id: 15078 AegisName: RK_Battle_Armor Name: Rune Knight Battle Armor Type: Armor Defense: 60 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,500; bonus bStr,.@r/3; bonus bDex,.@r/3; - Id: 15079 AegisName: NC_Battle_Armor Name: Mechanic Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,400; bonus bStr,.@r/3; bonus bVit,.@r/3; if (.@r>=10) bonus2 bSkillAtk,"NC_POWERSWING",50; if (.@r>=13) bonus2 bSkillAtk,"NC_POWERSWING",50; - Id: 15080 AegisName: SC_Battle_Armor Name: Shadow Chaser Battle Armor Type: Armor Defense: 60 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300; bonus bVit,.@r/3; bonus bDex,.@r/3; bonus2 bResEff,Eff_Silence,2000; bonus2 bResEff,Eff_Stun,2000; bonus2 bResEff,Eff_Poison,2000; bonus2 bResEff,Eff_Bleeding,2000; bonus2 bResEff,Eff_Freeze,2000; bonus2 bResEff,Eff_Sleep,2000; bonus2 bResEff,Eff_Curse,2000; bonus2 bResEff,Eff_Stone,2000; bonus2 bResEff,Eff_Blind,2000; bonus2 bResEff,Eff_Confusion,2000; - Id: 15081 AegisName: SR_Battle_Armor Name: Sura Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,400; bonus bInt,.@r/3; bonus bDex,.@r/3; - Id: 15082 AegisName: AB_Battle_Armor Name: Arcbishop Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300; bonus bInt,.@r/3; bonus bDex,.@r/3; bonus bMaxHPrate,.@r/3; - Id: 15083 AegisName: WL_Battle_Armor Name: Warlock Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMaxHP,300; bonus bMatkRate,5*(.@r/3); bonus bVariableCastrate,-5*(.@r/3); - Id: 15084 AegisName: WA_Battle_Armor Name: Performer Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,400; bonus bInt,.@r/3; bonus bDex,.@r/3; - Id: 15085 AegisName: GN_Battle_Armor Name: Geneticist Battle Armor Type: Armor Defense: 55 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bMaxHP,300; - Id: 15086 AegisName: Vermilion_Bird_Armor Name: Vermilion Bird Armor Type: Armor Buy: 20 Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,5; bonus bDefEle,Ele_Fire; bonus2 bAddEle,Ele_Fire,10; - Id: 15087 AegisName: Azure_Dragon_Armor Name: Azure Dragon Armor Type: Armor Buy: 20 Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bDefEle,Ele_Water; bonus bMdef,5; bonus2 bAddEle,Ele_Water,10; - Id: 15088 AegisName: School_Uniform Name: School Uniform Type: Armor Buy: 20 Weight: 500 Defense: 25 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bAgi,1; bonus bLuk,1; bonus bMaxHP,BaseLevel*3; bonus bMaxSP,BaseLevel/2; - Id: 15089 AegisName: Lounge_Suit Name: Menswear Type: Armor Buy: 10 Weight: 300 Defense: 40 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,3+((.@r>=7)?2:0); bonus bDelayrate,-3-((.@r>=7)?2:0); bonus bVariableCastrate,-3-((.@r>=7)?2:0); - Id: 15090 AegisName: Armor_Of_Gray Name: Armor of Gray Type: Armor Buy: 10 Weight: 2400 Defense: 90 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: Armor: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | bonus bMdef,10; bonus2 bSubEle,Ele_Holy,10+getrefine()*2; - Id: 15091 AegisName: Gray_Robe Name: Gray Robe Type: Armor Buy: 20 Weight: 1300 Defense: 55 Slots: 1 Jobs: Monk: true Priest: true Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | bonus2 bSubEle,Ele_Holy,10+getrefine()*2; - Id: 15092 AegisName: Black_Tortoise_Armor Name: Black Turtle Armor Type: Armor Buy: 20 Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,5; bonus bDefEle,Ele_Wind; bonus2 bAddEle,Ele_Wind,10; - Id: 15093 AegisName: Hero_Plate Name: Hero Plate Type: Armor Buy: 10 Weight: 4000 Defense: 120 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillAtk,"RK_STORMBLAST",10; .@r = (getrefine()+1)*3; bonus5 bAutoSpell,"AL_HEAL",10,.@r,BF_SHORT,0; bonus5 bAutoSpell,"WZ_STORMGUST",10,.@r,BF_SHORT,1; - Id: 15094 AegisName: Hero_Magic_Coat Name: Hero Magic Coat Type: Armor Buy: 10 Weight: 800 Defense: 50 Slots: 1 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | bonus bMatk,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bFlee,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; .@r = getrefine(); if (.@r) { bonus bFixedCastrate,21-.@r/2; bonus bNoCastCancel2; bonus bMdef,.@r/2; } - Id: 15095 AegisName: Hero_Judgement_Shawl Name: Hero Judgement Shawl Type: Armor Buy: 10 Weight: 500 Defense: 77 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; bonus bHit,10; bonus bFlee,10; bonus2 bSkillAtk,"AB_JUDEX",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillAtk,"SR_DRAGONCOMBO",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus2 bSkillAtk,"SR_EARTHSHAKER",10; .@r = getrefine()+1; bonus5 bAutoSpell,"PR_KYRIE",10,.@r*3,BF_SHORT,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,.@r*6,BF_MAGIC,1; - Id: 15096 AegisName: Hero_Trade_Mail Name: Hero Trade Mail Type: Armor Buy: 10 Weight: 500 Defense: 100 Slots: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMatk,10; bonus bBaseAtk,10; .@r = getrefine(); if (readparam(bStr) >= 90) bonus bStr,.@r/2; if (readparam(bInt) >= 90) bonus bInt,.@r/2; if (readparam(bAgi) >= 90) bonus bAgi,.@r/2; if (readparam(bVit) >= 90) bonus bVit,.@r/2; if (readparam(bDex) >= 90) bonus bDex,.@r/2; if (readparam(bLuk) >= 90) bonus bLuk,.@r/2; .@c = (.@r+1)*30; bonus2 bAddEff,Eff_Stun,.@c; bonus2 bAddEff,Eff_Silence,.@c; bonus2 bAddEff,Eff_Curse,.@c; bonus2 bAddEff,Eff_Poison,.@c; - Id: 15097 AegisName: Hero_Hidden_Cloth Name: Hero Hidden Cloth Type: Armor Buy: 10 Weight: 200 Defense: 70 Slots: 1 Jobs: Assassin: true Rogue: true Thief: true Classes: All_Upper: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; autobonus "{ bonus bCritical,20; bonus bFlee,20; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; }",(1+getrefine())*3,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; - Id: 15098 AegisName: Hero_Taget_Suits Name: Hero Target Suit Type: Armor Buy: 10 Weight: 200 Defense: 60 Slots: 1 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bLongAtkRate,3; bonus bAspd,1; .@r = getrefine(); bonus bAllStats,1; bonus5 bAutoSpell,"AC_CONCENTRATION",10,(1+.@r)*3,BF_WEAPON,0; bonus5 bAutoSpell,"AC_DOUBLE",10,(1+.@r)*3,BF_LONG,1; - Id: 15099 AegisName: White_Tiger_Armor Name: White Tiger Armor Type: Armor Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,5; bonus bDefEle,Ele_Earth; bonus2 bAddEle,Ele_Earth,10; - Id: 15100 AegisName: Frozen_Breastplate Name: Frozen Breastplate Type: Armor Buy: 20 Weight: 1500 Defense: 20 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: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bDefEle,Ele_Water; - Id: 15101 AegisName: Harden_Breastplate Name: Hardened Breastplate Type: Armor Buy: 20 Weight: 1500 Defense: 20 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: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bDefEle,Ele_Earth; - Id: 15102 AegisName: Hunter_Mail Name: Hunter Mail Type: Armor Buy: 20 Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); if (.@r>5) .@a = (.@r-5); else .@a = 0; bonus2 bAddRace,RC_Brute,3+.@a; bonus2 bMagicAddRace,RC_Brute,3+.@a; bonus2 bAddRace,RC_Player_Doram,3+.@a; bonus2 bMagicAddRace,RC_Player_Doram,3+.@a; - Id: 15103 AegisName: Kirin_Armor Name: Kirin Armor Type: Armor Buy: 10 Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bDefEle,Ele_Holy; - Id: 15104 AegisName: FishingMan_Mail Name: Fisherman's Mail Type: Armor Buy: 10 Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | if (getrefine()>5) { .@r = getrefine()-5; } bonus2 bAddRace,RC_Fish,3+.@r; bonus2 bMagicAddRace,RC_Fish,3+.@r; - Id: 15105 AegisName: Kaftan Name: Kaftan Type: Armor Buy: 20 Weight: 400 Defense: 13 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,3; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; - Id: 15106 AegisName: Engineer_Mail Name: Engineer Mail Type: Armor Buy: 20 Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Formless,3; bonus2 bMagicAddRace,RC_Formless,3; if (.@r>5) { bonus2 bAddRace,RC_Formless,.@r-5; bonus2 bMagicAddRace,RC_Formless,.@r-5; } - Id: 15107 AegisName: Entomologist_Mail Name: Entomologist Mail Type: Armor Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Insect,3+(.@r-5); bonus2 bMagicAddRace,RC_Insect,3+(.@r-5); - Id: 15108 AegisName: VenomInsect_Armor Name: Venomous Insect Armor Type: Armor Buy: 20 Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bDefEle,Ele_Poison; bonus bMdef,5; bonus2 bAddEle,Ele_Poison,10; - Id: 15109 AegisName: Egregori_Mail Name: Egregori Mail Type: Armor Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Angel,3+max(0,(.@r-5)); bonus2 bMagicAddRace,RC_Angel,3+max(0,(.@r-5)); - Id: 15110 AegisName: Supplement_Part_Str Name: Supplement Part Str Type: Armor Buy: 25000 Weight: 2000 Defense: 80 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddClass,Class_All,5+getrefine()/4; - Id: 15111 AegisName: Upgrade_Part_Plate Name: Reinforced Parts - Gloves Type: Armor Buy: 10 Weight: 3000 Defense: 110 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableArmor; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; .@r = getrefine(); if (.@r>=7) { bonus2 bSubSize,Size_Large,10; } if (.@r>=9) { bonus2 bSubSize,Size_Small,5; bonus2 bSubSize,Size_Medium,5; } - Id: 15112 AegisName: Military_Mail Name: Military Mail Type: Armor Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_DemiHuman,3; bonus2 bAddRace,RC_Player_Human,3; bonus2 bAddRace,RC_Player_Doram,3; bonus2 bMagicAddRace,RC_DemiHuman,3; bonus2 bMagicAddRace,RC_Player_Human,3; bonus2 bMagicAddRace,RC_Player_Doram,3; if (.@r>5) { bonus2 bAddRace,RC_DemiHuman,.@r-5; bonus2 bAddRace,RC_Player_Human,.@r-5; bonus2 bAddRace,RC_Player_Doram,.@r-5; bonus2 bMagicAddRace,RC_DemiHuman,.@r-5; bonus2 bMagicAddRace,RC_Player_Human,.@r-5; bonus2 bMagicAddRace,RC_Player_Doram,.@r-5; } - Id: 15113 AegisName: Exorcist_Mail Name: Exorcist Mail Type: Armor Buy: 20 Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Undead,3+max(0,(.@r-5)); bonus2 bMagicAddRace,RC_Undead,3+max(0,(.@r-5)); - Id: 15114 AegisName: Wedding_Dress_ Name: Wedding Dress Type: Armor Weight: 500 Defense: 10 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,15; - Id: 15115 AegisName: Rose_Robe Name: Rose Robe Type: Armor Weight: 800 Defense: 8 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | bonus bInt,1; bonus bMdef,5; bonus2 bMagicAddEle,Ele_Fire,2; bonus2 bMagicAddEle,Ele_Water,2; bonus2 bMagicAddEle,Ele_Wind,2; bonus2 bMagicAddEle,Ele_Earth,2; - Id: 15116 AegisName: Airship_Armor Name: Airship's Armor Type: Armor Buy: 10 Weight: 700 Defense: 100 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,1000; bonus bMaxSP,100; bonus bMdef,10; bonus bAllStats,1; - Id: 15117 AegisName: Felock_Armor Name: Felrock's Armor Type: Armor Buy: 10 Weight: 750 Defense: 70 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Script: | bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus bAllStats,1; .@r = getrefine(); if (.@r>=7) { bonus bMaxHP,500; bonus bMaxSP,50; } if (.@r>=9) { bonus bMaxHP,200; bonus bMaxSP,20; } if (.@r>=12) { bonus bMaxHP,300; bonus bMaxSP,30; } - Id: 15121 AegisName: Robe_Of_Sarah Name: Sarah's Battle Robe Type: Armor Buy: 10 Weight: 800 Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 145 Refineable: true Script: | autobonus "{ bonus bMatk,getrefine()*8; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }"; - Id: 15122 AegisName: Botany_Mail Name: Botany Mail Type: Armor Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Plant,3; bonus2 bMagicAddRace,RC_Plant,3; if (.@r>5) { bonus2 bAddRace,RC_Plant,.@r-5; bonus2 bMagicAddRace,RC_Plant,.@r-5; } - Id: 15123 AegisName: Whikebain_Suit Name: Whikebain Suit Type: Armor Weight: 900 Defense: 56 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 105 Refineable: true Script: | .@r = getrefine(); bonus bCritAtkRate,(.@r>=7)?(6):((.@r>=5)?(4):(0)); bonus3 bAutoSpell,"DC_WINKCHARM",1,10; /* Confirm: Success rate */ - Id: 15124 AegisName: Father_Mail Name: Holy Father Mail Type: Armor Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Demon,3; bonus2 bMagicAddRace,RC_Demon,3; if (.@r>5) { bonus2 bAddRace,RC_Demon,.@r-5; bonus2 bMagicAddRace,RC_Demon,.@r-5; } - Id: 15125 AegisName: FemaleDiver_Clothe Name: Female Diver's Suit Type: Armor Buy: 20 Weight: 300 Defense: 20 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | .@r = getrefine(); if (.@r<5) .@r2 = 0; else if (.@r<6) .@r2 = 100; else if (.@r<7) .@r2 = 400; else if (.@r<8) .@r2 = 700; else if (.@r<9) .@r2 = 1400; else if (.@r<10) .@r2 = 2100; else { .@r = 10; .@r2 = 3600; } bonus2 bAddMonsterDropItem,579,(((.@r+6)*100)+.@r2); if (.@r>=7) { bonus bHPrecovRate,-100; bonus bHPGainValue,100; } - Id: 15126 AegisName: Doram_Only_Suit Name: Private Doram Suits Type: Armor Buy: 10000 Weight: 700 Defense: 80 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxHP,500; bonus bMaxSP,100; .@r = getrefine()/3; bonus bDex,.@r; bonus bInt,.@r; - Id: 15127 AegisName: Female_Poring_Earmuff Name: Poring Girl Earrings Type: Armor View: 1162 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVit,2; bonus bMaxHP,200; bonus bMdef,1; - Id: 15128 AegisName: Excelion_Suit Name: Excelion Suit Type: Armor Buy: 20 Weight: 1000 Defense: 100 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bVit,6 + (BaseLevel > 129 ? 4 : 0); bonus bMaxHPrate,(getrefine() / 3) * 4; bonus bUnbreakableArmor; - Id: 15129 AegisName: Doram_High_Suit Name: Luxury Doram Suit Type: Armor Buy: 20 Weight: 800 Defense: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; .@r = getrefine()/2; bonus bDex,.@r; bonus bInt,.@r; - Id: 15130 AegisName: Dragon_Mail Name: Dragon Mail Type: Armor Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Dragon,3; bonus2 bMagicAddRace,RC_Dragon,3; if (.@r>5) { bonus2 bAddRace,RC_Dragon,.@r-5; bonus2 bMagicAddRace,RC_Dragon,.@r-5; } - Id: 15134 AegisName: Vicious_Cloth Name: Vicious Cloth Type: Armor Weight: 1200 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Angel,5+.@r; - Id: 15135 AegisName: Dragon_Cloth Name: Dragon Cloth Type: Armor Weight: 1200 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Dragon,5+.@r; - Id: 15136 AegisName: Tatenasi_Armor Name: Old Tatenasi Armor Type: Armor Weight: 600 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,100; - Id: 15137 AegisName: Tatenasi_Armor_ Name: Tatenasi Armor Type: Armor Weight: 600 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bUnbreakableArmor; bonus bVit,getrefine(); - Id: 15138 AegisName: Egir_Armor_K Name: Aegir Armor Type: Armor Buy: 10 Weight: 1600 Defense: 25 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bMaxHP,500; bonus bMaxSP,50; bonus bUnbreakableArmor; - Id: 15139 AegisName: Shepherd_Cloth Name: Shepherd Clothes Type: Armor Weight: 1200 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Brute,5+.@r; bonus2 bSubRace,RC_Player_Doram,5+.@r; - Id: 15140 AegisName: Natural_Cloth Name: Natural Cloth Type: Armor Weight: 1200 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Formless,5+.@r; - Id: 15141 AegisName: Armor_Of_Goddess Name: Rift Ancient Armor Type: Armor Buy: 20 Weight: 500 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1500 : .@r >= 7 ? 900 : 500); bonus bMaxSP,-100; - Id: 15142 AegisName: Orca_Cloth Name: Orca Cloth Type: Armor Weight: 1200 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Fish,5+.@r; - Id: 15143 AegisName: Vermin_Cloth Name: Vermin Cloth Type: Armor Buy: 10 Weight: 1200 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Plant,(5+.@r); - Id: 15144 AegisName: Agricul_Cloth Name: Agriculture Clothes Type: Armor Buy: 10 Weight: 1200 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5+.@r; bonus2 bSubRace,RC_Insect,5+.@r; - Id: 15145 AegisName: EvilDragon_Armor Name: Evil Dragon Armor Type: Armor Weight: 4000 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); if (.@r>=10) { bonus2 bHPDrainRate,60,6; bonus2 bSPDrainRate,50,5; } else if (.@r>=9) { bonus2 bHPDrainRate,40,4; bonus2 bSPDrainRate,30,3; } else if (.@r>=8) { bonus2 bHPDrainRate,30,3; bonus2 bSPDrainRate,20,2; } - Id: 15146 AegisName: Robe_Of_Flattery Name: Flattery Robe Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | skill "SM_ENDURE",1; .@i = BaseLevel; bonus bMatk,(.@i>=140)?(150):((.@i>=120)?(100):(50)); - Id: 15147 AegisName: Robe_Of_Vituperation Name: Invective Robe Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | skill "AC_CONCENTRATION",1; .@i = getrefine()*4; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@i; bonus2 bIgnoreDefRaceRate,RC_Player_Human,.@i; bonus2 bIgnoreDefRaceRate,RC_Demon,.@i; bonus2 bIgnoreDefRaceRate,RC_Undead,.@i; - Id: 15150 AegisName: White_Shirt Name: White Shirt Type: Armor Buy: 20 Weight: 50 Defense: 25 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 6 Refineable: true Script: | bonus bMaxHP,70; bonus bFlee,5; - Id: 15151 AegisName: White_Eco_Shirt Name: White Eco-Shirt Type: Armor Buy: 20 Weight: 100 Defense: 40 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 15 Refineable: true Script: | bonus bMaxHP,150; bonus bFlee,10; - Id: 15152 AegisName: Union_Mail Name: Unity Mail Type: Armor Buy: 10 Weight: 300 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bStr,2; bonus bMaxHPrate,2*(.@r/2); } - Id: 15153 AegisName: Union_Mattle Name: Unity Mantle Type: Armor Buy: 10 Weight: 300 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,2; bonus bFlee,3*(.@r/2); } - Id: 15154 AegisName: Union_Suit Name: Unity Suit Type: Armor Buy: 10 Weight: 300 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bDex,2; bonus bCritical,2*(.@r/2); } - Id: 15155 AegisName: Union_Robe Name: Unity Robe Type: Armor Buy: 10 Weight: 300 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bInt,2; bonus bUseSPrate,-(.@r/2); } - Id: 15156 AegisName: Doram_Ele_Suit Name: Elegant Doram Suit Type: Armor Buy: 20 Weight: 900 Defense: 120 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | bonus bMaxHPrate,15; bonus bMaxSPrate,15; .@r = getrefine(); bonus bDex,.@r; bonus bInt,.@r; if (.@r > 9) bonus bUseSPrate,-5; - Id: 15162 AegisName: Lounge_Suit_ Name: Lounge Suit Type: Armor Buy: 20 Weight: 300 Defense: 40 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bAspdRate,3; bonus bVariableCastrate,-3; bonus bDelayrate,-3; if (getrefine() > 6) { bonus bAspdRate,2; bonus bVariableCastrate,-2; bonus bDelayrate,-2; } - Id: 15163 AegisName: Agenda_Robe Name: Agenda Robe Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | skill "SA_SPELLBREAKER",1; if (BaseLevel >= 140) { .@val = 14; } else if (BaseLevel >= 120) { .@val = 9; } else { .@val = 5; } bonus bMatkRate,.@val; - Id: 15164 AegisName: Consultation_Robe Name: Consultation Robe Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bVit,5; skill "PA_SACRIFICE",1; bonus2 bSubEle,Ele_Dark,.@r*3; bonus2 bSubEle,Ele_Fire,.@r*3; - Id: 15165 AegisName: PureWhite_Marching_Hat Name: Pure White Marching Hat Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1470 Script: | .@r = getrefine(); bonus bStr,2; autobonus "{ bonus bAtkEle,Ele_Ghost; }",max(1,.@r*2),60000,BF_WEAPON,"{ specialeffect2 EF_ASPERSIO; }"; - Id: 15166 AegisName: Necklace_Rosary Name: Rosary Necklace Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 60 View: 1471 Script: | bonus bFlee2,2; bonus bHealPower,3; - Id: 15167 AegisName: Toughen_Time_Keepr_Robe Name: Enhanced Time Keeper Robe Type: Armor Defense: 74 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,2; bonus bFlee2,3; bonus bMdef,3; bonus bMaxHP,500; bonus bMaxSP,50; - Id: 15169 AegisName: Kardui_Robe Name: Kardui Robe Type: Armor Buy: 20 Weight: 800 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10; bonus bMdef,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; if (.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if (.@r>=8) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bUnbreakableArmor; } if (.@r>=9) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } - Id: 15170 AegisName: Goibne's_Armor_ Name: Goibne's Armor Type: Armor Buy: 50000 Weight: 3500 Defense: 58 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 54 Refineable: true Script: | bonus bVit,2; bonus bMaxHPrate,10; - Id: 15171 AegisName: Angeling_Suit Name: Angeling Suit Type: Armor Weight: 400 Defense: 77 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,20; bonus bMaxHP,1000; bonus bMaxSP,100; if (BaseLevel >= 100) { bonus bMaxHP,30*BaseLevel; bonus bMaxSP,5*BaseLevel; } if (.@r >= 7) bonus bMatkRate,10; if (.@r >= 8) skill "BS_WEAPONPERFECT",5; if (.@r >= 9) bonus bDefEle,Ele_Holy; - Id: 15173 AegisName: Cursed_Devils_Mail Name: Curse-Spell Mail Type: Armor Buy: 20 Weight: 1000 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSubEle,Ele_All,5; bonus bAtkRate,10; bonus bMatkRate,10; if (getrefine()>=7) { bonus bUnbreakableArmor; bonus bMaxHPrate,5; bonus bMaxSPrate,5; } - Id: 15174 AegisName: Supper_Swimsuit_K Name: Surfer Swimsuit Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bMaxHPrate,(getrefine()/3)+5; bonus bMaxSPrate,(getrefine()/3)+5; - Id: 15175 AegisName: Armor_Of_Flamedragon Name: Flame Dragon Armor Type: Armor Buy: 20 Weight: 400 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); if (.@r>=9) .@val = 20; else if (.@r>=7) .@val = 10; bonus bAllStats,1; bonus bHit,10+.@val; bonus2 bAddClass,Class_Boss,.@val; - Id: 15176 AegisName: Vigilante_Suits Name: Vigilante Suit Type: Armor Weight: 500 Defense: 50 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDex,5; bonus2 bWeaponDamageRate,W_BOW,(.@r/2)*3; if (.@r>=9) bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; - Id: 15177 AegisName: Robe_Of_Elemental Name: Elemental Robe Type: Armor Weight: 500 Defense: 40 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,10; bonus bMatk,5*(.@r/2); if (.@r>=9) bonus3 bAutoSpell,"MG_THUNDERSTORM",max(5,getskilllv("MG_THUNDERSTORM")),50; - Id: 15178 AegisName: Golden_Ninja_Suit Name: Golden Ninja Suit Type: Armor Weight: 500 Defense: 50 Jobs: KagerouOboro: true Ninja: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bFlee,5*(.@r/2); if (.@r>=9) bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; - Id: 15179 AegisName: Mine_Worker_Vest Name: Mine Worker's Vest Type: Armor Weight: 1500 Defense: 80 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bFlee,(10+4*(.@r/2)); if (.@r>=9) bonus bCritical,5; - Id: 15180 AegisName: Hippie_Cloth Name: Hippie Clothes Type: Armor Weight: 500 Defense: 50 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20; if (.@r >= 9) bonus3 bAutoSpell,"AC_DOUBLE",max(3,getskilllv("AC_DOUBLE")),10; - Id: 15181 AegisName: Para_Team_Armor100 Name: Awakened Eden Group Uniform I Type: Armor Buy: 20 Defense: 80 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,1; bonus bMaxHP,700; bonus bMaxSP,100; bonus bMdef,7; - Id: 15182 AegisName: Para_Team_Armor115 Name: Awakened Eden Group Uniform II Type: Armor Buy: 20 Defense: 85 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,1; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; - Id: 15183 AegisName: Para_Team_Armor130 Name: Awakened Eden Group Uniform III Type: Armor Buy: 20 Defense: 90 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,2; bonus bMaxHP,1100; bonus bMaxSP,120; bonus bMdef,11; - Id: 15184 AegisName: Para_Team_Armor145 Name: Awakened Eden Group Uniform IV Type: Armor Buy: 20 Defense: 100 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,2; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; - Id: 15185 AegisName: Para_Team_Armor160 Name: Awakened Eden Group Uniform V Type: Armor Buy: 20 Defense: 100 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,2; bonus bUseSPrate,-5; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMdef,15; bonus2 bSubEle,Ele_All,5; bonus2 bSubEle,Ele_Neutral,-5; - Id: 15186 AegisName: Kafra_Suit Name: Kafra Uniform Type: Armor Buy: 20 Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; .@r = getrefine(); bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; bonus bMaxHPrate,(3*(.@r>=7)+5*(.@r>=9)); bonus bMaxSPrate,(3*(.@r>=7)+5*(.@r>=9)); if (.@r>=12) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } - Id: 15187 AegisName: Diva_Robe Name: Diva Robe Type: Armor Weight: 1000 Defense: 80 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus bHPrecovRate,10; if (.@r>=9) bonus bHPrecovRate,20; - Id: 15188 AegisName: Mirage_Robe Name: Mirage Robe Type: Armor Weight: 1000 Defense: 80 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus bSPrecovRate,10; if (.@r>=9) bonus bSPrecovRate,20; - Id: 15189 AegisName: Einherial_Armor Name: Einherjar Armor Type: Armor Buy: 20 Weight: 800 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus bMdef,5; bonus bBaseAtk,10; .@r = getrefine(); if (.@r>=7) { bonus2 bSubRace,RC_DemiHuman,2; } if (.@r>=8) { bonus2 bSubRace,RC_DemiHuman,2; } if (.@r>=9) { bonus2 bSubRace,RC_DemiHuman,2; } - Id: 15191 AegisName: Khalitzburg_Armor Name: Khalitzburg Knight Armor Type: Armor Buy: 20 Weight: 100 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bLongAtkRate,2*getrefine(); bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; - Id: 15195 AegisName: Puente_Robe_IL Name: Illusion Puente Robe Type: Armor Buy: 20 Weight: 400 Defense: 52 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bFixedCastrate,-3; .@r = getrefine(); bonus bHealPower,(5+.@r); bonus bAddItemHealRate,(5+.@r); - Id: 15196 AegisName: Armor_Of_Seadragon Name: Sea Dragon Armor Type: Armor Buy: 20 Weight: 400 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bUseSPrate,-10; if (.@r >= 7) { bonus bVariableCastrate,-5; bonus2 bMagicAddClass,Class_Boss,10; bonus bUseSPrate,-5; if (.@r >= 9) { bonus bVariableCastrate,-5; bonus2 bMagicAddClass,Class_Boss,10; bonus bUseSPrate,-5; } } - Id: 15204 AegisName: Abyss_Dress Name: Abyss Dress Type: Armor Buy: 10 Weight: 400 Defense: 120 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Dark; if (.@r>=5) { .@val = 10; if (.@r>=7) { .@val += 15; if (.@r>=9) { .@val += 15; } } bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bMagicAddEle,Ele_Dark,.@val; bonus2 bMagicAddEle,Ele_Undead,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; } - Id: 15205 AegisName: Holy_Coat Name: Medical Scrubs Type: Armor Buy: 20 Weight: 1000 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; .@val = 1; if (.@r >= 7) { .@def = 50; bonus bUnbreakableArmor,1; .@val += 2; if (.@r >= 8) { .@def += 100; .@val += 3; bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; if (.@r >= 9) { .@def += 150; .@val += 4; bonus2 bResEff,Eff_Stone,5000; } } bonus bDef,.@def; } bonus bHealPower,2*.@val; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; - Id: 15207 AegisName: 2017RTCRobe Name: 2017 RTC Battle Robe Type: Armor Weight: 700 Defense: 40 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-6; bonus bHealPower,15; bonus bAddItemHealRate,15; if (.@r>=7) { bonus bBaseAtk,15; bonus bMatk,15; if (.@r>=9) { bonus bBaseAtk,20; bonus bMatk,20; } } - Id: 15208 AegisName: Rora_Plate_Mail Name: Lola's Plate Mail Type: Armor Buy: 20 Weight: 1200 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r =getrefine(); bonus bShortWeaponDamageReturn,(.@r>=9?15:(.@r>=7?10:5)); bonus bVit,.@r; bonus bDef,20*.@r; if (.@r>=7) bonus bUnbreakableArmor; - Id: 15209 AegisName: Drake_Coat Name: Drake Coat Type: Armor Buy: 20 Weight: 1200 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMdef,10; bonus2 bAddClass,Class_All,3; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus2 bAddClass,Class_All,3; } if (.@r>=9) { bonus bMaxHP,1500; bonus bMaxSP,150; bonus2 bAddClass,Class_All,4; bonus bNoSizeFix; } - Id: 15210 AegisName: Rental_SupperSwimsuit Name: Rental Surfer Swimsuit Type: Armor Defense: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; - Id: 15211 AegisName: Return_TW_1th_Armor Name: 1st Anniversary Commemorative Armor Type: Armor Buy: 20 Weight: 200 Defense: 5 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r>=3) { bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Doram,1; bonus2 bSubRace,RC_Player_Human,1; } if (.@r>=6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Doram,2; bonus2 bSubRace,RC_Player_Human,2; } if (.@r>=9) { bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; } - Id: 15212 AegisName: YSF01_Plate Name: YSF01 Plate Type: Armor Weight: 2100 Defense: 78 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); if (.@r >= 13) { .@val = 11; } else if (.@r >= 11) { .@val = 7; } else if (.@r >= 8) { .@val = 5; } if (readparam(bStr) >= 125) { .@val += .@r; } if (.@val) { bonus bAtkRate,.@val; } - Id: 15213 AegisName: YSF01_Plate_J Name: Y.S.F.0.1 Plate Type: Armor Buy: 20 Weight: 600 Defense: 180 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMdef,20; bonus bMaxHPrate,15; if (.@r>=7) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1000; if (.@r>=9) bonus bAtkRate,15; - Id: 15214 AegisName: IA_Dress Name: IA Dress Type: Armor Weight: 800 Defense: 58 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bMdef,12; - Id: 15215 AegisName: Tatenasi_Armor_TW Name: Sealed Tatenasi Armor Type: Armor Weight: 600 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bUnbreakableArmor; bonus bVit,min(getrefine(),10); - Id: 15216 AegisName: Siege_Robe_1Tier Name: Lesser Guild Member's Robe Type: Armor Weight: 500 Defense: 25 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMaxHP,700; bonus bMaxSP,50; bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 15217 AegisName: Siege_Suits_1Tier Name: Lesser Guild Member's Suit Type: Armor Weight: 1500 Defense: 30 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Merchant: true Ninja: true Rogue: true Swordman: true Thief: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMaxHP,800; bonus bMdef,5; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; - Id: 15218 AegisName: Siege_Plate_1Tier Name: Lesser Guild Member's Plate Type: Armor Weight: 2500 Defense: 50 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: 70 Refineable: true Script: | bonus bMaxHP,900; bonus2 bSubRace,RC_Player_Doram,4; bonus2 bSubRace,RC_Player_Human,4; - Id: 15219 AegisName: Ghostring_Suit_BR Name: Ghostring Robe Type: Armor Weight: 400 Defense: 77 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,20; bonus bMaxHP,1000; bonus bMaxSP,100; if (BaseLevel>=100) { bonus bMaxHP,50*BaseLevel; bonus bMaxSP,3*BaseLevel; } if (.@r>=7) bonus bAtkRate,10; if (.@r>=10) skill "BS_WEAPONPERFECT",5; if (.@r>=12) bonus bDefEle,Ele_Ghost; - Id: 15220 AegisName: 60Lv_Suits Name: Subjugation Team's Armor Type: Armor Weight: 300 Defense: 46 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bMaxHP,300; bonus bMaxSP,20; bonus bMdef,5; bonus bDef,20; - Id: 15221 AegisName: 70Lv_Armor Name: Expedition's Armor Type: Armor Weight: 500 Defense: 56 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,500+(50*(.@r/3)); bonus bMaxSP,30; bonus bMdef,5; bonus bDef,30+(10*(.@r/3)); - Id: 15222 AegisName: 70Lv_Robe Name: Expedition's Robe Type: Armor Weight: 450 Defense: 51 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,400; bonus bMaxSP,50+(10*(.@r/3)); bonus bMdef,5; bonus bDef,30+(5*(.@r/3)); - Id: 15223 AegisName: 80Lv_Mail Name: Contingent Mail Type: Armor Weight: 600 Defense: 66 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bStr,1; bonus bAgi,1; bonus bMaxHP,700; bonus bMaxSP,50; bonus bMdef,5; bonus bDef,40; if (getrefine()>=5) { bonus bDef,15; bonus bMaxHP,100; } - Id: 15224 AegisName: 80Lv_Cloth Name: Contingent Cloth Type: Armor Weight: 600 Defense: 63 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bDex,1; bonus bAgi,1; bonus bMaxHP,500; bonus bMaxSP,60; bonus bMdef,5; bonus bDef,40; if (getrefine()>=5) { bonus bDef,15; bonus bMaxSP,20; } - Id: 15225 AegisName: 80Lv_Robe Name: Contingent Robe Type: Armor Weight: 550 Defense: 61 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bInt,1; bonus bDex,1; bonus bMaxHP,500; bonus bMaxSP,70; bonus bMdef,5; bonus bDef,40; if (getrefine()>=5) { bonus bDef,10; bonus bMaxSP,20; } - Id: 15226 AegisName: 80Lv_Dress Name: Contingent Dress Type: Armor Weight: 500 Defense: 59 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bInt,1; bonus bVit,1; bonus bMaxHP,600; bonus bMaxSP,60; bonus bMdef,5; bonus bDef,40; if (getrefine()>=5) { bonus bDef,10; bonus bMaxHP,100; } - Id: 15227 AegisName: 90Lv_Mail Name: Conqueror's Mail Type: Armor Weight: 700 Defense: 76 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bStr,2; bonus bAgi,2; bonus bMaxHP,900; bonus bMaxSP,60; bonus bMdef,5; bonus bDef,50; if (.@r>=5) { bonus bDef,20; bonus bMaxHP,100; } if (.@r>=7) bonus bAgi,2; - Id: 15228 AegisName: 90Lv_Cloth Name: Conqueror's Cloth Type: Armor Weight: 650 Defense: 71 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bDex,2; bonus bAgi,2; bonus bMaxHP,700; bonus bMaxSP,80; bonus bMdef,5; bonus bDef,50; if (.@r>=5) { bonus bDef,20; bonus bMaxSP,20; } if (.@r>=7) bonus bDex,2; - Id: 15229 AegisName: 90Lv_Robe Name: Conqueror's Robe Type: Armor Weight: 650 Defense: 66 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bInt,2; bonus bDex,2; bonus bMaxHP,600; bonus bMaxSP,90; bonus bMdef,5; bonus bDef,50; if (.@r>=5) { bonus bDef,15; bonus bMaxSP,20; } if (.@r>=7) bonus bDex,2; - Id: 15230 AegisName: 90Lv_Dress Name: Conqueror's Dress Type: Armor Weight: 600 Defense: 65 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bInt,2; bonus bVit,2; bonus bMaxHP,800; bonus bMaxSP,70; bonus bMdef,5; bonus bDef,50; if (.@r>=5) { bonus bDef,15; bonus bMaxHP,100; } if (.@r>=7) bonus bVit,2; - Id: 15231 AegisName: SimpleSuits10 Name: Low-Level Simple Suits Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Armor: true Jobs: All: true Novice: false SuperNovice: false ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxSP,5; - Id: 15232 AegisName: SimpleSuits20 Name: Intermediate Simple Suits Type: Armor Weight: 300 Defense: 15 Slots: 1 Locations: Armor: true Jobs: All: true Novice: false SuperNovice: false ArmorLevel: 1 EquipLevelMin: 20 Refineable: true Script: | bonus bMaxSP,10; - Id: 15233 AegisName: SimpleSuits30 Name: Advanced Simple Suits Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Armor: true Jobs: All: true Novice: false SuperNovice: false ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus bMaxSP,15; - Id: 15234 AegisName: SuitsofKingdom40 Name: Lesser Kingdom Suits Type: Armor Weight: 600 Defense: 25 Slots: 1 Locations: Armor: true Jobs: All: true Novice: false SuperNovice: false ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bMaxHP,300; - Id: 15235 AegisName: SuitsofKingdom50 Name: Intermediate Kingdom Suits Type: Armor Weight: 600 Defense: 30 Slots: 1 Locations: Armor: true Jobs: All: true Novice: false SuperNovice: false ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bMaxHP,600; - Id: 15236 AegisName: SuitsofKingdom60 Name: Upper Kingdom Suits Type: Armor Weight: 600 Defense: 40 Slots: 1 Locations: Armor: true Jobs: All: true Novice: false SuperNovice: false ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bMaxHP,900; - Id: 15237 AegisName: Gods_Armor Name: God's Armor Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus2 bSPGainRace,RC_Undead,5+(2*.@r); bonus2 bSubRace,RC_Undead,5+.@r; bonus2 bSubEle,Ele_Dark,15+(2*.@r); if (.@r>=8) { skill "CR_AUTOGUARD",3; bonus bUnbreakableArmor; if (.@r>=10) { bonus bNoKnockback; } } - Id: 15239 AegisName: Angeling_Suit_BR Name: Angeling Robes Type: Armor Weight: 400 Defense: 77 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000+((BaseLevel-100)*30); bonus bMaxSP,100+((BaseLevel-100)*3); if (.@r>=7) { bonus bMatkRate,10; if (.@r>=10) { skill "BS_ADRENALINE",5; if (.@r>=12) { bonus bDefEle,Ele_Holy; } } } - Id: 15240 AegisName: ArmorOfFlamedragonBR Name: Red Dragon Armor Type: Armor Weight: 400 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bHit,10; bonus bAllStats,1; if (.@r>=6) { bonus bHit,10; bonus2 bAddClass,Class_Boss,10; if (.@r>=11) { bonus bHit,10; bonus2 bAddClass,Class_Boss,10; } } - Id: 15241 AegisName: Vigilante_Suits_J Name: Vigilante Suit Type: Armor Buy: 20 Weight: 500 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bShortWeaponDamageReturn,5; bonus bMatk,10*.@r; bonus bMdef,.@r; if (.@r>=7) { bonus bMatk,20; bonus bMdef,5; if (.@r>=9) { bonus bMatk,30; bonus bMdef,5; } } - Id: 15242 AegisName: Robe_Of_Elemental_J Name: Spirit Robe Type: Armor Buy: 20 Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-2000; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-2000; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-2000; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; } } - Id: 15243 AegisName: Golden_Ninja_Suit_J Name: Bodyguard Suit Type: Armor Buy: 20 Weight: 500 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bStr,2; bonus bUseSPrate,-10; if (.@r>=7) { bonus bDelayrate,-5; bonus bUseSPrate,-5; if (.@r>=9) { bonus bDelayrate,-5; bonus bUseSPrate,-5; } } - Id: 15244 AegisName: Mine_Worker_Vest_J Name: Miner's Vest Type: Armor Buy: 20 Weight: 1500 Defense: 80 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bAddEle,Ele_Wind,5; if (.@r>=7) bonus2 bAddEle,Ele_Wind,10; if (.@r>=9) bonus2 bAddEle,Ele_Wind,15; - Id: 15245 AegisName: Hippie_Cloth_J Name: Nature Suit Type: Armor Buy: 20 Weight: 500 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bHPRegenRate,1500,5000; bonus2 bSPRegenRate,15,5000; bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bMagicHPGainValue,50; bonus bMagicSPGainValue,5; if (.@r>=7) { bonus bHPGainValue,50; bonus bSPGainValue,5; bonus bMagicHPGainValue,50; bonus bMagicSPGainValue,5; if (.@r>=9) { bonus bHPGainValue,100; bonus bSPGainValue,10; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } } - Id: 15246 AegisName: True_Hunting_Mail Name: True Hunting Mail Type: Armor Weight: 900 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; bonus2 bAddRace,RC_Insect,10; bonus2 bMagicAddRace,RC_Insect,10; bonus2 bAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Brute,10; bonus bMaxHPrate,(.@r/3); bonus bMaxSPrate,(.@r/3); - Id: 15247 AegisName: R_Hunting_Mail Name: Short-term Hunting Mail Type: Armor Defense: 40 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,2000; bonus bMaxSP,300; bonus2 bAddRace,RC_Insect,10; bonus2 bMagicAddRace,RC_Insect,10; bonus2 bAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Brute,10; - Id: 15248 AegisName: Whikebain_Suit_BR Name: Whikebain Suit Type: Armor Weight: 900 Defense: 56 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 105 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus3 bAutoSpell,"DC_WINKCHARM",1,100; if (.@r>=7) bonus bCritAtkRate,4; if (.@r>=9) bonus bCritAtkRate,6; - Id: 15249 AegisName: Antonio_Coat Name: Antonio's Coat Type: Armor Buy: 20 Weight: 400 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r >= 7) { .@mdef = 5; .@pd = 1; bonus bUnbreakableArmor; if (.@r >= 8) { .@mdef += 10; .@pd += 1; bonus2 bSubRace,RC_DemiHuman,7; } if (.@r >= 9) { .@mdef += 15; .@pd += 1; bonus2 bSubSkill,"NPC_CRITICALSLASH",100; } bonus bMdef,.@mdef; bonus bFlee2,.@pd; } - Id: 15250 AegisName: Rebeginer_Suits Name: Beginner's Suit Type: Armor Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAllStats,1; bonus bMaxHP,400; bonus bMaxSP,100; bonus bAtkRate,2; bonus bMatkRate,2; - Id: 15251 AegisName: D_Leather_Armor Name: Desert Leather Armor Type: Armor Weight: 1500 Defense: 25 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: 50 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,250; bonus2 bSubEle,Ele_Earth,5; if (.@r>=7) { bonus bMaxHP,100; if (.@r>=9) { bonus bMaxHP,150; bonus2 bSubEle,Ele_Earth,5; } } - Id: 15252 AegisName: D_Leather_Robe Name: Desert Leather Robe Type: Armor Weight: 300 Defense: 10 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,150; bonus bMaxSP,75; bonus bSPrecovRate,10; bonus bMdef,5; bonus2 bSkillUseSPrate,"AL_INCAGI",30; bonus2 bSkillUseSPrate,"AL_BLESSING",30; if (.@r>=7) { bonus bMaxHP,75; bonus bMaxSP,25; bonus bSPrecovRate,10; if (.@r>=9) { bonus bMaxHP,75; bonus bMaxSP,25; bonus bSPrecovRate,10; bonus2 bSkillUseSPrate,"AL_INCAGI",20; bonus2 bSkillUseSPrate,"AL_BLESSING",20; } } - Id: 15253 AegisName: D_Leather_Suits Name: Desert Leather Suits Type: Armor Weight: 600 Defense: 15 Slots: 1 Jobs: Archer: true BardDancer: true Gunslinger: true Hunter: true KagerouOboro: true Ninja: true Rebellion: true Rogue: true Thief: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,200; bonus bAgi,3; bonus bDex,3; if (.@r>=7) { bonus bMaxHP,75; bonus bHit,5; bonus bFlee,5; if (.@r>=9) { bonus bMaxHP,75; bonus bHit,10; bonus bFlee,5; } } - Id: 15254 AegisName: Abyss_Dress_BR Name: Abyssal Dress Type: Armor Weight: 400 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bNoKnockback; if (.@r>=7) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddEle,Ele_Undead,10; bonus2 bMagicAddEle,Ele_Dark,10; bonus2 bMagicAddEle,Ele_Undead,10; if (.@r>=9) { bonus2 bAddRace,RC_Demon,15; bonus2 bAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Undead,15; if (.@r>=11) { bonus2 bAddRace,RC_Demon,15; bonus2 bAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Undead,15; } } } - Id: 15255 AegisName: Leather_Jacket_Z Name: Leather Jacket Type: Armor Weight: 200 Defense: 15 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true - Id: 15256 AegisName: Adventurer_Suit_Z Name: Adventurer's Suit Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true - Id: 15257 AegisName: Mantle_Z Name: Mantle Type: Armor Weight: 600 Defense: 37 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15258 AegisName: Coat_Z Name: Coat Type: Armor Weight: 1200 Defense: 42 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15259 AegisName: Padded_Armor_Z Name: Padded Armor Type: Armor Weight: 2800 Defense: 35 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: 15260 AegisName: Chain_Mail_Z Name: Chain Mail Type: Armor Weight: 3300 Defense: 55 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: 15261 AegisName: Plate_Armor_Z Name: Full Plate Type: Armor Weight: 4500 Defense: 70 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true - Id: 15262 AegisName: Silk_Robe_Z Name: Silk Robe Type: Armor Weight: 400 Defense: 20 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 Wizard: true Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bMdef,10; - Id: 15263 AegisName: Scapulare_Z Name: Scapulare Type: Armor Weight: 400 Defense: 24 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15264 AegisName: Saint_Robe_Z Name: Saint's Robe Type: Armor Weight: 600 Defense: 50 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: 15265 AegisName: Wooden_Mail_Z Name: Wooden Mail Type: Armor Weight: 1000 Defense: 25 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15266 AegisName: Tights_Z Name: Tights Type: Armor Weight: 500 Defense: 27 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true Script: | bonus bDex,1; - Id: 15267 AegisName: Silver_Robe_Z Name: Silver Robe Type: Armor Weight: 700 Defense: 23 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 15268 AegisName: Thief_Clothes_Z Name: Thief Clothes Type: Armor Weight: 100 Defense: 40 Slots: 1 Jobs: Assassin: true KagerouOboro: true Ninja: true Rogue: true Thief: true Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | bonus bAgi,1; - Id: 15269 AegisName: Leaf_Robe Name: Leaf Robe Type: Armor Weight: 150 Defense: 5 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 25 Refineable: true Script: | bonus bMaxHP,100; bonus bMaxSP,50; bonus bSPrecovRate,10; - Id: 15270 AegisName: Stem_Suits Name: Plant Stem Suit Type: Armor Weight: 400 Defense: 10 Jobs: Archer: true BardDancer: true Gunslinger: true Hunter: true KagerouOboro: true Ninja: true Rebellion: true Rogue: true Thief: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 25 Refineable: true Script: | bonus bMaxHP,125; bonus bHit,3; - Id: 15271 AegisName: Oak_Armor Name: Oak Armor Type: Armor Weight: 800 Defense: 15 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true StarGladiator: true Swordman: true Taekwon: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 25 Refineable: true Script: | bonus bMaxHP,150; bonus2 bSubEle,Ele_Earth,5; - Id: 15272 AegisName: Khalitzburg_Armor_BR Name: Khalitzburg Armor Type: Armor Weight: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; bonus bLongAtkRate,6*(min(15,getrefine())/3); - Id: 15273 AegisName: White_Shirt_J Name: White T-Shirt Type: Armor Weight: 100 Defense: 25 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHP,100; bonus bMaxSP,100; - Id: 15274 AegisName: White_Eco_Shirt_J Name: White Leaf T-Shirt Type: Armor Weight: 100 Defense: 40 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHP,100; bonus bMaxSP,100; bonus2 bSkillUseSP,"SU_BITE",10; - Id: 15275 AegisName: Doram_Only_Suit_J Name: Doram Suit Type: Armor Buy: 20 Weight: 100 Defense: 80 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,5*.@r; bonus bMatk,5*.@r; - Id: 15276 AegisName: Doram_High_Suit_J Name: High-End Doram Suit Type: Armor Buy: 20 Weight: 100 Defense: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,10*.@r; bonus bMatk,10*.@r; if (.@r>=7) { bonus bAspdRate,5; if (.@r>=8) { bonus bDelayrate,-5; if (.@r>=9) { bonus bFlee2,5; } } } - Id: 15277 AegisName: Doram_Ele_Suit_J Name: Special Doram Suit Type: Armor Buy: 20 Weight: 100 Defense: 120 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Player_Human,7; bonus2 bVariableCastrate,"SU_STOOP",-50; bonus bBaseAtk,15*.@r; bonus bMatk,15*.@r; if (.@r>=7) bonus bAspdRate,10; if (.@r>=8) bonus bDelayrate,-10; if (.@r>=9) { bonus bFlee2,5; bonus2 bVariableCastrate,"SU_STOOP",-50; } - Id: 15278 AegisName: Overwhelm_Str_Armor Name: Soaring Physical Armor Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r > 2) bonus bAtkRate,.@r/3*2; if (.@r > 6) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r > 8) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r > 10) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15279 AegisName: Overwhelm_Int_Armor Name: Robust Magical Armor Type: Armor Weight: 900 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r > 2) bonus bMatkRate,.@r/3*2; if (.@r > 6) { bonus2 bIgnoreMdefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; } if (.@r > 8) { bonus2 bMagicAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Brute,10; } if (.@r > 10) { bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; } - Id: 15280 AegisName: S_CriticalHit_Armor Name: Critical Hit Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 7; bonus bBaseAtk,15; if (.@r > 1) { bonus bCritAtkRate,(.@r/2); if (.@r >= 7) { .@val += 7; } } bonus bCritical,.@val; - Id: 15281 AegisName: Khalitzburg_Armor_Z Name: Khalitzburg Knight Armor Type: Armor Weight: 100 Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,150; if (.@r>=7) { bonus bMaxHP,150; if (.@r>=9) { bonus bMaxHP,250; } } - Id: 15282 AegisName: Witchs_White_Shirt Name: Rabbit Pattern Shirt Type: Armor Weight: 500 Defense: 10 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSMatk,1+(.@r/2); bonus bSpl,1; bonus bMatk,5*.@r; if (.@r>=7) { bonus bSMatk,2; bonus bSpl,2; if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Ghost,35; bonus2 bMagicAtkEle,Ele_Dark,35; } } } if (.@g >= ENCHANTGRADE_D) { bonus bSMatk,2; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus bSpl,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bMagicAddEle,Ele_All,15; } } } - Id: 15283 AegisName: Armor_of_Rosary Name: Mighty Black Threaded Armor Type: Armor Buy: 20 Weight: 800 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10; bonus2 bIgnoreDefRaceRate,RC_All,10; if (.@r>=7) { bonus bBaseAtk,20; bonus2 bIgnoreDefRaceRate,RC_All,20; } if (.@r>=8) { bonus bBaseAtk,20; bonus2 bIgnoreDefRaceRate,RC_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bBaseAtk,30; bonus2 bIgnoreDefRaceRate,RC_All,20; } - Id: 15343 AegisName: Supplement_Part_Str_ Name: Supplement Part STR Type: Armor Buy: 25000 Weight: 2000 Defense: 80 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus2 bAddClass,Class_All,5+(getrefine()/4); - Id: 15344 AegisName: Upgrade_Part_Plate_ Name: Upgrade Part - Gloves Type: Armor Buy: 25000 Weight: 3000 Defense: 110 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@val = 10; if (.@r>6) { bonus2 bSubSize,Size_Large,10; if (.@r>8) { .@val += 5; } } bonus2 bSubSize,Size_Small,.@val; bonus2 bSubSize,Size_Medium,.@val; - Id: 15345 AegisName: ArmorOfSeadragonBR Name: Blue Dragon Armor # !todo check english name Type: Armor Weight: 400 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bUseSPrate,-10; if (.@r >= 6) { bonus bVariableCastrate,-5; bonus2 bMagicAddClass,Class_All,10; bonus bUseSPrate,-5; } if (.@r >= 11) { bonus bVariableCastrate,-5; bonus2 bMagicAddClass,Class_All,10; bonus bUseSPrate,-5; } - Id: 15346 AegisName: Overwhelm_Luk_Armor Name: Unexpected Fortune Armor Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r > 2) bonus bCritAtkRate,.@r/3*2; if (.@r > 6) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r > 8) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r > 10) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15347 AegisName: Overwhelm_Vit_Armor Name: Strong Healthy Armor Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r > 2) bonus bMaxHPrate,.@r/3*2; if (.@r > 6) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r > 8) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r > 10) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15348 AegisName: Goibne_Armor_IL Name: Illusion Goibne Armor Type: Armor Weight: 3500 Defense: 158 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bMaxHPrate,10; .@r = getrefine(); if (.@r >= 9) { bonus bDef,150; } else if (.@r >= 7) { bonus bDef,50; } - Id: 15349 AegisName: Brave_suit Name: Brave Suit Type: Armor Buy: 20 Weight: 1000 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true Script: | bonus2 bResEff,Eff_Freeze,5000; bonus bMaxHPrate,4*getrefine(); - Id: 15352 AegisName: Nature_Dress Name: Nature Dress Type: Armor Buy: 10 Weight: 400 Defense: 120 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Earth; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Earth,.@a; bonus2 bAddEle,Ele_Wind,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Wind,.@a; bonus2 bAddRace,RC_DemiHuman,.@a; bonus2 bAddRace,RC_Brute,.@a; bonus2 bAddRace,RC_Player_Doram,.@a; bonus2 bMagicAddRace,RC_DemiHuman,.@a; bonus2 bMagicAddRace,RC_Brute,.@a; bonus2 bMagicAddRace,RC_Player_Doram,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a; - Id: 15353 AegisName: Overwhelm_Agi_Armor Name: Splendid Swift Armor Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r > 2) bonus bAspdRate,.@r/3*2; if (.@r > 6) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r > 8) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r > 10) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15354 AegisName: Overwhelm_Dex_Armor Name: Excellent Dexterous Armor Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r > 2) bonus bLongAtkRate,.@r/3*2; if (.@r > 6) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r > 8) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r > 10) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15362 AegisName: Apollo_Armor_TW Name: Apollo Armor Type: Armor Weight: 300 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,20+getskilllv("RK_DRAGONBREATH"); bonus bVit,3*(.@r/4); bonus bMdef,5*(.@r/4); if (.@r>=12) bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,50; - Id: 15363 AegisName: Mars_Armor_TW Name: Mars Armor Type: Armor Weight: 300 Slots: 1 Jobs: Assassin: true Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus3 "{ bonus bAspd,2; }",1000,10000,"TF_BACKSLIDING","{ specialeffect2 EF_HASTEUP; }"; bonus bDex,3*(.@r/4); bonus bMaxHPrate,3*(.@r/4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,15; bonus2 bIgnoreDefRaceRate,RC_Player_Human,15; bonus2 bIgnoreDefRaceRate,RC_Brute,15; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,15; if (.@r>=12) { bonus2 bSkillCooldown,"GC_DARKCROW",-5000; bonus2 bSkillAtk,"SC_TRIANGLESHOT",2*(getskilllv("AC_DOUBLE")); } - Id: 15365 AegisName: Vinus_Armor_TW Name: Venus Armor Type: Armor Weight: 300 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@lvl = getskilllv("AL_HEAL"); bonus bMaxHPrate,.@lvl; bonus bLongAtkDef,.@lvl; bonus bInt,2*(.@r/4); bonus bMdef,7*(.@r/4); if (.@r>=12) { bonus2 bSkillCooldown,"AB_CLEARANCE",-5000; bonus2 bSkillCooldown,"AB_SILENTIUM",-5000; bonus2 bSkillCooldown,"SR_CRESCENTELBOW",-3000; } - Id: 15367 AegisName: Astraea_Armor Name: Asteria's Armor Type: Armor Weight: 500 Defense: 80 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 94 Refineable: true - Id: 15369 AegisName: Cylinder_Hairband_BR Name: Futuristic Tiara # !todo check english name Type: Armor Weight: 300 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1477 Script: | .@r = getrefine(); bonus bStr,5; - Id: 15374 AegisName: lunar_eclipse_Armor_ Name: Lunar Eclipse Armor Type: Armor Weight: 600 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,10; bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bDelayrate,-.@r; bonus bFixedCastrate,-((.@r>=9)?70:(.@r>=7?50:0)); - Id: 15375 AegisName: lunar_eclipse_Armor Name: Old Eclipse Outfit Type: Armor Weight: 600 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDelayrate,-.@r; if (.@r>=9) bonus bFixedCastrate,-50; - Id: 15376 AegisName: Illusion_Armor_A Name: Illusion Armor A-type Type: Armor Weight: 1000 Defense: 105 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,10; } - Id: 15377 AegisName: Illusion_Armor_B Name: Illusion Armor B-type Type: Armor Weight: 1000 Defense: 105 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,(100+10*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-10; } - Id: 15378 AegisName: Lava_Leather_Armor Name: Lava Leather Armor Type: Armor Buy: 50000 Weight: 1500 Defense: 85 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bDef,100; if (.@r>=9) bonus bDef,50; - Id: 15379 AegisName: Lava_Leather_Suits Name: Lava Leather Suit Type: Armor Buy: 50000 Weight: 1000 Defense: 70 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bBaseAtk,50; if (.@r>=9) bonus bCritAtkRate,10; - Id: 15380 AegisName: Lava_Leather_Robe Name: Lava Leather Robe Type: Armor Buy: 50000 Weight: 750 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bMatk,50; if (.@r>=9) bonus bMatk,25; - Id: 15383 AegisName: Time_Overload_Robe Name: Temporal Transcendent Robe Type: Armor Defense: 62 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,500; bonus bMaxSP,100; bonus bMatk,50; bonus bBaseAtk,50; bonus bDelayrate,-10; - Id: 15384 AegisName: Rite_Robe Name: Ritual Robe Type: Armor Buy: 10 Weight: 400 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,5; bonus bDelayrate,-10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; bonus bHealPower,5; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bUseSPrate,-10; bonus2 bResEff,Eff_Sleep,10000; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bHealPower,10; } - Id: 15385 AegisName: MemorialD_Assistant Name: Little Robot Know-It-All # !todo check english name Type: Armor Weight: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1561 Script: | skill "MC_IDENTIFY",1; skill "WZ_ESTIMATION",1; - Id: 15386 AegisName: Kings_Mail Name: King's Mail Type: Armor Buy: 20 Weight: 1500 Defense: 180 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bDefEle,Ele_Holy; bonus bMdef,10; bonus2 bSubRace,RC_Demon,15; bonus2 bSubRace,RC_Undead,15; if (.@r>=6) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bHealPower2,10; bonus bAddItemHealRate,10; } if (.@r>=8) { bonus bMaxHPrate,5; bonus bHealPower,10; bonus bHealPower2,10; bonus bAddItemHealRate,10; } - Id: 15387 AegisName: Jirant_Dress Name: Witch's Dress Type: Armor Buy: 20 Weight: 800 Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus2 bIgnoreDefClassRate,Class_Boss,50; bonus2 bMagicAtkEle,Ele_Wind,2*.@r; bonus bMatk,15*.@r; - Id: 15388 AegisName: Schmidt_Suits Name: King Schmidt's Suit Type: Armor Weight: 900 Defense: 150 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; bonus2 bMagicAddSize,Size_Medium,10; bonus2 bMagicAddSize,Size_Large,10; if (.@r > 6) { bonus2 bAddEle,Ele_Fire,10; bonus2 bAddEle,Ele_Dark,10; bonus2 bMagicAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Dark,10; } if (.@r > 8) { bonus2 bSubRace,RC_Dragon,15; bonus2 bSubRace,RC_Formless,15; } if (.@r > 10) { bonus2 bSubSize,Size_Medium,10; bonus2 bSubSize,Size_Large,10; } - Id: 15389 AegisName: Schmidt_Manteau Name: King Schmidt's Manteau Type: Armor Weight: 600 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bAddEle,Ele_Fire,(.@r/3)*2; bonus2 bAddEle,Ele_Dark,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Fire,(.@r/3)*2; bonus2 bMagicAddEle,Ele_Dark,(.@r/3)*2; if (.@r > 6) { bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_Formless,5; } if (.@r > 10) { bonus2 bAddRace,RC_Dragon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Formless,15; } - Id: 15390 AegisName: Regia_Hunting_Mail Name: Regia Hunting Mail Type: Armor Weight: 900 Defense: 25 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,500+50*(.@r/3); bonus bMaxSP,100+20*(.@r/3); bonus2 bAddRace,RC_Insect,7; bonus2 bMagicAddRace,RC_Insect,7; bonus2 bAddRace,RC_Brute,7; bonus2 bMagicAddRace,RC_Brute,7; - Id: 15391 AegisName: DragonA_Red Name: Red Dragon Plate Type: Armor Weight: 1200 Defense: 110 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,15; bonus bMaxSPrate,10; bonus bStr,12; bonus bAtkRate,2*(.@r/2); bonus2 bAddRace,RC_Dragon,7*(.@r/3); if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; } - Id: 15392 AegisName: DragonA_Green Name: Green Dragon Plate Type: Armor Weight: 1200 Defense: 110 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAgi,12; bonus bLongAtkRate,2*(.@r/2); bonus2 bAddRace,RC_Dragon,7*(.@r/3); if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; } - Id: 15393 AegisName: DragonA_Gold Name: Gold Dragon Plate Type: Armor Weight: 1200 Defense: 110 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,20; bonus bMaxSPrate,5; bonus bVit,12; bonus bAspdRate,3*(.@r/2); bonus bVariableCastrate,-3*(.@r/2); bonus2 bAddRace,RC_Dragon,7*(.@r/3); bonus2 bMagicAddRace,RC_Dragon,7*(.@r/3); if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Medium,6; bonus2 bMagicAddSize,Size_Medium,6; bonus2 bAddSize,Size_Large,6; bonus2 bMagicAddSize,Size_Large,6; } - Id: 15394 AegisName: DragonA_Purple Name: Purple Dragon Plate Type: Armor Weight: 1200 Defense: 110 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,15; bonus bMaxSPrate,10; bonus bDex,12; bonus bAspdRate,4*(.@r/2); bonus bVariableCastrate,-4*(.@r/2); bonus2 bAddRace,RC_Dragon,8*(.@r/3); bonus2 bMagicAddRace,RC_Dragon,8*(.@r/3); if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; bonus2 bAddSize,Size_Large,8; bonus2 bMagicAddSize,Size_Large,8; } - Id: 15395 AegisName: DragonA_Blue Name: Blue Dragon Plate Type: Armor Weight: 1200 Defense: 110 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,20; bonus bInt,12; bonus bMatkRate,2*(.@r/2); bonus bHealPower,4*(.@r/2); bonus2 bMagicAddRace,RC_Dragon,7*(.@r/3); if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Medium,10; bonus2 bMagicAddSize,Size_Large,10; } - Id: 15396 AegisName: DragonA_Silver Name: Silver Dragon Plate Type: Armor Weight: 1200 Defense: 110 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bLuk,12; bonus bCritAtkRate,4*(.@r/2); bonus bCritical,2*(.@r/2); bonus2 bAddRace,RC_Dragon,7*(.@r/3); if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; } - Id: 15397 AegisName: CassockA_STR Name: STR Soutane Type: Armor Weight: 800 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspdRate,10; bonus bAtkRate,3*(.@r/2); bonus bStr,5*(.@r/3); bonus2 bAddRace,RC_Angel,8*(.@r/4); bonus2 bAddRace,RC_Demon,8*(.@r/4); - Id: 15398 AegisName: CassockA_AGI Name: AGI Soutane Type: Armor Weight: 800 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspdRate,10; bonus bLongAtkRate,3*(.@r/2); bonus bAgi,5*(.@r/3); bonus2 bAddRace,RC_Angel,8*(.@r/4); bonus2 bAddRace,RC_Demon,8*(.@r/4); - Id: 15399 AegisName: CassockA_VIT Name: VIT Soutane Type: Armor Weight: 800 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,15; bonus bMaxSPrate,5; bonus bAspdRate,7; bonus bVariableCastrate,-7; bonus bMaxHPrate,2*(.@r/2); bonus bVit,5*(.@r/3); bonus2 bAddRace,RC_Angel,10*(.@r/4); bonus2 bMagicAddRace,RC_Angel,10*(.@r/4); bonus2 bAddRace,RC_Demon,10*(.@r/4); bonus2 bMagicAddRace,RC_Demon,10*(.@r/4); - Id: 15400 AegisName: CassockA_DEX Name: DEX Soutane Type: Armor Weight: 800 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bMatkRate,(.@r/2); bonus bAtkRate,(.@r/2); bonus bDex,5*(.@r/3); bonus2 bAddRace,RC_Angel,6*(.@r/4); bonus2 bMagicAddRace,RC_Angel,6*(.@r/4); bonus2 bAddRace,RC_Demon,6*(.@r/4); bonus2 bMagicAddRace,RC_Demon,6*(.@r/4); - Id: 15401 AegisName: CassockA_INT Name: INT Soutane Type: Armor Weight: 800 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,15; bonus bVariableCastrate,-10; bonus bMatkRate,3*(.@r/2); bonus bInt,5*(.@r/3); bonus2 bMagicAddRace,RC_Angel,8*(.@r/4); bonus2 bMagicAddRace,RC_Demon,8*(.@r/4); - Id: 15402 AegisName: CassockA_LUK Name: LUK Soutane Type: Armor Weight: 800 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspdRate,10; bonus bCritAtkRate,4*(.@r/2); bonus bCritical,3*(.@r/2); bonus bLuk,5*(.@r/3); bonus2 bAddRace,RC_Angel,8*(.@r/4); bonus2 bAddRace,RC_Demon,8*(.@r/4); - Id: 15405 AegisName: Fafnir_Scale_J Name: Fafnir Scale Type: Armor Buy: 20 Weight: 1500 Defense: 120 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bUnbreakableArmor; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus bDelayrate,-2*getskilllv("RK_DRAGONBREATH_WATER"); bonus bLongAtkRate,2*getskilllv("RK_DRAGONBREATH"); if (.@r>=5) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } if (.@r>=7) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bDelayrate,-5; } - Id: 15407 AegisName: WhiteknightArmor Name: Whiteknight Armor Type: Armor Weight: 400 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; bonus bDelayrate,-5-(min(10,.@r)*2); if (.@r>=12) bonus bNoWalkDelay; - Id: 15408 AegisName: Leo_Mail_J Name: Leo Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bFlee,20; bonus bMaxHP,1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Monk) { bonus bBaseAtk,80; bonus bMaxHP,10; bonus bMaxSP,10; if (.@r>=8) bonus bNoKnockback; } - Id: 15409 AegisName: Bloody_Dress Name: Bloody Dress Type: Armor Buy: 10 Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,10; bonus bDex,3; bonus2 bSubRace,RC_Player_Human,7; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-10; } if (.@r>=8) bonus bUnbreakableArmor; - Id: 15410 AegisName: H_AD_Suits Name: High Adventurer Suit Type: Armor Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,300; bonus bMaxSP,100; - Id: 15412 AegisName: Cancer_Mail_J Name: Cancer Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bFlee,20; bonus bMaxHP,1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus2 bSubSkill,"NPC_CRITICALSLASH",100; } - Id: 15417 AegisName: Armor_of_Purple_Thread Name: Armor of Purple Thread Type: Armor Buy: 20 Weight: 800 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10; bonus bPerfectHitAddRate,5; if (.@r>=7) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,5; } if (.@r>=8) { bonus bBaseAtk,20; bonus bPerfectHitAddRate,10; } if (.@r>=9) { bonus bBaseAtk,30; bonus bPerfectHitAddRate,10; } - Id: 15418 AegisName: Libra_Mail_J Name: Libra Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHP,1000; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus2 bSubClass,Class_Boss,5; } - Id: 15419 AegisName: Armor_of_White_Thread Name: Armor of White Thread Type: Armor Buy: 20 Weight: 800 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10; bonus2 bIgnoreMdefRaceRate,RC_All,10; if (.@r>=7) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; } if (.@r>=8) { bonus bMatk,20; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus bUnbreakableArmor; } if (.@r>=9) { bonus bMatk,30; bonus2 bIgnoreMdefRaceRate,RC_All,20; } - Id: 15420 AegisName: Icefall_Dress Name: Icefall Dress Type: Armor Buy: 10 Weight: 400 Defense: 120 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bNoKnockback; bonus bUnbreakableArmor; bonus bDefEle,Ele_Water; if (.@r>8) .@a = 40; else if (.@r>6) .@a = 25; else if (.@r>=5) .@a = 10; bonus2 bAddEle,Ele_Fire,.@a; bonus2 bAddEle,Ele_Water,.@a; bonus2 bMagicAddEle,Ele_Fire,.@a; bonus2 bMagicAddEle,Ele_Water,.@a; bonus2 bAddRace,RC_DemiHuman,.@a; bonus2 bAddRace,RC_Formless,.@a; bonus2 bMagicAddRace,RC_DemiHuman,.@a; bonus2 bMagicAddRace,RC_Formless,.@a; bonus2 bAddRace,RC_Player_Human,.@a; bonus2 bMagicAddRace,RC_Player_Human,.@a; bonus2 bAddRace,RC_Player_Doram,.@a; bonus2 bMagicAddRace,RC_Player_Doram,.@a; - Id: 15421 AegisName: Triad_God_Mail_J_ Name: Triad God Mail Type: Armor Weight: 900 Defense: 90 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bAspdRate,.@r; if (.@r>=7) bonus2 bAddRace,RC_All,10; if (.@r>=9) bonus2 bAddRace,RC_All,10; - Id: 15424 AegisName: Scorpio_Mail_J Name: Scorpio Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bFlee,20; bonus bMaxHP,1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus bNoKnockback; } - Id: 15425 AegisName: Taurus_Mail_J Name: Taurus Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bFlee,20; bonus bMaxHP,1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { bonus bBaseAtk,80; bonus bDefEle,Ele_Holy; if (.@r>=8) bonus2 bSubSkill,"NPC_CRITICALSLASH",100; } - Id: 15426 AegisName: Aquarius_Mail_J Name: Aquarius Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bMatk,50; bonus bMaxHP,1000; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAtkEle,Ele_Dark,20; if (.@r>=8) bonus2 bVariableCastrate,"WL_EARTHSTRAIN",-100; } - Id: 15430 AegisName: Diana_Suits Name: Diana Coat Type: Armor Weight: 300 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r =getrefine(); bonus bDex,3*(.@r/4); bonus bMaxHPrate,3*(.@r/4); bonus2 bSkillCooldown,"SU_LOPE",-1000*(.@r/4); if (.@r>=12) { bonus2 bSkillCooldown,"SU_PURRING",-20000; autobonus "{ bonus bDex,80; }",50,5000; autobonus3 "{ bonus bMatk,100; }",1000,3000,"SU_SV_ROOTTWIST"; } - Id: 15431 AegisName: Mercury_Suits Name: Mercury Suit Type: Armor Weight: 300 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus3 "{ bonus bDef,300; bonus bMdef,100; }",1000,50000,"KO_MEIKYOUSISUI"; bonus2 bSkillCooldown,"KO_MEIKYOUSISUI",50000; bonus bAllStats,2*(.@r/4); if (.@r>=12) bonus bDelayrate,-10; - Id: 15432 AegisName: Bacchus_Armor Name: Bacchus Armor Type: Armor Weight: 300 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDex,3*(.@r/4); bonus bAgi,3*(.@r/4); if (.@r>=12) { skill "SN_SIGHT",10; bonus2 bSkillCooldown,"RL_R_TRIP",-500; bonus2 bIgnoreDefClassRate,Class_Normal,getskilllv("GS_SINGLEACTION"); } - Id: 15433 AegisName: Neptune_Uniform Name: Neptune's suit Type: Armor Weight: 300 Slots: 1 Jobs: SoulLinker: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("TK_RUN"); bonus bAtkRate,.@a/2; bonus bMatkRate,.@a/2; bonus bMaxHPrate,2*(.@a/2); bonus bAllStats,2*(.@r/4); if (.@r>=12) { bonus bNoCastCancel; bonus2 bSkillCooldown,"SP_SOULREAPER",-60000; bonus2 bFixedCastrate,"SG_HATE",-50; } - Id: 15434 AegisName: Golden_Angel_Statue_YG Name: Meta Angel Figure (OSM) Type: Armor Weight: 200 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 646 Script: | .@r = getrefine(); bonus bMaxHP,300; bonus bMaxSP,100; bonus bBaseAtk,.@r; bonus bMatk,.@r; if (BaseJob == Job_Knight) { if (getskilllv("KN_SPEARMASTERY") == 10) skill "CR_SPEARQUICKEN",5; } if (BaseJob == Job_Crusader) { if (getskilllv("CR_SPEARQUICKEN") == 10) bonus3 bAutoSpell,"KN_SPEARBOOMERANG",3,120; } if (BaseJob == Job_Assassin) { if (getskilllv("AS_KATAR") == 10) bonus2 bSkillAtk,"AS_GRIMTOOTH",35; } if (BaseJob == Job_Rogue) { if (getskilllv("RG_PLAGIARISM") == 10) skill "MO_TRIPLEATTACK",5; } if (BaseJob == Job_Hunter) { if (getskilllv("HT_BEASTBANE") == 10) bonus3 bAutoSpell,"BS_ADRENALINE",1,70; } if (BaseJob == Job_Bard) { if (getskilllv("BA_MUSICALLESSON") == 10) bonus3 bAutoSpell,"CG_ARROWVULCAN",5,120; } if (BaseJob == Job_Dancer) { if (getskilllv("DC_DANCINGLESSON") == 10) bonus3 bAutoSpell,"CG_ARROWVULCAN",5,120; } if (BaseJob == Job_Priest) { if (getskilllv("PR_ASPERSIO") == 5) bonus3 bAutoSpell,"CR_HOLYCROSS",5,120; } if (BaseJob == Job_Monk) { if (getskilllv("MO_IRONHAND") == 10) bonus2 bSkillAtk,"MO_TRIPLEATTACK",35; } if (BaseJob == Job_Wizard) { if (getskilllv("WZ_WATERBALL") == 5) skill "NJ_SUITON",7; } if (BaseJob == Job_Sage) { if (getskilllv("SA_FLAMELAUNCHER") == 5) bonus3 bAutoSpell,"NJ_KOUENKA",5,70; if (getskilllv("SA_FROSTWEAPON") == 5) bonus3 bAutoSpell,"NJ_HYOUSENSOU",5,70; if (getskilllv("SA_LIGHTNINGLOADER") == 5) bonus3 bAutoSpell,"NJ_HUUJIN",5,70; } if (BaseJob == Job_Blacksmith) { if (getskilllv("BS_WEAPONRESEARCH") == 10) bonus3 bAutoSpell,"ITM_TOMAHAWK",1,120; } if (BaseJob == Job_Alchemist) { if (getskilllv("AM_AXEMASTERY") == 10) bonus2 bSkillAtk,"MC_CARTREVOLUTION",50; } if (.@r>=5) { bonus bAllStats,1; bonus2 bExpAddRace,RC_All,10; } - Id: 15440 AegisName: Fierce_Physique_Armor_E Name: Fierce Physique Armor Type: Armor Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,5; bonus bStr,3; bonus bDex,3; if (.@r>=5) { bonus bFlee,5; bonus bDef,5; } if (.@r>=7) { bonus bDef,10; bonus bMdef,2; } if (.@r>=9) { bonus bDef,15; bonus bMdef,3; } if (.@r>=10) { bonus bBaseAtk,10; bonus bMdef,5; bonus2 bSubEle,Ele_Earth,2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,2; bonus2 bSubEle,Ele_Wind,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; if (BaseClass == Job_Swordman || BaseClass == Job_Merchant) bonus bMaxHP,600; else if (BaseClass == Job_Archer || BaseClass == Job_Thief || BaseClass == Job_Gunslinger || BaseJob == Job_Star_Gladiator) bonus bMaxHP,800; else if (BaseClass == Job_Novice || BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) bonus bMaxHP,1000; } - Id: 15441 AegisName: Fierce_Magique_Armor_E Name: Fierce Magique Armor Type: Armor Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMatk,5; bonus bInt,3; bonus bDex,3; if (.@r>=5) { bonus bFlee,5; bonus bDef,5; } if (.@r>=7) { bonus bDef,10; bonus bMdef,2; } if (.@r>=9) { bonus bDef,15; bonus bMdef,3; } if (.@r>=10) { bonus bMatk,10; bonus bMdef,5; bonus2 bSubEle,Ele_Earth,2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,2; bonus2 bSubEle,Ele_Wind,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; if (BaseClass == Job_Swordman || BaseClass == Job_Merchant) bonus bMaxHP,600; else if (BaseClass == Job_Archer || BaseClass == Job_Thief || BaseClass == Job_Gunslinger || BaseJob == Job_Star_Gladiator) bonus bMaxHP,800; else if (BaseClass == Job_Novice || BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) bonus bMaxHP,1000; } - Id: 15442 AegisName: Fierce_Physique_Manteau Name: Fierce Physique Manteau Type: Armor Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,2; bonus bMdef,5; bonus bVit,1; if (.@r>=5) { bonus bDef,5; bonus bMaxHP,50; } if (.@r>=7) { bonus bDef,7; bonus bMaxHP,70; } if (.@r>=9) { bonus bDef,9; bonus bMaxHP,90; } if (.@r>=10) { bonus bBaseAtk,3; bonus2 bSubEle,Ele_Neutral,3; } - Id: 15443 AegisName: Fierce_Magique_Manteau Name: Fierce Magique Manteau Type: Armor Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMatk,2; bonus bMdef,5; bonus bVit,1; if (.@r>=5) { bonus bDef,5; bonus bMaxHP,50; } if (.@r>=7) { bonus bDef,7; bonus bMaxHP,70; } if (.@r>=9) { bonus bDef,9; bonus bMaxHP,90; } if (.@r>=10) { bonus bMatk,3; bonus2 bSubEle,Ele_Neutral,3; } - Id: 15444 AegisName: Night_Owl_Shawl_EXE Name: Night Owl Shawl (OSM) Type: Armor Defense: 9 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bAspd,1; bonus bInt,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Wind,2; if (.@r>=5) bonus bMatk,15; if (.@r>=7) { bonus bInt,3; bonus2 bMagicAtkEle,Ele_Earth,3; bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bMagicAtkEle,Ele_Wind,3; } if (.@r>=9) { bonus bInt,5; bonus bMaxSP,100; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; } if (.@r>=10) { bonus bMaxSPrate,5; bonus bMatkRate,5; bonus bVariableCastrate,-5; } - Id: 15446 AegisName: Cetrion_Ring_EXE Name: Cetrion's Ring (OSM) Type: Armor Weight: 350 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | .@a = (readparam(bStr)/18); .@b = (readparam(bAgi)/18); .@c = (readparam(bVit)/18); .@d = (readparam(bInt)/18); .@e = (readparam(bDex)/18); .@f = (readparam(bLuk)/18); bonus bInt,2*.@a; bonus bMatk,2*.@a; bonus2 bIgnoreMdefRaceRate,RC_All,10*.@a; bonus bLuk,2*.@b; bonus bCritical,2*.@b; bonus bCritAtkRate,.@b; bonus bDex,2*.@c; bonus bHit,2*.@c; bonus bVariableCastrate,-.@c; bonus bStr,2*.@d; bonus bBaseAtk,2*.@d; bonus bDelayrate,-.@d; bonus bVit,2*.@e; bonus bDef,2*.@e; bonus bMaxHPrate,.@e; bonus bAgi,2*.@f; bonus bAspdRate,.@f; bonus2 bIgnoreDefRaceRate,RC_All,10*.@f; - Id: 15447 AegisName: Pollux_Robe_J Name: Pollux Robe Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bAspdRate,10; bonus bMaxHP,1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus2 bSubClass,Class_Boss,5; } - Id: 15448 AegisName: Procyon_Robe_J Name: Procyon Robe Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bUnbreakableArmor; bonus bMatk,50; bonus bMaxHP,1000; bonus bVariableCastrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Soul_Linker) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus bNoKnockback; } - Id: 15449 AegisName: Skarlet_Robe_EXE Name: Skarlet's Robe (OSM) Type: Armor Weight: 1500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); .@a = ((.@r >= 10) ? 200 : ((.@r >= 9) ? 140 : ((.@r >= 8) ? 90 : ((.@r >= 7) ? 50 : 20)))); .@b = ((.@r >= 10) ? 60 : ((.@r >= 9) ? 40 : ((.@r >= 8) ? 20 : ((.@r >= 7) ? 10 : 0)))); .@c = ((.@r >= 10) ? 6 : ((.@r >= 9) ? 4 : ((.@r >= 8) ? 2 : ((.@r >= 7) ? 1 : 0)))); bonus bMdef,10; bonus bAllStats,1; bonus2 bExpAddRace,RC_All,5; bonus bHPGainValue,.@a; bonus bMagicHPGainValue,.@a; bonus2 bHPDrainRate,.@b,.@c; - Id: 15450 AegisName: SKahn_Yoroi_EXE Name: Shao Kahn Yoroi (OSM) Type: Armor Weight: 1500 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMdef,10; if (.@r>=5) { bonus bBaseAtk,1; bonus bHit,1; bonus2 bAddClass,Class_Boss,5; } if (.@r>=6) { bonus bBaseAtk,2; bonus bHit,2; bonus2 bAddClass,Class_Boss,5; } if (.@r>=7) { bonus bBaseAtk,3; bonus bHit,3; bonus2 bAddClass,Class_Boss,5; } if (.@r>=8) { bonus bBaseAtk,4; bonus bHit,4; bonus2 bAddClass,Class_Boss,5; } if (.@r>=9) { bonus bBaseAtk,5; bonus bHit,5; bonus2 bAddClass,Class_Boss,10; } if (.@r>=10) { bonus bStr,3; bonus bDex,3; bonus bMaxHP,500; bonus bMaxSP,100; } - Id: 15451 AegisName: Albatross_Armor_EXE Name: Albatross's Armor Type: Armor Defense: 70 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMdef,10; if (.@r>=5) { bonus bMaxHP,500; bonus bMaxSP,50; } if (.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; bonus bDef,10; } if (.@r>=8) { bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddEle,Ele_Earth,2; bonus2 bAddEle,Ele_Fire,2; bonus2 bAddEle,Ele_Water,2; bonus2 bAddEle,Ele_Wind,2; bonus2 bMagicAddEle,Ele_Earth,2; bonus2 bMagicAddEle,Ele_Fire,2; bonus2 bMagicAddEle,Ele_Water,2; bonus2 bMagicAddEle,Ele_Wind,2; } if (.@r>=9) { bonus bBaseAtk,10; bonus bMatk,10; bonus2 bAddEle,Ele_Earth,3; bonus2 bAddEle,Ele_Fire,3; bonus2 bAddEle,Ele_Water,3; bonus2 bAddEle,Ele_Wind,3; bonus2 bMagicAddEle,Ele_Earth,3; bonus2 bMagicAddEle,Ele_Fire,3; bonus2 bMagicAddEle,Ele_Water,3; bonus2 bMagicAddEle,Ele_Wind,3; } if (.@r>=10) { bonus bMaxHPrate,1; bonus bMaxSPrate,1; bonus2 bAddEle,Ele_Earth,5; bonus2 bAddEle,Ele_Fire,5; bonus2 bAddEle,Ele_Water,5; bonus2 bAddEle,Ele_Wind,5; bonus2 bMagicAddEle,Ele_Earth,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Water,5; bonus2 bMagicAddEle,Ele_Wind,5; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 15460 AegisName: Rachel_Armor Name: Awakened Glacier Armor Type: Armor Weight: 600 Defense: 157 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,3; bonus bBaseAtk,25*.@r; if (.@r>=6) bonus2 bSubRace,RC_DemiHuman,10; if (.@r>=9) bonus bAspdRate,7; - Id: 15461 AegisName: Apollo_Armor_TH Name: 2nd Anniversary Apollo Armor Type: Armor Weight: 10 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,15+(getskilllv("SM_RECOVERY")/2); bonus bVit,3*(.@r/4); bonus bMdef,5*(.@r/4); if (.@r>=11) bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,50; - Id: 15462 AegisName: Jupiter_Armor_TH Name: 2nd Anniversary Jupiter Armor Type: Armor Weight: 10 Slots: 1 Jobs: Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatk,30; bonus bInt,3*(.@r/4); bonus bMatkRate,3*(.@r/4); if (.@r>=11) { bonus bDelayrate,-2*getskilllv("WL_RADIUS"); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-100*(getskilllv("SA_ADVANCEDBOOK")/2); } - Id: 15463 AegisName: Mars_Armor_TH Name: 2nd Anniversary Mars Armor Type: Armor Weight: 10 Slots: 1 Jobs: Assassin: true Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); autobonus3 "{ bonus bAspd,2; }",1000,10000,"TF_BACKSLIDING"; bonus2 bIgnoreDefRaceRate,RC_Brute,15*(.@r/4); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,15*(.@r/4); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,15*(.@r/4); bonus2 bIgnoreDefRaceRate,RC_Player_Human,15*(.@r/4); if (.@r>=11) { bonus2 bSkillAtk,"GC_CROSSIMPACT",30; bonus2 bSkillAtk,"SC_TRIANGLESHOT",2*getskilllv("AC_DOUBLE"); } - Id: 15464 AegisName: Ceres_Armor_TH Name: 2nd Anniversary Keres Armor Type: Armor Weight: 10 Slots: 1 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10; bonus bAgi,3*(.@r/4); bonus bDex,3*(.@r/4); if (.@r>=11) { bonus2 bSkillAtk,"RA_WUGSTRIKE",30; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; } - Id: 15465 AegisName: Vinus_Armor_TH Name: 2nd Anniversary Venus Armor Type: Armor Weight: 10 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkDef,getskilllv("AL_HEAL"); bonus bMaxHPrate,getskilllv("AL_HEAL"); bonus bInt,2*(.@r/4); bonus bMdef,7*(.@r/4); if (.@r>=11) { bonus2 bSkillAtk,"AB_JUDEX",80; bonus4 bAutoSpellOnSkill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000; } - Id: 15466 AegisName: Vulcan_Armor_TH Name: 2nd Anniversary Vulcan Armor Type: Armor Weight: 10 Slots: 1 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,getskilllv("MC_MAMMONITE"); bonus bStr,3*(.@r/4); bonus bBaseAtk,20*(.@r/4); if (.@r>=11) { bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",80; bonus2 bSkillAtk,"NC_POWERSWING",80; } - Id: 15467 AegisName: Neptune_Armor_TH Name: 2nd Anniversary Neptune Armor Type: Armor Weight: 10 Slots: 1 Jobs: Rebellion: true KagerouOboro: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bAtkRate,2*(.@r/4); bonus bMatkRate,2*(.@r/4); if (.@r>=11) { bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; } - Id: 15468 AegisName: Neptune_ArmorDoram_TH Name: 2nd Anniversary Neptune Armor (Doram) Type: Armor Weight: 10 Slots: 1 Jobs: Spirit_Handler: true Summoner: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bAtkRate,2*(.@r/4); bonus bMatkRate,2*(.@r/4); if (.@r>=11) { bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; } - Id: 15469 AegisName: aegis_15469 Name: "[Not For Sale] Fallen Warrior Armor" Type: Armor Weight: 800 Defense: 60 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10; bonus2 bSubRace,RC_DemiHuman,1; if (.@r>=8) { bonus2 bSubRace,RC_DemiHuman,2; if (.@r>=9) { bonus2 bSubRace,RC_DemiHuman,2; bonus bUnbreakableArmor; if (.@r>=10) { bonus2 bSubRace,RC_DemiHuman,2; } } } - Id: 15470 AegisName: aegis_15470 Name: "[Not For Sale] Sprint Gloves" Type: Armor Weight: 100 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: All_Upper: true Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVariableCastrate,-1; bonus bDelayrate,-1; - Id: 15471 AegisName: ROZ_FV_CassockA_VIT Name: Shining Priest's Robe Type: Armor Weight: 650 Defense: 142 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1400; bonus bDef,35+(5*(.@r/2)); bonus bMdef,10+(.@r/2); bonus bVit,3*(.@r/3); if (.@r>=9) bonus bMaxHPrate,20; - Id: 15472 AegisName: Comp_Kafra_Suit Name: "[Not For Sale] Kafra Uniform" Type: Armor Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if (.@r>=7) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=12) { bonus bHPrecovRate,100; bonus bSPrecovRate,100; } - Id: 15473 AegisName: Comp_Overwhelm_Str_Armo Name: "[Not for Sale] Soaring Physical Armor" Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; bonus bAtkRate,2*(.@r/3); if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r>=9) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r>11) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15474 AegisName: Comp_Overwhelm_V_Armor Name: "[Not for Sale] Strong Healthy Armor" Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; bonus bMaxHPrate,2*(.@r/3); if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r>=9) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r>11) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15475 AegisName: Comp_Overwh_Agi_Armor Name: "[Not For Sale] Splendid Swift Armor" Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; bonus bAspdRate,2*(.@r/3); if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r>=9) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r>11) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15476 AegisName: aegis_15476 Name: "[Not For Sale] Diabolus Wing" Type: Armor Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 View: 680 Script: | bonus bAllStats,5; - Id: 15477 AegisName: Comp_Overwh_D_Armor Name: "[Not For Sale] Excellent Dexterous Armor" Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; bonus bLongAtkRate,2*(.@r/3); if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r>=9) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r>11) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15478 AegisName: Comp_Overwh_L_Armor Name: "[Not For Sale] Unexpected Fortune Armor" Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; bonus bCritAtkRate,2*(.@r/3); if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; } if (.@r>=9) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Demon,10; } if (.@r>11) { bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Wind,10; } - Id: 15479 AegisName: aegis_15479 Name: "[Not For Sale] Holy White Cloth" Type: Armor Weight: 1000 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-10; bonus bMdef,10; bonus bHealPower,2; bonus bHealPower2,1; bonus2 bAddItemGroupHealRate,IG_Potion,1; if (.@r>=7) { bonus bHealPower,4; bonus bHealPower2,2; bonus2 bAddItemGroupHealRate,IG_Potion,2; bonus bDef,50; bonus bUnbreakableArmor; } if (.@r>=8) { bonus bHealPower,6; bonus bHealPower2,3; bonus2 bAddItemGroupHealRate,IG_Potion,3; bonus bDef,100; } if (.@r>=9) { bonus bHealPower2,3; bonus2 bAddItemGroupHealRate,IG_Potion,3; bonus bDef,150; bonus2 bResEff,Eff_Stone,5000; } - Id: 15480 AegisName: aegis_15480 Name: Lunar Eclipse Armor Type: Armor Weight: 800 Defense: 60 Slots: 1 Jobs: StarGladiator: true SoulLinker: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bBaseAtk,20*.@r; bonus bMatk,20*.@r; bonus bMaxHPrate,5*(.@r/4); bonus bAtkRate,5*(.@r/4); bonus bMatkRate,5*(.@r/4); if (.@r>=11) { bonus bDelayrate,-15; bonus bVariableCastrate,-20; } - Id: 15481 AegisName: aegis_15481 Name: "[Not For Sale] Lunar Eclipse Armor" Type: Armor Weight: 800 Defense: 60 Slots: 1 Jobs: StarGladiator: true SoulLinker: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bBaseAtk,20*.@r; bonus bMatk,20*.@r; bonus bMaxHPrate,5*(.@r/4); bonus bAtkRate,5*(.@r/4); bonus bMatkRate,5*(.@r/4); if (.@r>=11) { bonus bDelayrate,-15; bonus bVariableCastrate,-20; } - Id: 15482 AegisName: aegis_15482 Name: Worker Shirt Type: Armor Weight: 800 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,25; bonus bDelayrate,-5; if (.@r>=7) bonus bAspdRate,10; if (.@r>=9) bonus bDelayrate,-10; if (.@r>=11) { bonus bBaseAtk,25; bonus bDelayrate,-15; } - Id: 15483 AegisName: aegis_15483 Name: "[Not For Sale] Worker Shirt" Type: Armor Weight: 800 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,25; bonus bDelayrate,-5; if (.@r>=7) bonus bAspdRate,10; if (.@r>=9) bonus bDelayrate,-10; if (.@r>=11) { bonus bBaseAtk,25; bonus bDelayrate,-15; } - Id: 15484 AegisName: aegis_15484 Name: "[Not For Sale] Celine's Dress" Type: Armor Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=12) { bonus bDelayrate,-5; } } } } - Id: 15822 AegisName: Magaleta_Ribbon_EXE Name: Magaleta's Ribbon Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 908 Script: | .@r = getrefine(); if (BaseJob == Job_Priest) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bSkillAtk,"AL_HOLYLIGHT",20; if (.@r>=8) { bonus bAspdRate,5; bonus bDelayrate,-10; if (.@r>=9) { skill "ALL_ODINS_POWER",1; bonus bHealPower,10; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } else if (BaseJob == Job_Monk) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bSkillAtk,"MO_TRIPLEATTACK",20; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"CH_CHAINCRUSH",5; if (.@r>=9) { bonus2 bVariableCastrate,"MO_FINGEROFFENSIVE",-30; bonus2 bSkillAtk,"MO_COMBOFINISH",30; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } - Id: 15823 AegisName: Golden_Crown_J Name: Pollux Crown Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 597 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bStr,10; bonus bBaseAtk,50; bonus bAspdRate,10; bonus2 bAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus2 bSubClass,Class_Boss,20; bonus bHPGainValue,500; bonus bSPGainValue,50; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 15824 AegisName: Phoenix_Crown_J Name: Procyon Crown Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 840 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bInt,10; bonus bMatk,50; bonus bVariableCastrate,-10; bonus2 bMagicAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Soul_Linker) { bonus2 bSubClass,Class_Boss,20; bonus bHPGainValue,500; bonus bSPGainValue,50; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 15825 AegisName: C_Black_Musang_J Name: Costume Black Musang Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 771 - Id: 15826 AegisName: Seyrandel_Hat_EXE Name: Seyrandel's Hat Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1120 Script: | .@r = getrefine(); if (BaseJob == Job_Knight) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bVariableCastrate,"LK_SPIRALPIERCE",20; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } else if (BaseJob == Job_Crusader) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bVariableCastrate,"PA_SHIELDCHAIN",20; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"PA_SHIELDCHAIN",5; if (.@r>=9) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus5 bAutoSpellOnSkill,"CR_GRANDCROSS","AL_HEAL",5,500,1; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } - Id: 15827 AegisName: Ceryne_Hat_EXE Name: Ceryne's Hat Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 912 Script: | .@r = getrefine(); if (BaseJob == Job_Wizard) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bVariableCastrate,"WZ_JUPITEL",20; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"WZ_JUPITEL",5; if (.@r>=9) { bonus2 bSkillAtk,"WZ_JUPITEL",30; bonus2 bSkillAtk,"WZ_FIREPILLAR",30; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } else if (BaseJob == Job_Sage) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bVariableCastrate,"WZ_HEAVENDRIVE",30; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"WZ_HEAVENDRIVE",5; if (.@r>=9) { bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; bonus2 bSkillAtk,"MG_FIREBOLT",10; bonus2 bSkillAtk,"MG_COLDBOLT",10; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",10; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } - Id: 15828 AegisName: Germes_Hat_EXE Name: Cetio's Hat Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1119 Script: | .@r = getrefine(); if (BaseJob == Job_Hunter) { bonus bBaseAtk,2*(readparam(bDex)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bVariableCastrate,"SN_SHARPSHOOTING",20; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"SN_SHARPSHOOTING",5; if (.@r>=9) { bonus bCritical,10; bonus2 bSkillAtk,"SN_SHARPSHOOTING",30; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } else if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bBaseAtk,2*(readparam(bDex)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bVariableCastrate,"CG_ARROWVULCAN",30; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"CG_ARROWVULCAN",5; if (.@r>=9) { bonus2 bSkillAtk,"DC_THROWARROW",40; bonus2 bSkillAtk,"CG_ARROWVULCAN",30; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } - Id: 15829 AegisName: Flaward_Hat_EXE Name: Flaward's Hat Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1128 Script: | .@r = getrefine(); if (BaseJob == Job_Blacksmith) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bSkillAtk,"MC_MAMMONITE",30; if (.@r>=8) { bonus bDelayrate,-10; bonus bCritical,10; skill "BS_GREED",1; bonus2 bSkillCooldown,"BS_GREED",5000; if (.@r>=9) { bonus2 bSkillCooldown,"BS_GREED",-2000; bonus2 bSkillAtk,"WS_CARTTERMINATION",30; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } else if (BaseJob == Job_Alchemist) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bSkillAtk,"AM_ACIDTERROR",20; bonus2 bSkillAtk,"AM_DEMONSTRATION",40; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"CR_ACIDDEMONSTRATION",5; if (.@r>=9) { bonus2 bSkillCooldown,"CR_ACIDDEMONSTRATION",-300; bonus bLongAtkRate,10; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } - Id: 15830 AegisName: Germes_Horn_EXE Name: Germes's Horn Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1127 Script: | .@r = getrefine(); if (BaseJob == Job_Assassin) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bSkillAtk,"AS_GRIMTOOTH",20; if (.@r>=8) { bonus bDelayrate,-10; bonus2 bSkillUseSP,"ASC_EDP",10; if (.@r>=9) { bonus bCritical,10; bonus bCritAtkRate,10; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } else if (BaseJob == Job_Rogue) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r>=8) { bonus bMatk,30; bonus bDelayrate,-10; if (.@r>=9) { bonus bFlee,30; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } - Id: 15831 AegisName: Kuken_Hat_EXE Name: Kuken's Hat Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 819 Script: | .@r = getrefine(); if (BaseJob == Job_Gunslinger) { bonus bBaseAtk,2*(readparam(bDex)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus2 bVariableCastrate,"GS_TRACKING",-30; if (.@r>=8) { bonus bDelayrate,-10; bonus bCritical,10; if (.@r>=9) { bonus3 bAutoSpell,"GS_RAPIDSHOWER",2,70; bonus bLongAtkRate,5; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } else if (BaseJob == Job_Ninja) { bonus bBaseAtk,2*(readparam(bStr)/9); bonus bMatk,2*(readparam(bInt)/9); if (.@r>=7) { bonus bDef,10; bonus bMdef,15; bonus bLongAtkRate,5; bonus2 bSkillAtk,"NJ_KAENSIN",50; bonus2 bSkillAtk,"NJ_RAIGEKISAI",50; if (.@r>=8) { bonus bMatk,15; bonus bBaseAtk,15; bonus bDelayrate,-10; if (.@r>=9) { bonus bFlee,10; bonus2 bVariableCastrate,"NJ_HUUMA",-20; bonus2 bVariableCastrate,"NJ_KAENSIN",-20; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-20; if (.@r>=10) { bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; } } } } } - Id: 15832 AegisName: Cetrion_Circlet_EXE Name: Cetrion Circlet (OSM) Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 570 Script: | .@r = getrefine(); bonus bInt,3; bonus bDex,3; bonus bMatk,10; bonus bMdef,10; bonus2 bSkillAtk,"MG_THUNDERSTORM",5; bonus2 bSkillAtk,"WZ_FIREPILLAR",10; if (getskilllv("WZ_FROSTNOVA") == 10) bonus4 bAutoSpellOnSkill,"WZ_FROSTNOVA","WZ_FROSTNOVA",5,500; if (.@r>=7) { bonus bDef,15; bonus2 bSkillAtk,"MG_THUNDERSTORM",10; bonus2 bSkillAtk,"WZ_FIREPILLAR",20; } if (.@r>=8) { bonus bFlee,15; bonus2 bSkillAtk,"MG_THUNDERSTORM",15; bonus2 bSkillAtk,"WZ_FIREPILLAR",30; } if (.@r>=9) { bonus bMatk,15; bonus2 bSkillAtk,"MG_THUNDERSTORM",20; bonus2 bSkillAtk,"WZ_FIREPILLAR",40; } if (.@r>=10) { bonus bMatk,15; bonus2 bVariableCastrate,"WZ_STORMGUST",-10; bonus2 bVariableCastrate,"WZ_VERMILION",-10; bonus2 bVariableCastrate,"MG_THUNDERSTORM",-30; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; } - Id: 15833 AegisName: Cetrion_Bracelet_EXE Name: Cetrion Bracelet (OSM) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bMatkRate,3; bonus bInt,3; bonus bAgi,3; bonus bMatk,5*(getskilllv("SA_ADVANCEDBOOK")/2); bonus2 bSkillAtk,"MG_FIREBOLT",1; bonus2 bSkillAtk,"MG_COLDBOLT",1; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",1; bonus2 bSkillAtk,"WZ_EARTHSPIKE",1; if (getskilllv("SA_SEISMICWEAPON") == 5) bonus3 bAutoSpell,"WZ_EARTHSPIKE",5,100; if (readparam(bInt)>=89) bonus2 bSkillAtk,"WZ_HEAVENDRIVE",25; if (BaseClass == Job_Mage || BaseClass == Job_SuperNovice) { bonus2 bSkillAtk,"MG_FIREBOLT",(BaseLevel/5); bonus2 bSkillAtk,"MG_COLDBOLT",(BaseLevel/5); bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",(BaseLevel/5); bonus2 bSkillAtk,"WZ_EARTHSPIKE",(BaseLevel/5); } else if (BaseClass == Job_Wizard || BaseClass == Job_Sage) { bonus2 bSkillAtk,"MG_FIREBOLT",(BaseLevel/10); bonus2 bSkillAtk,"MG_COLDBOLT",(BaseLevel/10); bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",(BaseLevel/10); bonus2 bSkillAtk,"WZ_EARTHSPIKE",(BaseLevel/10); } - Id: 15834 AegisName: DRaiden_Sakkat_EXE Name: Dark Raiden's Sakkat Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 558 Script: | .@r = getrefine(); bonus2 bSkillAtk,"AL_HOLYLIGHT",5; bonus bHealPower,1; bonus bAddItemHealRate,1; if (getskilllv("PR_ASPERSIO") == 5) bonus3 bAutoSpell,"PA_PRESSURE",5,100; if (.@r>=7) { bonus bDef,15; bonus bHealPower,3; bonus bAddItemHealRate,3; bonus2 bSkillAtk,"AL_HOLYLIGHT",10; } if (.@r>=8) { bonus bFlee,15; bonus bHealPower,5; bonus bAddItemHealRate,5; bonus2 bSkillAtk,"AL_HOLYLIGHT",15; } if (.@r>=9) { bonus bMatk,15; bonus bHealPower,7; bonus bAddItemHealRate,7; bonus2 bSkillAtk,"AL_HOLYLIGHT",20; } if (.@r>=10) { bonus bHealPower,9; bonus bAddItemHealRate,9; bonus2 bMagicAddEle,Ele_Holy,10; } - Id: 15835 AegisName: STsung_Speller1_EXE Name: Kronika's Speller (Phy.) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bStr,3; bonus bAgi,3; bonus bAtkRate,3; bonus bBaseAtk,5*(getskilllv("RG_RAID")/2); bonus2 bSkillAtk,"RG_BACKSTAP",1+(3*(BaseLevel/4)); if (getskilllv("RG_STRIPHELM") == 5) skill "SN_WINDWALK",5; if (getskilllv("RG_STRIPSHIELD") == 5) skill "AC_CONCENTRATION",5; if (getskilllv("RG_STRIPARMOR") == 5) skill "LK_BERSERK",1; if (getskilllv("RG_STRIPWEAPON") == 5) skill "BS_OVERTHRUST",5; if (getskilllv("RG_BACKSTAP") == 10) skill "TK_JUMPKICK",7; if (readparam(bAgi) >= 90) bonus2 bSkillAtk,"RG_RAID",15; - Id: 15836 AegisName: C_Skarlet_Band_EXE Name: Costume Blazing Angel Wings Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 679 - Id: 15838 AegisName: C_VesperHeadGear_J Name: Costume Vesper Headgear Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1827 - Id: 15839 AegisName: C_Droop_Gunslinger_J Name: Costume Drooping Rebellion Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1444 - Id: 15840 AegisName: C_Bio_Protector Name: Costume Bike Protector Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1366 - Id: 15841 AegisName: C_Hat_of_Goggle Name: Costume Goggles Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1721 - Id: 15842 AegisName: C_Disapear_Time_J Name: Costume Magic Time Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1998 Script: | hateffect HAT_EF_C_Disapear_Time_TW,true; UnEquipScript: | hateffect HAT_EF_C_Disapear_Time_TW,false; - Id: 15843 AegisName: C_Hunters_Dinner Name: Costume Hunter's Dinner # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2024 - Id: 15844 AegisName: C_Cow_Hat1_J Name: Costume Muscle Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1211 - Id: 15845 AegisName: Shaokahn_Helmet_EXE Name: Shao Kahn's Helmet (OSM) Type: Armor Weight: 300 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 523 Script: | .@r = getrefine(); bonus bStr,3; bonus bLuk,3; bonus bBaseAtk,10; bonus bMdef,10; bonus2 bSkillAtk,"WS_CARTTERMINATION",5; bonus2 bSkillAtk,"MC_MAMMONITE",5; if (getskilllv("BS_ADRENALINE") == 5) bonus3 bAutoSpell,"BS_HAMMERFALL",3,70; if (.@r>=7) { bonus bDef,15; bonus2 bSkillAtk,"WS_CARTTERMINATION",10; bonus2 bSkillAtk,"MC_MAMMONITE",10; } if (.@r>=8) { bonus bFlee,15; bonus2 bSkillAtk,"WS_CARTTERMINATION",15; bonus2 bSkillAtk,"MC_MAMMONITE",15; } if (.@r>=9) { bonus bBaseAtk,15; bonus2 bSkillAtk,"WS_CARTTERMINATION",20; bonus2 bSkillAtk,"MC_MAMMONITE",20; } if (.@r>=10) { bonus bAtkRate,5; bonus2 bSkillAtk,"MC_CARTREVOLUTION",30; bonus2 bAddMonsterDropItem,529,500; bonus2 bAddMonsterDropItem,530,500; bonus2 bAddItemHealRate,529,200; bonus2 bAddItemHealRate,530,200; } - Id: 15846 AegisName: C_Artist_Silk_Hat Name: Costume Artist's Silk Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2057 - Id: 15847 AegisName: C_EXE_Wing_Cap_TH Name: Costume Unknown Feather Hat # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1597 - Id: 15848 AegisName: Motaro_Horn_EXE Name: Motaro's Horn (OSM) Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1103 Script: | bonus bStr,3; bonus bLuk,3; bonus bBaseAtk,10; bonus bMdef,10; bonus2 bSkillAtk,"KN_PIERCE",10; bonus2 bSkillAtk,"KN_SPEARBOOMERANG",10; if (getskilllv("KN_SPEARMASTERY") == 10) skill "CR_SPEARQUICKEN",5; if (.@r>=7) { bonus bDef,15; bonus2 bSkillAtk,"KN_PIERCE",20; bonus2 bSkillAtk,"KN_SPEARBOOMERANG",20; } if (.@r>=8) { bonus bFlee,15; bonus2 bSkillAtk,"KN_PIERCE",30; bonus2 bSkillAtk,"KN_SPEARBOOMERANG",30; } if (.@r>=9) { bonus bBaseAtk,15; bonus2 bSkillAtk,"KN_PIERCE",40; bonus2 bSkillAtk,"KN_SPEARBOOMERANG",40; } if (.@r>=10) { bonus bAspdRate,5; bonus bLongAtkRate,5; bonus2 bSkillAtk,"KN_PIERCE",50; bonus2 bSkillAtk,"KN_SPEARBOOMERANG",50; } - Id: 15849 AegisName: Kintaro_Bracelet_EXE Name: Kintaro's Bracelet (OSM) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bStr,3; bonus bVit,3; bonus bAtkRate,3; bonus bBaseAtk,5*(getskilllv("MO_IRONHAND")/2); bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",1+(BaseLevel/3); bonus2 bSkillAtk,"CH_PALMSTRIKE",1+(BaseLevel/2); if (readparam(bInt)>=90) bonus2 bSkillAtk,"MO_EXTREMITYFIST",10; if (readparam(bDex)>=90) bonus2 bVariableCastrate,MO_FINGEROFFENSIVE,-15; - Id: 15850 AegisName: STsung_Speller2_EXE Name: Kronika's Speller Mag (OSM) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bInt,3; bonus bAgi,3; bonus bMatkRate,3; bonus bMatk,5*getskilllv("RG_RAID"); if (getskilllv("RG_STRIPHELM") == 5) skill "SA_DELUGE",3; if (getskilllv("RG_STRIPSHIELD") == 5) skill "HW_MAGICPOWER",5; if (getskilllv("RG_STRIPARMOR") == 5) skill "PR_MAGNIFICAT",5; if (getskilllv("RG_STRIPWEAPON") == 5) skill "PF_DOUBLECASTING",3; if (getskilllv("RG_INTIMIDATE") == 5) skill "WZ_WATERBALL",5; if (BaseJob == Job_Rogue) bonus2 bSkillAtk,"WZ_WATERBALL",1+(3*(BaseLevel/4)); if (readparam(bInt)>=90) { bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; } - Id: 15851 AegisName: C_Freyja_Crown_J Name: Costume Freyja Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 328 - Id: 15853 AegisName: C_Gold_Ingot_Poring_J Name: Costume Gold Ingot Poring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 887 - Id: 15855 AegisName: Ermac_Veil_EXE Name: Ermac's Veil (OSM) Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 326 Script: | .@r = getrefine(); bonus bInt,3; bonus bDex,3; bonus bMatk,10; bonus bMdef,10; if (.@r>=5) { if (getskilllv("SL_SMA") == 10) { bonus bMaxHP,3000; if (getskilllv("SL_STIN") == 7) { skill "MG_SOULSTRIKE",10; if (getskilllv("SL_STUN") == 7) { skill "WZ_QUAGMIRE",5; } } } } if (.@r>=7) { bonus bDef,15; bonus2 bSkillAtk,"SL_SMA",10; bonus2 bSkillAtk,"MG_SOULSTRIKE",20; } if (.@r>=8) { bonus bFlee,15; bonus2 bSkillAtk,"SL_SMA",15; bonus2 bSkillAtk,"MG_SOULSTRIKE",25; } if (.@r>=9) { bonus bMatk,15; bonus2 bSkillAtk,"SL_SMA",20; bonus2 bSkillAtk,"MG_SOULSTRIKE",30; } if (.@r>=10) { bonus2 bVariableCastrate,"SL_STIN",-50; bonus2 bVariableCastrate,"SL_STUN",-50; } - Id: 15856 AegisName: Kronika_Orb_EXE Name: Kronika's Orb (OSM) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bInt,3; bonus bDex,3; bonus bMatkRate,3; bonus bMatk,5*(getskilllv("WZ_JUPITEL")/2); bonus2 bSkillAtk,"WZ_JUPITEL",3+(2*(BaseLevel/9)); bonus2 bSkillAtk,"MG_SOULSTRIKE",2+(2*(BaseLevel/3)); if (readparam(bInt)>=90) bonus2 bSkillAtk,"WZ_VERMILION",5; if (readparam(bDex)>=90) bonus2 bVariableCastrate,"WZ_JUPITEL",-10; - Id: 15857 AegisName: Shang_Rainbow_EXE Name: Shang Tsung's Rainbow (OSM) Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 704 Script: | bonus bInt,3; bonus bAgi,3; bonus bMdef,10; bonus bMatk,2*getrefine(); - Id: 15858 AegisName: C_Choco_Banana Name: Costume Choco Banana Bonnet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2087 - Id: 15875 AegisName: C_King_Of_Spirit_Circle Name: Costume King of Spirit Circle Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1118 - Id: 15876 AegisName: C_RTC_Second_Best Name: Costume RTC Second Best (Red) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 578 - Id: 15877 AegisName: C_P_blossom_Hairpin Name: Costume Sakura Hairpin Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2085 - Id: 15878 AegisName: Joker_Card_EXE Name: Joker's Card (OSM) Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 1679 Script: | bonus bCritical,5; bonus bCritAtkRate,5; - Id: 15879 AegisName: KungJin_Headpiece_EXE Name: Kung Jin's Headpiece (OSM) Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 335 Script: | .@r = getrefine(); bonus bLuk,3; bonus bDex,3; bonus bBaseAtk,10; bonus bMdef,10; if (.@r>=5) { bonus bCritical,10; bonus bCritAtkRate,5; } if (.@r>=7) { bonus bDef,15; bonus bCritAtkRate,2; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; } if (.@r>=8) { bonus bFlee,15; bonus bCritAtkRate,3; bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; } if (.@r>=9) { bonus bBaseAtk,15; bonus bCritAtkRate,5; bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; } if (.@r>=10) { bonus bAtkRate,5; bonus2 bVariableCastrate,"SN_SHARPSHOOTING",-10; bonus bDelayrate,-10; } - Id: 15880 AegisName: Joker_Face_EXE Name: Joker's Face (OSM) Type: Armor Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 1202 Script: | bonus bCritical,5; bonus bCritAtkRate,3; - Id: 15881 AegisName: C_Rose_Crispinette Name: Costume Rose Crispinette Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2091 - Id: 15882 AegisName: C_Rhythm_Hairband Name: Rhythm Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1180 - Id: 15883 AegisName: Nezuko_Eyes_EXE Name: Nezuko's Eyes (OSM) Type: Armor Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 1897 Script: | .@a = (readparam(bInt)/11); bonus bStr,2; bonus bBaseAtk,5*.@a; bonus bMatk,5*.@a; bonus bHealPower,.@a; bonus bVariableCastrate,-.@a; if (readparam(bInt)>=90) { bonus bBaseAtk,10; bonus bMaxSP,10; bonus bHealPower,1; bonus bVariableCastrate,-1; } if (readparam(bInt)>=99) { bonus bBaseAtk,15; bonus bMaxSP,15; } - Id: 15884 AegisName: Nezuko_Bamboo_EXE Name: Nezuko's Bamboo (OSM) Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 1045 Script: | bonus bInt,2; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Player_Human,5; - Id: 15885 AegisName: Erron_Hat_EXE Name: Erron's Hat (OSM) Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 830 Script: | .@r = getrefine(); bonus bAgi,3; bonus bDex,3; bonus bBaseAtk,10; bonus bMdef,10; if (.@r>=5) { if (getskilllv("GS_CHAINACTION") == 10) { bonus5 bAutoSpell,"GS_RAPIDSHOWER",3,70,BF_LONG,1; } } if (.@r>=7) { bonus bDef,15; bonus2 bSkillAtk,"GS_RAPIDSHOWER",5; bonus2 bSkillUseSP,"GS_RAPIDSHOWER",5; } if (.@r>=8) { bonus bFlee,15; bonus2 bSkillAtk,"GS_RAPIDSHOWER",10; bonus2 bSkillAtk,"GS_DESPERADO",5; } if (.@r>=9) { bonus bBaseAtk,15; bonus2 bSkillAtk,"GS_RAPIDSHOWER",15; bonus2 bSkillAtk,"GS_DESPERADO",10; } if (.@r>=10) { bonus bLongAtkRate,5; bonus2 bSkillAtk,"GS_DESPERADO",15; } - Id: 15887 AegisName: Odious_Robe_EXE Name: Odious's Robe Type: Armor Defense: 20 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true - Id: 15888 AegisName: C_Hand_Of_Devil Name: Costume Dragon Claw Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1018 - Id: 15889 AegisName: C_Boitata_Hat_J Name: Costume Boitata Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 808 - Id: 15890 AegisName: C_BLACKDEATHKING_GOLDEN Name: Costume Black Death King's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 996 - Id: 15891 AegisName: Mountain_Helmet Name: Mountain Helmet Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 2098 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-10; bonus2 bSkillAtk,"NC_AXETORNADO",30; bonus2 bSkillAtk,"NC_POWERSWING",30; bonus2 bSubEle,Ele_Fire,.@r; bonus2 bSubEle,Ele_Earth,.@r; if (getskilllv("NC_SILVERSNIPER") == 5) bonus bPerfectHitAddRate,50; if (getskilllv("NC_AXEBOOMERANG") == 5) bonus2 bSkillCooldown,"NC_AXETORNADO",-500; if (getskilllv("NC_MAGMA_ERUPTION") == 5) autobonus "{ bonus2 bSkillAtk,\"NC_POWERSWING\",10*(readparam(bVit)/10); }",30,10000,BF_WEAPON; if (.@r>=7) { bonus2 bSkillAtk,"NC_AXETORNADO",50; bonus2 bSkillAtk,"NC_POWERSWING",50; } if (.@r>=9) { bonus2 bSkillAtk,"NC_AXETORNADO",70; bonus2 bSkillAtk,"NC_POWERSWING",70; } - Id: 15892 AegisName: Themis_Helm Name: Themis Helm Type: Armor View: 2099 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bDef,.@r*30; bonus bDelayrate,-10; bonus bMatkRate,25; if (getskilllv("LG_INSPIRATION") == 5) { bonus bDelayrate,-15; bonus2 bSkillCooldown,"LG_INSPIRATION",-10000; } if (getskilllv("CR_DEVOTION") == 5) { bonus bMaxHPrate,15; bonus bAspdRate,10; } if (getskilllv("LG_HESPERUSLIT") == 5) bonus4 bAutoSpellOnSkill,"PA_PRESSURE","LG_RAYOFGENESIS",getskilllv("LG_RAYOFGENESIS"),500; if (.@r>=7) { bonus bHealPower,15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } if (.@r>=9) { bonus bHealPower,35; bonus2 bSkillAtk,"LG_RAYOFGENESIS",35; } - Id: 15893 AegisName: C_Helm_Of_Sun_V Name: Costume Hat of the Sun God (Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 138 - Id: 15894 AegisName: C_Rebirth_Circlet Name: Costume Rebirth Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2120 - Id: 15897 AegisName: Rebirth_Circlet Name: Rebirth Crown Type: Armor View: 2120 Buy: 20 Weight: 600 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus2 bResEff,Eff_Stone,1000*.@r; bonus bDelayrate,-3*.@r; if (.@r>=7) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillCooldown,"WL_COMET",-40000; } if (.@r>=9) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillCooldown,"WL_COMET",-45000; } if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Neutral,(readparam(bInt)+readparam(bDex))/10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) skill "PF_SPIDERWEB",1; } - Id: 15898 AegisName: Kings_Crown_A Name: Awakened Old King’s Crown Type: Armor Buy: 20 Weight: 500 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 2121 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus bMdef,15; if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkDef,10; bonus bHealPower2,10; bonus bAddItemHealRate,10; } if (.@r>=9) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bLongAtkDef,2; bonus bHealPower2,15; bonus bAddItemHealRate,15; } - Id: 15899 AegisName: C_Kings_Crown_A Name: Costume Awakened Old King Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2121 - Id: 15904 AegisName: C_Love_Guard_V Name: Costume Love Guard Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 716 - Id: 15905 AegisName: C_Helmet_Of_Siegfried_J Name: Costume Helmet of Siegfried Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1055 - Id: 15906 AegisName: Northern_Cross Name: Northern Cross Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 2132 Script: | .@r = getrefine(); bonus bMdef,10; bonus bAspdRate,10; bonus bMatkRate,25; if (getskilllv("WL_STASIS") >= 5) autobonus "{ bonus bSpeedRate,25; }",10,30000,BF_MAGIC; if (getskilllv("WL_TELEKINESIS_INTENSE") >= 5) { bonus bDef,150; bonus bMdef,15; bonus2 bSkillCooldown,"WL_DRAINLIFE",-2000; } if (getskilllv("WL_RECOGNIZEDSPELL") >= 5) bonus2 bSubClass,Class_Boss,20; bonus bMagicHPGainValue,30*.@r; bonus bMagicSPGainValue,3*.@r; if (.@r >= 7) { bonus bVit,7; bonus bInt,7; bonus2 bSkillAtk,"WL_DRAINLIFE",75; if (.@r >= 9) { bonus bVit,18; bonus bInt,18; bonus2 bSkillAtk,"WL_DRAINLIFE",175; } } - Id: 15920 AegisName: Charm_Of_Flame_Heart_BR Name: Flaming Heart # !todo check english name Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1261 Script: | skill "SA_FLAMELAUNCHER",1; bonus2 bIgnoreDefClassRate,Class_Normal,3*((readparam(bStr)+readparam(bLuk))/15); - Id: 15921 AegisName: Charm_Of_Nature_BR Name: Charm Of Great Nature Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1264 Script: | skill "SA_SEISMICWEAPON",1; bonus2 bIgnoreMdefClassRate,Class_Normal,3*((readparam(bInt)+readparam(bDex))/15); - Id: 15922 AegisName: Charm_Of_Frozen_BR Name: Charm Of Mistic Frozen Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1262 Script: | skill "SA_FROSTWEAPON",1; bonus bHealPower,(readparam(bAgi)+readparam(bVit))/15; - Id: 15923 AegisName: Charm_Of_Wind_BR Name: Charm of Leafwind Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1262 Script: | skill "SA_LIGHTNINGLOADER",1; bonus bFlee2,2*((readparam(bAgi)+readparam(bLuk))/15); - Id: 15924 AegisName: Tatoo_Brush_BR Name: Tattoo Brush Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1291 Script: | skill "RG_GRAFFITI",1; bonus2 bResEff,Eff_Confusion,10000; - Id: 15925 AegisName: aegis_15925 Name: Costume Syrup Water Balloon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 649 - Id: 15926 AegisName: aegis_15926 Name: Costume Beer Server Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 117 - Id: 15927 AegisName: aegis_15927 Name: "[Rental] Happy Turtle Hat" Type: Armor Defense: 15 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 585 Script: | bonus bBaseAtk,30; bonus bMatk,30; bonus2 bAddRace2,RC2_Illusion_Turtle,50; bonus2 bMagicAddRace2,RC2_Illusion_Turtle,50; bonus2 bSubRace2,RC2_Illusion_Turtle,50; - Id: 15928 AegisName: aegis_15928 Name: "[Not For Sale] Cookie Hat" Type: Armor Weight: 500 Defense: 4 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 Refineable: true View: 217 Script: | bonus bAgi,1; bonus bFlee2,5; bonus bCritAtkRate,5; - Id: 15932 AegisName: aegis_15932 Name: Vassalage Necklace Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 2018 EquipLevelMin: 30 Script: | .@a = BaseLevel/35; .@b = 2*.@a; if (BaseLevel>=175) { .@a = .@a*2; .@b = .@b*2; } bonus bShortAtkRate,.@a; bonus bHit,.@b; - Id: 15945 AegisName: aegis_15945 Name: Metal Riffs Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatk,50; bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Neutral,BaseLevel/12; bonus2 bSkillAtk,"WM_METALICSOUND",7*(getskilllv("WM_SONG_OF_MANA")+getskilllv("WM_DANCE_WITH_WUG")+getskilllv("WM_LERADS_DEW")); if (getskilllv("WM_SEVERE_RAINSTORM") == 5) bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; if (BaseClass == Job_Archer) bonus bVariableCastrate,-30; - Id: 15947 AegisName: aegis_15947 Name: "[Not For Sale] Indigo Rear Ribbon" Type: Armor View: 1492 Weight: 100 Defense: 8 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 Script: | bonus2 bDropAddClass,Class_All,5; bonus2 bExpAddClass,Class_All,5; - Id: 15948 AegisName: aegis_15948 Name: Eye Patch Of Power Type: Armor View: 698 Weight: 50 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus2 bResEff,Eff_Bleeding,10000; bonus bBaseAtk,60; if (BaseLevel>=170) bonus bBaseAtk,60; - Id: 15949 AegisName: aegis_15949 Name: "[Not for Sale] Eye Patch Of Power" Type: Armor View: 698 Weight: 50 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus2 bResEff,Eff_Bleeding,10000; bonus bBaseAtk,60; if (BaseLevel>=170) bonus bBaseAtk,60; - Id: 15950 AegisName: aegis_15950 Name: Eye Patch Of Power Type: Armor View: 698 Weight: 50 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus2 bResEff,Eff_Bleeding,5000; bonus bBaseAtk,40; if (BaseLevel>=170) bonus bBaseAtk,40; - Id: 15951 AegisName: aegis_15951 Name: "[Not for Sale] Eye Patch Of Power" Type: Armor View: 698 Weight: 50 Slots: 1 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus2 bResEff,Eff_Bleeding,5000; bonus bBaseAtk,40; if (BaseLevel>=170) bonus bBaseAtk,40; - Id: 15952 AegisName: aegis_15952 Name: Costume 15th Nov Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2296 - Id: 15953 AegisName: C_Somtam Name: Costume Somtam Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2298 - Id: 15954 AegisName: aegis_15954 Name: Costume Wichienmaat & Bangkaew Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2297 - Id: 15955 AegisName: aegis_15955 Name: "[Not For Sale] Kafra Employee Band" Type: Armor Weight: 500 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 106 Script: | .@r = getrefine(); bonus2 bSubRace,RC_All,5; bonus2 bAddMonsterDropItem,7059,10*.@r; bonus2 bAddMonsterDropItem,7060,10*.@r; bonus2 bAddMonsterDropItem,23177,10*.@r; - Id: 15956 AegisName: aegis_15956 Name: Helmet Of Siegfried TH Type: Armor Weight: 300 Defense: 60 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1055 Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMdef,15; if (readparam(bInt)>=108) bonus2 bSkillAtk,"RK_DRAGONBREATH",15; if (readparam(bDex)>=108) bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if (readparam(bInt)>=120 && readparam(bDex)>=120) { bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r>=9) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Dragon,10; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=13) { bonus bDef,200; bonus bMdef,40; } } } } - Id: 15957 AegisName: aegis_15957 Name: "[Not for Sale] Helmet Of Siegfried TH" Type: Armor Weight: 300 Defense: 60 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1055 Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMdef,15; if (readparam(bInt)>=108) bonus2 bSkillAtk,"RK_DRAGONBREATH",15; if (readparam(bDex)>=108) bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; if (readparam(bInt)>=120 && readparam(bDex)>=120) { bonus2 bSkillAtk,"RK_DRAGONBREATH",10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r>=9) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Dragon,10; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=13) { bonus bDef,200; bonus bMdef,40; } } } } - Id: 15958 AegisName: aegis_15958 Name: "[Not For Sale] Giant Snake Breath" Type: Armor View: 1050 Weight: 300 Defense: 2 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 Script: | bonus2 bMagicAtkEle,Ele_Fire,1; - Id: 15959 AegisName: Comp_Phantom_Cap Name: "[Not for Sale] Phantom of Masquerade" Type: Armor View: 1899 Weight: 100 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - Id: 15960 AegisName: Comp_Scorpio_Diadem_K Name: "[Not for Sale] Scorpio Celestial Coronet K" Type: Armor View: 606 Weight: 100 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - Id: 15961 AegisName: Comp_Clock_Casket_RD Name: "[Not for Sale] Red Clock Casquette" Type: Armor View: 1777 Weight: 100 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bShortAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 15962 AegisName: Comp_L_Sorcerer_Crown Name: "[Not for Sale] Great Sorcerer Crown" Type: Armor View: 1811 Weight: 100 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - Id: 15963 AegisName: Comp_Ignis_CapK Name: "[Not for Sale] Ignis Cap K" Type: Armor View: 803 Weight: 100 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 15964 AegisName: Comp_Sagi_DiademK Name: "[Not for Sale] Sagittarius Celestial Coronet K" Type: Armor View: 618 Weight: 100 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 15965 AegisName: Comp_Stripe_Hat Name: "[Not for Sale] Stripe Hat" Type: Armor View: 1728 Weight: 100 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 15966 AegisName: aegis_15966 Name: "[Not For Sale] Sigrun's Wing" Type: Armor View: 568 Weight: 100 Defense: 2 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Script: | if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker)) bonus bAspd,1; else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) { bonus bMatk,5; bonus bHealPower,2; } else if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger) bonus bLongAtkRate,2; else if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) { bonus bMaxHP,120; bonus bMaxSP,60; } - Id: 15967 AegisName: aegis_15967 Name: "[Not For Sale] Pink Angeling Bubble" Type: Armor View: 975 Weight: 50 Defense: 5 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAspd,1; bonus bMaxHP,200; - Id: 15968 AegisName: aegis_15968 Name: Orange Rabbit Type: Armor Defense: 60 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1887 Script: | bonus bMaxHPrate,5; bonus bAspdRate,5; bonus2 bAddRace,RC_All,6; bonus2 bMagicAddRace,RC_All,6; - Id: 15969 AegisName: aegis_15969 Name: Twin Cannon Type: Armor Weight: 150 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 View: 1865 Script: | bonus bDelayrate,-5; - Id: 15970 AegisName: aegis_15970 Name: "[Not For Sale] CD in Mouth K" Type: Armor View: 815 Weight: 200 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus2 bMagicAtkEle,Ele_All,5; bonus5 bAutoSpell,"MG_SOULSTRIKE",10,100,BF_SHORT|BF_WEAPON,1; - Id: 15976 AegisName: aegis_15976 Name: Adam's Apple In Mouth Type: Armor Weight: 300 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,-5; bonus2 bSubRace,RC_Angel,-15; bonus2 bSubEle,Ele_Holy,-15; if (strcharinfo(3) == "1@lab") { bonus2 bAddClass,Class_Boss,15; bonus2 bMagicAddClass,Class_Boss,15; bonus2 bAddDamageClass,1088,15; bonus2 bAddDamageClass,1089,15; bonus2 bAddDamageClass,1090,15; bonus2 bAddDamageClass,1092,15; bonus2 bAddDamageClass,1093,15; bonus2 bAddDamageClass,1096,15; bonus2 bAddDamageClass,1120,15; bonus2 bAddMagicDamageClass,1088,15; bonus2 bAddMagicDamageClass,1089,15; bonus2 bAddMagicDamageClass,1090,15; bonus2 bAddMagicDamageClass,1092,15; bonus2 bAddMagicDamageClass,1093,15; bonus2 bAddMagicDamageClass,1096,15; bonus2 bAddMagicDamageClass,1120,15; } - Id: 15977 AegisName: aegis_15977 Name: Shrine Maiden Ribbon Type: Armor Weight: 300 Defense: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 908 Script: | bonus2 bVariableCastrate,"PR_MAGNUS",-100; bonus2 bFixedCastrate,"PR_MAGNUS",-100; if (BaseLevel>=130) bonus2 bSkillAtk,"PR_MAGNUS",120; - Id: 15978 AegisName: aegis_15978 Name: "[Not For Sale] Shrine Maiden Ribbon" Type: Armor Weight: 300 Defense: 10 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 View: 908 Script: | bonus2 bVariableCastrate,"PR_MAGNUS",-100; bonus2 bFixedCastrate,"PR_MAGNUS",-100; if (BaseLevel>=130) bonus2 bSkillAtk,"PR_MAGNUS",120; - Id: 15980 AegisName: aegis_15980 Name: Wonder Egg Basket Type: Armor Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2055 Script: | bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; switch( getpetinfo(PETINFO_EGGID) ) { case 9121: // Ork_Hero_EGG (Todo in Pet_db.yml) bonus2 bAddClass,Class_Boss,10; break; case 9115: // Bacsojin_Egg2 (Todo in Pet_db.yml) skill "AB_RENOVATIO",4; break; case 9113: // Roost_Of_Skelion (Todo in Pet_db.yml) bonus2 bAddItemHealRate,579,333; break; case 9088: // Angeling_Egg bonus2 bExpAddRace,RC_All,10; bonus bBaseAtk,(readparam(Luk)/3); bonus bMatk,(readparam(Luk)/3); break; case 9087: // High_Orc_Egg bonus2 bAddRace,RC_Demon,10; break; case 9055: // Succubus_Egg bonus2 bSPDrainRate,10,1; break; case 9052: // Incubus_Egg bonus2 bHPDrainRate,20,5; break; case 9119: // Alicel_EGG bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Neutral,5; break; } - Id: 15981 AegisName: aegis_15981 Name: All Above Time (Magic) Type: Armor Weight: 600 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1309 Script: | bonus bDelayrate,-10; bonus2 bMagicAddEle,Ele_All,10; - Id: 15982 AegisName: aegis_15982 Name: All Above Time (Range) Type: Armor Weight: 600 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1309 Script: | bonus bDelayrate,-10; bonus bLongAtkRate,10; - Id: 15983 AegisName: aegis_15983 Name: All Above Time (Melee) Type: Armor Weight: 600 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1309 Script: | bonus bDelayrate,-10; bonus bShortAtkRate,10; - Id: 15984 AegisName: aegis_15984 Name: "[Not For Sale] Heavenly Order" Type: Armor View: 1093 Slots: 1 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = readparam(bStr)/18; .@b = readparam(bAgi)/18; .@c = readparam(bVit)/18; .@d = readparam(bInt)/18; .@e = readparam(bDex)/18; .@f = readparam(bLuk)/18; skill "MC_IDENTIFY",1; bonus bHit,2*.@a; bonus bMaxHPrate,2*.@a; bonus bFlee,2*.@b; bonus bAspdRate,.@b; bonus bMdef,2*.@c; bonus bVariableCastrate,-.@c; bonus bMaxSPrate,2*.@d; bonus bUseSPrate,-2*.@d; bonus bCritical,2*.@e; bonus bPerfectHitAddRate,2*.@e; bonus bDef,20*.@f; bonus bBaseAtk,10*.@f; bonus bMatk,10*.@f; - Id: 15985 AegisName: aegis_15985 Name: "[Not For Sale] Little Garden" Type: Armor View: 1830 Weight: 100 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bBaseAtk,40; bonus bCritAtkRate,5; if (readparam(bLuk)>=90) { bonus bBaseAtk,60; bonus bCritAtkRate,10; } if (readparam(bLuk)>=125) { bonus bBaseAtk,80; bonus bCritAtkRate,20; } - 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: All_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: All_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; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - Id: 16003 AegisName: Carga_Mace Name: Carga Mace Type: Weapon SubType: Mace Buy: 20 Weight: 1500 Attack: 175 Range: 1 Slots: 2 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true - Id: 16004 AegisName: P_Mace1 Name: Eden Mace I Type: Weapon SubType: Mace Attack: 142 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: 2 EquipLevelMin: 26 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 16005 AegisName: P_Mace2 Name: Eden Mace II Type: Weapon SubType: Mace Attack: 163 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: 2 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 16006 AegisName: Tourist_Mace Name: Tourist Mace Type: Weapon SubType: Mace Weight: 500 Attack: 45 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: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; bonus bAgi,1; - Id: 16007 AegisName: Mjolnir_C Name: Mjolnir Type: Weapon SubType: Mace Buy: 20 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 bStr,15; bonus bDex,40; - Id: 16008 AegisName: F_Spanner_C Name: Spanner 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_Stun,100; bonus2 bAddEff,Eff_Blind,100; bonus2 bAddEff,Eff_Freeze,100; bonus2 bAddEff,Eff_Poison,100; - Id: 16009 AegisName: E_Spanner_C Name: Spanner Type: Weapon SubType: Mace Buy: 2 Attack: 150 Range: 1 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 - Id: 16010 AegisName: Red_Ether_Bag Name: Red Ether Bag Type: Weapon SubType: Mace Buy: 20 Weight: 1000 Attack: 15 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 102 Refineable: true Script: | .@r = getrefine(); if (.@r>=6) { bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",20+((.@r-5)*2); bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20+((.@r-5)*2); } else { bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",20; bonus2 bSkillAtk,"GN_DEMONIC_FIRE",20; } - Id: 16011 AegisName: Adventure_Mace Name: Adventure Mace Type: Weapon SubType: Mace Attack: 60 Range: 1 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 - Id: 16012 AegisName: Academy_Mace Name: Academy Mace Type: Weapon SubType: Mace Weight: 1000 Attack: 110 Range: 1 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Refineable: true - Id: 16013 AegisName: Mace_Of_Judgement Name: Mace Of Judgement Type: Weapon SubType: Mace Buy: 20 Weight: 1200 Attack: 140 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus bStr,1; bonus bInt,1; autobonus "{ bonus2 bMagicAddRace,RC_Demon,20; }",30,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; autobonus "{ bonus2 bAddRace,RC_Demon,20; }",5,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; - Id: 16014 AegisName: P_Mace3 Name: Eden Mace III Type: Weapon SubType: Mace Attack: 172 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: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 16015 AegisName: Cat_Club Name: Cat Club Type: Weapon SubType: Mace Buy: 20 Weight: 700 Attack: 88 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: 1 Refineable: true Script: | bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; - Id: 16016 AegisName: Tuna Name: Tuna Type: Weapon SubType: Mace Attack: 180 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 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,1500; bonus3 bAutoSpell,"SM_BASH",max(getskilllv("SM_BASH"),5),20; bonus2 bAddEff2,Eff_Freezing,100; if (BaseLevel>99) bonus bBaseAtk,20; - Id: 16017 AegisName: Bloody_Cross Name: Bloody Cross Type: Weapon SubType: Mace Buy: 20 Weight: 1500 Attack: 170 Range: 1 Jobs: Acolyte: true Monk: true Priest: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Dark; .@r = getrefine(); bonus3 bAutoSpell,"WL_HELLINFERNO",1,(.@r?.@r*20:20); - Id: 16018 AegisName: Mace_Of_Judgement2 Name: Empowered Mace Of Judgement Type: Weapon SubType: Mace Buy: 20 Weight: 1200 Attack: 170 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus bStr,2; bonus bInt,2; autobonus "{ bonus2 bMagicAddRace,RC_Demon,40; }",60,7000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; autobonus "{ bonus2 bAddRace,RC_Demon,40; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; - Id: 16019 AegisName: Upg_Mace Name: Upg Mace Type: Weapon SubType: Mace Buy: 20 Weight: 800 Attack: 80 Range: 1 Slots: 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: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*10); bonus bHealPower,.@r; if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*5); - Id: 16020 AegisName: Velum_Stunner Name: Vellum Stunner Type: Weapon SubType: Mace Buy: 20 Weight: 1500 Attack: 170 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: 95 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bAddEff,Eff_Stun,300*.@r; bonus4 bSetDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Human,10000,5000,1; bonus4 bSetDefRace,RC_Player_Doram,10000,5000,1; bonus4 bSetMDefRace,RC_Player_Doram,10000,5000,1; bonus bAspdRate,2+.@r; - Id: 16021 AegisName: Velum_Flail Name: Vellum Flail Type: Weapon SubType: Mace Buy: 20 Weight: 1500 Attack: 170 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: 95 Refineable: true Script: | bonus bUnbreakableWeapon; bonus3 bStateNoRecoverRace,RC_Player_Human,10000,10000; bonus3 bStateNoRecoverRace,RC_Player_Doram,10000,10000; .@r = getrefine(); bonus bHit,.@r/2; bonus bCritical,.@r; - Id: 16022 AegisName: Nemesis_ Name: Nemesis Type: Weapon SubType: Mace Buy: 20 Weight: 900 Attack: 120 Range: 1 Slots: 2 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 60 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; .@r = max(1,min(10,getrefine())); bonus4 bAutoSpell,"AL_CRUCIS",.@r,10,1; bonus2 bAddRace,RC_Demon,10; bonus2 bAddEle,Ele_Dark,10; autobonus "{ bonus bBaseAtk,50; }",10,20000,BF_NORMAL,"{ specialeffect2 EF_BLOODDRAIN; }"; - Id: 16023 AegisName: Metal_Mace Name: Metal Mace Type: Weapon SubType: Mace Buy: 20 Attack: 80 Range: 1 Slots: 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: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus bBaseAtk,(getrefine()*5); .@i = min(BaseLevel/10,12); if (.@i>2) bonus bBaseAtk,((.@i-2)*5); - Id: 16024 AegisName: Quadrille_ Name: Quadrille Type: Weapon SubType: Mace Buy: 10 Weight: 900 Attack: 165 Slots: 2 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 40 Refineable: true Script: | bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddEle,Ele_Undead,10; bonus2 bAddEle,Ele_Earth,10; - Id: 16025 AegisName: TE_Woe_Mace Name: TE Woe Mace Type: Weapon SubType: Mace Attack: 120 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: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Freeze,1000; bonus bHealPower,5; - Id: 16026 AegisName: RWC_Memory_Mace Name: RWC Memory Mace Type: Weapon SubType: Mace Buy: 20 Weight: 800 Attack: 100 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: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/3)*30; if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus3 bAutoSpell,"BS_WEAPONPERFECT",1,10; } if (.@r>=6) { bonus2 bAddRace,RC_All,5; } - Id: 16027 AegisName: Hammer_Of_Evil_Slayer Name: Evil Slayer Destroyer Hammer Type: Weapon SubType: Mace Buy: 10 Weight: 1350 Attack: 125 Range: 1 Slots: 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: 100 Refineable: true Script: | bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus bAtkRate,(.@r>=12?12:(.@r>=9?5:0)); - Id: 16028 AegisName: Thanos_Hammer Name: Thanos Hammer Type: Weapon SubType: Mace Buy: 10 Weight: 3000 Attack: 180 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 16029 AegisName: Noble_Cross Name: Noble Cross Type: Weapon SubType: Mace Buy: 10 Weight: 1500 Attack: 195 MagicAttack: 150 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 40 Refineable: true Script: | bonus bAtkEle,Ele_Holy; bonus3 bAutoSpell,"PR_TURNUNDEAD",6,200; bonus2 bSPDrainValueRace,RC_Undead,1; bonus2 bSPGainRace,RC_Undead,12; - 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 Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: 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 Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bUseSPrate,getrefine()*-1; - Id: 16033 AegisName: Robot's_Arm Name: Robot's Arm Type: Weapon SubType: Mace Buy: 30000 Weight: 3000 Attack: 195 Range: 1 Slots: 2 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bCritical,20; - Id: 16034 AegisName: Half_Mjolnir Name: Half Mjolnir Type: Weapon SubType: Mace Buy: 20 Weight: 6000 Attack: 350 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,50; bonus bStr,20; bonus bAspdRate,10; bonus3 bAutoSpell,"MG_THUNDERSTORM",10,100; autobonus "{ bonus bSplashRange,1; }",50,10000; - Id: 16035 AegisName: Half_BF_Morning_Star1 Name: Half BF Morning Star1 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 Script: | bonus bStr,1; bonus bDex,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; - Id: 16036 AegisName: Ru_Blue_Mace Name: Blue Mace Type: Weapon SubType: Mace Buy: 10 Weight: 1500 Attack: 170 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bVit,5; bonus bInt,5; - Id: 16037 AegisName: Ru_Gold_Mace Name: Ru Gold Mace Type: Weapon SubType: Mace Weight: 1500 Attack: 170 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bVit,8; bonus bInt,8; - Id: 16038 AegisName: Mace_Of_Infinite Name: Infinity Mace Type: Weapon SubType: Mace Buy: 20 Weight: 500 Attack: 155 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 16039 AegisName: Spoon Name: Spoon Type: Weapon SubType: Mace Buy: 10 Weight: 1000 Attack: 80 Range: 1 Slots: 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: 40 Refineable: true Script: | bonus bAspd,10; bonus2 bAddEff,Eff_Curse,1000; - Id: 16040 AegisName: Scarlet_Mace Name: Crimson Mace Type: Weapon SubType: Mace Buy: 20 Weight: 800 Attack: 80 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: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 16041 AegisName: Sinister_Mace Name: Mace of Vicious Mind Type: Weapon SubType: Mace Buy: 20 Weight: 1300 Attack: 130 Range: 1 Slots: 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: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; - Id: 16043 AegisName: Meteor_Strike Name: Meteor Strike Type: Weapon SubType: Mace Weight: 20000 Attack: 1 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus bBaseAtk,10*getskilllv("BS_WEAPONRESEARCH"); bonus bBaseAtk,30*getskilllv("MO_IRONHAND"); .@s = getskilllv("AM_AXEMASTERY"); bonus bBaseAtk,7*.@s; bonus bHit,5*.@s; bonus bBaseAtk,10*getrefine(); if (getskilllv("MC_PUSHCART") > 9) skill "MC_CARTREVOLUTION",1; if (getskilllv("SM_SWORD") > 0) skill "KN_BOWLINGBASH",1; .@str = readparam(bStr); if (.@str > 119) bonus bUseSPrate,-30; else if (.@str > 107) bonus bUseSPrate,-20; - Id: 16048 AegisName: Union_Mace Name: Unity Mace Type: Weapon SubType: Mace Buy: 20 Weight: 400 Attack: 76 Range: 1 Slots: 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: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 16049 AegisName: Mace_of_Trust Name: Thunder Hammer Type: Weapon SubType: Mace Weight: 2000 Attack: 130 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: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; bonus bUnbreakableWeapon; if (.@r>=7) { .@val = 10; if (.@r>=9) .@val += 15; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddRace,RC_Fish,.@val; } - Id: 16050 AegisName: Mace_of_Trust2 Name: "[Rental] Hunting Hammer" Type: Weapon SubType: Mace 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 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Fire; if (.@r>=7) { bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Water,10; if (.@r>=9) { bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddEle,Ele_Earth,15; bonus2 bAddEle,Ele_Water,15; } } - Id: 16051 AegisName: Valkyrie_Hammer Name: Valkyrie Hammer Type: Weapon SubType: Mace Weight: 100 Attack: 50 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: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMatk,50; if (BaseJob == Job_Novice) { bonus bBaseAtk,150; bonus bMatk,200; bonus bUseSPrate,-5; bonus bHit,10; bonus bMaxHP,500+(200*.@r); bonus bMaxSP,400; bonus bVit,.@r; bonus bFlee2,.@r; bonus bAspdRate,.@r; bonus bVariableCastrate,-.@r/2; } if (BaseClass == Job_Swordman) { bonus bVit,.@r; bonus bMaxHP,500; bonus bMaxSP,100; } if (BaseJob == Job_Priest) { bonus bBaseAtk,50; bonus bMatk,100; bonus bAspdRate,.@r; } if (BaseJob == Job_Monk) { bonus bMaxSP,200; bonus bUseSPrate,-5; bonus bFlee2,.@r; } if (BaseClass == Job_Merchant) { bonus bBaseAtk,100; bonus bHit,10; bonus bVariableCastrate,-.@r/2; } - Id: 16052 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: 16053 AegisName: Lora_Iron_Ball Name: Lora's Iron Flail Type: Weapon SubType: Mace Weight: 1500 Attack: 170 MagicAttack: 110 Range: 1 Slots: 3 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAtkEle,Ele_Fire; - Id: 16054 AegisName: Toughen_Metal_Mace Name: Enhanced Metal Mace Type: Weapon SubType: Mace Buy: 20 Attack: 105 Range: 1 Slots: 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: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"SR_SKYNETBLOW",10; bonus bBaseAtk,7*(getrefine()+(min(BaseLevel,150)/10)); - Id: 16055 AegisName: UnrivaledMace Name: Unrivaled Mace Type: Weapon SubType: Mace Buy: 20 Weight: 2000 Attack: 130 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: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Earth; if (.@r >= 7) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if (.@r >= 9) { bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } - Id: 16056 AegisName: Veteran_Hammer_ Name: Veteran Hammer Type: Weapon SubType: Mace Weight: 1800 Attack: 160 Range: 1 Slots: 3 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 80 Refineable: true Script: | bonus bHealPower,getskilllv("AL_DP"); bonus bCriticalRate,getskilllv("PR_MACEMASTERY")*2; bonus bInt,1; bonus bLuk,1; - Id: 16057 AegisName: Blue_Mace Name: Blue Mace Type: Weapon SubType: Mace Buy: 20 Weight: 2000 Attack: 130 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: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Water; if (.@r>=7) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Formless,10; bonus2 bAddEle,Ele_Fire,10; } if (.@r>=9) { bonus2 bAddRace,RC_Demon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bAddEle,Ele_Fire,15; } - Id: 16058 AegisName: Diva_Mace Name: Diva Mace Type: Weapon SubType: Mace Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 16059 AegisName: Mirage_Mace Name: Mirage Mace Type: Weapon SubType: Mace Weight: 1500 Attack: 150 MagicAttack: 110 Range: 5 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 16060 AegisName: Bottle Name: Liquor Bottle Type: Weapon SubType: Mace Weight: 700 Attack: 120 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: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bAddEff,Eff_Stun,(300*getrefine()); - Id: 16061 AegisName: Sinister_Mace_J Name: Mace of Evil Type: Weapon SubType: Mace Buy: 100000 Weight: 500 Attack: 105 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 16063 AegisName: Long_Mace_IL Name: Illusion Long Mace Type: Weapon SubType: Mace Buy: 20 Weight: 800 Attack: 185 Range: 3 Slots: 2 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Script: | bonus bLongAtkDef,(10+3*(getrefine()/2)); - Id: 16064 AegisName: Probation_Mace Name: Trial Genetic's Mace Type: Weapon SubType: Mace Buy: 20 Attack: 140 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bSkillAtk,"GN_CARTCANNON",20; .@val = 6*(min(BaseLevel,160)/10); if (getrefine()>=7) { .@val += 3*getskilllv("AM_PHARMACY"); } bonus bBaseAtk,.@val; - Id: 16065 AegisName: Iron_Driver_IL Name: Illusion Iron Driver Type: Weapon SubType: Mace Weight: 2000 Attack: 210 Range: 2 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAspd,(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",(3*.@r); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",(3*.@r); bonus bUnbreakableWeapon; - Id: 16075 AegisName: Rebeginer_NC_Mace Name: Beginner Mechanic's Mace Type: Weapon SubType: Mace Attack: 170 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus bAspdRate,10; if (getrefine()>=7) { bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } - Id: 16076 AegisName: Rebeginer_N2_Mace Name: Beginner Super Novice's Mace Type: Weapon SubType: Mace Attack: 150 Range: 1 Slots: 1 Jobs: SuperNovice: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus bAspdRate,10; if (getrefine()>=7) { bonus bCritAtkRate,7; } - Id: 16085 AegisName: Woe_Club_1_Z Name: Lesser Guild Member's Morning Star Type: Weapon SubType: Mace Weight: 900 Attack: 110 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: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus2 bAddEff,Eff_Stun,200*getskilllv("PR_MACEMASTERY"); bonus bAspdRate,10; } - Id: 16087 AegisName: Variant_Mace Name: Abyss Mace Type: Weapon SubType: Mace Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 16088 AegisName: Saphir_Hall_OS Name: Sapphire Hall-OS Type: Weapon SubType: Mace Buy: 20 Weight: 800 Attack: 185 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,3; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r >= 11) { bonus bLongAtkRate,15; } } } - Id: 16089 AegisName: Ultio_Spes_OS Name: Ultio-OS Type: Weapon SubType: Mace Buy: 20 Weight: 1200 Attack: 150 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,3; bonus bUnbreakableWeapon; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r >= 11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } - Id: 16092 AegisName: Engine_Pilebuncker Name: Engine Pilebuncker Type: Weapon SubType: Mace Weight: 3200 Attack: 450 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspdRate,.@r; bonus2 bSkillAtk,"NC_VULCANARM",10; if (.@r>=9) { bonus2 bSkillAtk,"NC_ARMSCANNON",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=11) bonus2 bSkillAtk,"NC_VULCANARM",15; - Id: 16093 AegisName: Coolant_Injection Name: Coolant Injection Type: Weapon SubType: Mace Weight: 1400 Attack: 210 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus bAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) bonus bLongAtkRate,15; - Id: 16094 AegisName: Gene_Rod Name: Gene Rod Type: Weapon SubType: Mace Weight: 1400 Attack: 195 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",20; if (.@r>=9) bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",30; if (.@r>=11) bonus2 bSkillCooldown,"GN_CRAZYWEED",-2000; - Id: 16095 AegisName: Lucis_Flail Name: Lucis Flail Type: Weapon SubType: Mace Weight: 1000 Attack: 180 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAspd,1; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",40; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",40; } if (.@r>=11) bonus3 bAutoSpell,"AB_JUDEX",max(2,getskilllv("AB_JUDEX")),50; /* Unknow Rates */ - Id: 16096 AegisName: Bright_Mace Name: Bright Pendulum Type: Weapon SubType: Mace Weight: 1300 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",50; bonus2 bSkillAtk,"MO_INVESTIGATE",50; } if (.@r>=11) bonus bAtkRate,10; - Id: 16098 AegisName: Leo_Mace_J Name: Leo Mace Type: Weapon SubType: Mace Buy: 20 Weight: 400 Attack: 10 Range: 1 Slots: 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 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,50+BaseLevel; bonus bVariableCastrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Monk) { bonus bAspdRate,10; bonus bVariableCastrate,-5; bonus bAtkRate,50; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - Id: 16099 AegisName: Ein_1HHAMMER Name: Rubber Hammer Type: Weapon SubType: Mace Weight: 1900 Attack: 160 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,180; bonus bUnbreakableWeapon; bonus bMatkRate,7; bonus bHealPower,15; bonus2 bSkillAtk,"AB_ADORAMUS",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,7; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillAtk,"AB_ADORAMUS",15; autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,5000,BF_MAGIC; } if (.@r>=11) { bonus bDelayrate,-20; } - 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 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,20; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bBaseAtk,10; bonus bMatk,10; } - 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 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: 18103 AegisName: Mystic_Bow Name: Mystic Bow Type: Weapon SubType: Bow Weight: 1700 Attack: 75 MagicAttack: 100 Range: 5 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 105 Refineable: true Script: | bonus bInt,4; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",10; - Id: 18104 AegisName: Adventure_Bow Name: Adventure Bow Type: Weapon SubType: Bow Attack: 60 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHP,100; bonus2 bAddMonsterDropItem,11518,100; /* CONFIRM The Rate*/ - Id: 18105 AegisName: Academy_Bow Name: Academy Bow Type: Weapon SubType: Bow Weight: 1200 Attack: 90 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus bHit,20-(4*(BaseLevel/10)); - Id: 18106 AegisName: P_Bow3 Name: Eden Bow III Type: Weapon SubType: Bow Attack: 140 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 18107 AegisName: Malang_Snow_Crab Name: Malangdo Crab Type: Weapon SubType: Bow Attack: 120 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLuk,3; bonus bCritAtkRate,50; if (BaseLevel>99) bonus bLongAtkRate,20; - Id: 18108 AegisName: Brindle_Eel Name: Zebra Eel Type: Weapon SubType: Bow Attack: 180 Range: 5 Jobs: BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,3; autobonus "{ bonus bAspd,2; }",5,5000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; if (BaseLevel>99) bonus bLongAtkRate,20; - Id: 18109 AegisName: Catapult Name: Thief Crossbow Type: Weapon SubType: Bow Buy: 56000 Weight: 1100 Attack: 150 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",(.@r*2); bonus2 bSkillUseSP,"SC_TRIANGLESHOT",-(.@r*2); - Id: 18110 AegisName: Big_CrossBow Name: Giant Crossbow Type: Weapon SubType: Bow Buy: 56000 Weight: 900 Attack: 160 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r*5); bonus2 bSkillUseSP,"RA_ARROWSTORM",-(.@r*5); if (readparam(bAgi)>=120) { bonus bAspd,1; } - Id: 18111 AegisName: Creeper_Bow Name: Creeper Bow Type: Weapon SubType: Bow Buy: 56000 Weight: 1500 Attack: 150 Range: 5 Slots: 2 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bDex,1; bonus3 bAutoSpell,"PF_SPIDERWEB",1,200; - Id: 18112 AegisName: Upg_Bow Name: Upg Bow Type: Weapon SubType: Bow Buy: 20 Weight: 600 Attack: 60 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*7); bonus bLongAtkRate,(.@r*2); if (BaseJob == Job_Hunter) bonus bBaseAtk,20; if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); - Id: 18113 AegisName: Velum_Arbalest Name: Vellum Arbalest Type: Weapon SubType: Bow Buy: 20 Weight: 1100 Attack: 50 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus3 bSPVanishRaceRate,RC_Player_Human,1000,4; bonus bAspd,-5; - Id: 18114 AegisName: Velum_CrossBow Name: Vellum CrossBow Type: Weapon SubType: Bow Buy: 20 Weight: 1100 Attack: 110 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,30+.@r; bonus2 bAddRace,RC_Player_Doram,30+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,30; - Id: 18115 AegisName: Orc_Archer_Bow_ Name: Orc Archer Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1600 Attack: 120 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 65 Refineable: true Script: | bonus2 bAddMonsterDropItem,1753,200; - Id: 18116 AegisName: Metal_Bow Name: Metal Bow Type: Weapon SubType: Bow Buy: 20 Attack: 50 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseJob == Job_Hunter && Upper!=2) bonus bBaseAtk,10; bonus bBaseAtk,(.@r*3); bonus bLongAtkRate,.@r; .@i = min(BaseLevel/10,12); if (.@i>2) bonus bBaseAtk,((.@i-2)*5); - Id: 18117 AegisName: Royal_Bow Name: Royal Bow Type: Weapon SubType: Bow Buy: 200000 Weight: 1500 Attack: 80 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 105 Refineable: true - Id: 18118 AegisName: TE_Woe_Bow Name: TE Woe Bow Type: Weapon SubType: Bow Attack: 120 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Curse,1000; - Id: 18119 AegisName: Thanos_Bow Name: Thanos Bow Type: Weapon SubType: Bow Buy: 10 Weight: 1300 Attack: 180 MagicAttack: 110 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 18120 AegisName: Bow_Of_Evil_Slayer Name: Evil Slayer Piercer Bow Type: Weapon SubType: Bow Buy: 10 Weight: 1350 Attack: 115 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); bonus bAtkRate,(.@r>=12?12:(.@r>=9?5:0)); - Id: 18121 AegisName: Sinister_Bow Name: Bow of Vicious Mind Type: Weapon SubType: Bow Buy: 20 Weight: 1700 Attack: 170 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 18122 AegisName: Gigantic_Bow Name: Giant Bow Type: Weapon SubType: Bow Buy: 20 Weight: 3000 Attack: 195 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bLongAtkRate,40; bonus bAspdRate,-15; bonus bHit,-50; - Id: 18123 AegisName: Bow_Of_Storm Name: Bow of Storms Type: Weapon SubType: Bow Buy: 20 Weight: 1500 Attack: 160 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bLongAtkRate,30; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",-15; - Id: 18124 AegisName: Half_BF_Bow1 Name: Half BF Bow1 Type: Weapon SubType: Bow Buy: 20 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 Script: | bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; - Id: 18125 AegisName: Arcus_Daemonicus Name: Arcus Daemonicus Type: Weapon SubType: Bow Buy: 20 Weight: 1000 Attack: 130 Range: 5 Slots: 2 Jobs: Archer: true Rogue: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 80 Refineable: true Script: | /*Fix me: bonus2 bAddClass,Class_All,50; when equipped with shadow arrows*/ if (getrefine()>9) { bonus bAspd,1; bonus bUseSPrate,-20; } - Id: 18126 AegisName: Ru_Blue_Bow Name: Blue Bow Type: Weapon SubType: Bow Buy: 10 Weight: 1200 Attack: 150 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,5; bonus bDex,5; - Id: 18127 AegisName: Ru_Gold_Bow Name: Ru Gold Bow Type: Weapon SubType: Bow Weight: 1200 Attack: 150 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bAgi,8; bonus bDex,8; - Id: 18128 AegisName: Bow_Of_Infinite Name: Infinity Bow Type: Weapon SubType: Bow Buy: 20 Weight: 500 Attack: 160 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 18129 AegisName: Ixion_Wing_S Name: Ixion Wing Type: Weapon SubType: Bow Weight: 300 Attack: 135 Range: 5 Slots: 3 Jobs: Hunter: true Classes: All_Upper: true All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true View: 11 Script: | autobonus "{ bonus bAspdRate,7; }",5+getrefine(),7000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }"; bonus2 bAddSkillBlow,"AC_CHARGEARROW",3; - Id: 18130 AegisName: Scarlet_Bow Name: Crimson Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1200 Attack: 120 Range: 5 Slots: 2 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 18132 AegisName: Union_Bow Name: Unity Bow Type: Weapon SubType: Bow Buy: 20 Weight: 600 Attack: 114 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 18133 AegisName: Bow_of_Trust Name: Thunder Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 120 Range: 5 Slots: 2 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; if (.@r>=7) { .@val = 10; if (.@r>=9) .@val += 15; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddRace,RC_Fish,.@val; } - Id: 18137 AegisName: Burning_Bow_ Name: Burning Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1400 Attack: 95 Range: 5 Slots: 2 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: 18138 AegisName: Frozen_Bow_ Name: Frozen Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1400 Attack: 100 Range: 5 Slots: 2 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: 18139 AegisName: Earth_Bow_ Name: Earth Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1400 Attack: 105 Range: 5 Slots: 2 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 55 Refineable: true - Id: 18140 AegisName: Gust_Bow_ Name: Gust Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1400 Attack: 95 Range: 5 Slots: 2 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 55 Refineable: true - Id: 18141 AegisName: Toughen_Metal_Bow Name: Enhanced Metal Bow Type: Weapon SubType: Bow Buy: 20 Attack: 75 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; bonus2 bSkillAtk,"RA_ARROWSTORM",10; bonus bLongAtkRate,2*.@r; .@val = (5*.@r)+6*(min(BaseLevel,150)/10); if (BaseJob == Job_Hunter) { .@val += 15; } bonus bBaseAtk,.@val; - Id: 18142 AegisName: UnrivaledBow Name: Unrivaled Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1500 Attack: 120 Range: 5 Slots: 2 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Earth; if (.@r >= 7) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if (.@r >= 9) { bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } /*Todo When Equipped Adds Earth Attribute to Bullets for 180 Minutes*/ - Id: 18143 AegisName: Avenger_Hunter_Bow Name: Avenger Hunter Bow Type: Weapon SubType: Bow Buy: 20 Attack: 170 Range: 5 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bCritAtkRate,2*.@r; if (.@r>=5) { bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (.@r>=7) { bonus2 bAddRace,RC_DemiHuman,20+(pow(min(10,.@r)-4,2)); bonus2 bAddRace,RC_Player_Human,20+(pow(min(10,.@r)-4,2)); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (.@r>=9) { bonus2 bSkillAtk,"RA_ARROWSTORM",20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM",20; } } } - Id: 18144 AegisName: Blue_Bow Name: Blue Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1500 Attack: 120 Range: 5 Slots: 2 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Formless,10; bonus2 bAddEle,Ele_Fire,10; } if (.@r>=9) { bonus2 bAddRace,RC_Demon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bAddEle,Ele_Fire,15; } /*Todo: When Equipped Adds Water Attribute to Arrows for 180 minutes*/ - Id: 18145 AegisName: Vigilante_Bow Name: Vigilante Bow Type: Weapon SubType: Bow Weight: 1000 Attack: 140 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@bonus = 5*(readparam(bDex)/20); if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { bonus2 bSkillAtk,"AC_DOUBLE",50; } bonus2 bWeaponDamageRate,W_BOW,.@bonus; - Id: 18146 AegisName: Diva_Wing Name: Diva Wing Type: Weapon SubType: Bow Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 18147 AegisName: Mirage_Wing Name: Mirage Wing Type: Weapon SubType: Bow Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,2*getskilllv("AC_VULTURE"); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 18148 AegisName: Sinister_Bow_J Name: Bow of Evil Type: Weapon SubType: Bow Buy: 100000 Weight: 400 Attack: 100 Range: 5 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 18149 AegisName: Balistar_IL Name: Illusion Ballista Type: Weapon SubType: Bow Weight: 3500 Attack: 200 Range: 5 Slots: 2 Jobs: Archer: true BardDancer: true Hunter: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bLongAtkRate,getrefine(); - Id: 18150 AegisName: Probation_CrossBow Name: Trail Ranger' Crossbow Type: Weapon SubType: Bow Buy: 20 Attack: 180 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"RA_ARROWSTORM",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bLongAtkRate,getskilllv("HT_BEASTBANE"); } - Id: 18151 AegisName: Probation_Bow Name: Trail Wanderers & Minstrel's Bow Type: Weapon SubType: Bow Buy: 20 Attack: 160 Range: 5 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) bonus bLongAtkRate,getskilllv("BA_MUSICALLESSON")+getskilllv("DC_DANCINGLESSON"); - Id: 18153 AegisName: Neev_Bow_Of_Rogue Name: Neev Bow Of Rogue Type: Weapon SubType: Bow Buy: 100000 Weight: 900 Attack: 170 MagicAttack: 180 Range: 5 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 18154 AegisName: Neev_Hunter_Bow Name: Neev Hunter Bow Type: Weapon SubType: Bow Buy: 100000 Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 18155 AegisName: Neev_CrossBow Name: Neev CrossBow Type: Weapon SubType: Bow Buy: 100000 Weight: 900 Attack: 180 MagicAttack: 170 Range: 5 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 18163 AegisName: Vigilante_Bow_J Name: Vigilante Bow Type: Weapon SubType: Bow Weight: 1000 Attack: 140 MagicAttack: 170 Range: 5 Slots: 3 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@a = readparam(bInt); bonus bShortWeaponDamageReturn,5; bonus bAgi,.@a/10; bonus bAspdRate,.@a/10; if (.@r>=9) bonus bFlee,50; - Id: 18164 AegisName: Royal_Bow_K Name: Royal Bow Type: Weapon SubType: Bow Weight: 1000 Attack: 180 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RA_ARROWSTORM",.@r/3*12; if (.@r>=9) bonus bAspdRate,10; if (.@r>=11) bonus bLongAtkRate,5; - Id: 18165 AegisName: Rebeginer_RN_Bow Name: Beginner Ranger's Bow Type: Weapon SubType: Bow Attack: 170 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | bonus bLongAtkRate,5; if (getrefine()>=7) { bonus2 bSkillAtk,"RA_ARROWSTORM",15; } - Id: 18166 AegisName: Rebeginer_WM_Bow Name: Beginner Wanderer & Minstrels' Bow Type: Weapon SubType: Bow Attack: 170 Range: 5 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | bonus bLongAtkRate,5; if (getrefine()>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } - Id: 18170 AegisName: Narcis_Bow Name: Narcissus Bow Type: Weapon SubType: Bow Weight: 1000 Attack: 180 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bLongAtkRate,.@r/3*4; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; - Id: 18174 AegisName: Hunter_Bow_IL Name: Illusion Hunter Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 165 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bCritical,.@r; if (.@r >= 7) { bonus bAspdRate,10; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddRace,RC_Insect,30; bonus2 bAddRace,RC_Brute,30; } } } - Id: 18175 AegisName: Woe_Bow1_Z Name: Lesser Guild Member's Hunter Bow Type: Weapon SubType: Bow Weight: 500 Attack: 90 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,20+(.@r-10); autobonus3 "{ .@r = getrefine(); bonus2 bSkillAtk,\"AC_DOUBLE\",20+(.@r-10); }",1000,10000,"AC_CONCENTRATION"; } - Id: 18177 AegisName: Variant_Wing Name: Abyss Wing Type: Weapon SubType: Bow Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 18178 AegisName: Virtual_Bow_OS Name: Virtual Bow-OS Type: Weapon SubType: Bow Buy: 20 Weight: 1200 Attack: 200 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { .@dmg = 30; if (.@r >= 11) { .@dmg += 20; } bonus2 bSkillAtk,"RA_ARROWSTORM",.@dmg; } } - Id: 18179 AegisName: MH_P89_OS Name: MH-P89-OS Type: Weapon SubType: Bow Buy: 20 Weight: 1200 Attack: 170 Range: 5 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r >= 11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } } } - Id: 18180 AegisName: AC_B44_OS Name: AC-B44-OS Type: Weapon SubType: Bow Buy: 20 Weight: 600 Attack: 190 MagicAttack: 135 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@dmg = 5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; if (.@r >= 11) { .@dmg += 10; } } } bonus2 bWeaponDamageRate,W_BOW,.@dmg; - Id: 18182 AegisName: Evt_Royal_Bow_K Name: Sealed Royal Bow Type: Weapon SubType: Bow Attack: 180 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bLongAtkRate,5; } - Id: 18183 AegisName: Evt_Narcis_Bow Name: Sealed Narcissus Bow Type: Weapon SubType: Bow Attack: 180 Range: 5 Slots: 2 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; } if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } - Id: 18184 AegisName: Rapid_Fire_C_Bow Name: Rapid Fire Type: Weapon SubType: Bow Buy: 20 Weight: 1500 Attack: 185 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 35; else if (.@r>=9) .@val = 20; bonus2 bSkillAtk,"SC_TRIANGLESHOT",.@val; - Id: 18185 AegisName: Sharp_Star_Bow Name: Sharp Star Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1500 Attack: 150 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bCritical,5; bonus bCritAtkRate,.@r; if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; - Id: 18186 AegisName: Aiming_Bow Name: Aiming Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1000 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-1*(5+.@r); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } - Id: 18187 AegisName: Falken_Shooter Name: Falken Shooter Type: Weapon SubType: Bow Buy: 20 Weight: 1000 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=11) bonus2 bSkillCooldown,"RA_ARROWSTORM",-700; - Id: 18188 AegisName: Wind_Gale Name: Wind Gale Type: Weapon SubType: Bow Buy: 20 Weight: 1000 Attack: 200 Range: 5 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10+.@r; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; - Id: 18190 AegisName: Ein_BHBOW Name: Bolt Shooter Type: Weapon SubType: Bow Weight: 1700 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,60; } if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 18191 AegisName: G_Knight_Bow Name: Royal Knight Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 180 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 18193 AegisName: Rapid_Fire_C_Bow_J Name: Rapid Fire Type: Weapon SubType: Bow Buy: 200000 Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"SC_TRIANGLESHOT",30; - Id: 18194 AegisName: Sharp_Star_Bow_J Name: Sharp Star Type: Weapon SubType: Bow Buy: 200000 Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"SN_SHARPSHOOTING",30; - Id: 18195 AegisName: Aiming_Bow_J Name: Aiming Bow Type: Weapon SubType: Bow Buy: 200000 Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"RA_AIMEDBOLT",30; - Id: 18196 AegisName: Falken_Shooter_J Name: Falken Shooter Type: Weapon SubType: Bow Buy: 200000 Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"HT_BLITZBEAT",30; - Id: 18197 AegisName: Wind_Gale_J Name: Wind Gale Type: Weapon SubType: Bow Buy: 200000 Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"AC_SHOWER",30; - Id: 18198 AegisName: G_Knight_Archer_Bow Name: Royal Knight Archer Bow Type: Weapon SubType: Bow Weight: 1700 Attack: 190 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus bDelayrate,-12; bonus2 bSkillAtk,"RA_AIMEDBOLT",25; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } - Id: 18200 AegisName: Realgar_Shooter_EXE Name: Realgar Shooter Type: Weapon SubType: Bow Weight: 1100 Attack: 100 Range: 5 Slots: 1 Jobs: Hunter: true Rogue: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bDex,3; if (.@r>=5) { bonus bAtkRate,2; bonus bAspd,1; } if (.@r>=7) { bonus bBaseAtk,10; bonus2 bSkillAtk,"HT_BLITZBEAT",10; } if (.@r>=9) { bonus bBaseAtk,20; bonus bLongAtkRate,5; bonus2 bSkillAtk,"HT_BLITZBEAT",20; } if (.@r>=10) { bonus bAtkRate,3; bonus bMaxHP,500; bonus2 bAddRace,RC_All,2; } if (.@r>=12) { bonus bDelayrate,-5; bonus2 bAddRace,RC_All,3; } - Id: 18201 AegisName: Comp_Scalet_DragonL_Bow Name: "[Not For Sale] Scarlet Dragon Leather Bow" Type: Weapon SubType: Bow Weight: 800 Attack: 170 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus bDelayrate,-((.@r/3)*4); if (.@r>=9) bonus2 bSkillAtk,"RA_AIMEDBOLT",35; if (.@r>=11) bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; - Id: 18202 AegisName: Comp_Narcis_Bow Name: "[Not For Sale] Narcissus Bow" Type: Weapon SubType: Bow Weight: 1000 Attack: 180 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus bLongAtkRate,(.@r/3)*4; if (.@r>=9) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; if (.@r>=11) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; - 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 Script: | bonus2 bExpAddRace,RC_All,60; - 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 Script: | bonus2 bExpAddRace,RC_All,80; - 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 Script: | bonus2 bExpAddRace,RC_All,100; - 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: | bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; - Id: 18504 AegisName: Anubis_Helm_J Name: Anubis Helm J Type: Armor Buy: 20 Weight: 1000 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 View: 485 Script: | bonus bMdefRate,-50; bonus bDefRate,-50; bonus5 bAutoSpellWhenHit,"NPC_WIDESTONE",2,10,BF_WEAPON|BF_MAGIC,0; - Id: 18505 AegisName: Umbala_Spirit Name: Umbala Spirit Type: Armor Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 675 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHPrate,1; bonus2 bAddMonsterDropItem,517,500; bonus2 bAddItemHealRate,517,25; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bAllStats,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 Trade: NoDrop: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; - 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: 18508 AegisName: Garuda_Hat Name: Garuda Hat Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 677 Trade: NoDrop: true Script: | bonus bLuk,5; bonus bMdef,3; bonus2 bSubEle,Ele_All,5; bonus bHit,10; bonus bDelayrate,-5; .@r = getrefine(); if (.@r>=7) bonus2 bAddMonsterDropItem,522,100*(.@r-6); - Id: 18509 AegisName: RWC2010_Indonesia Name: RWC2010 Indonesia Type: Armor Buy: 20 Weight: 100 Defense: 6 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 15 Refineable: true View: 678 Script: | bonus bLuk,5; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,504,100; bonus bCritical,10; bonus bAspd,1; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; - Id: 18510 AegisName: Blood_Angel_Hair_Band Name: Blood Angel Hair Band Type: Armor Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 679 Script: | bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_DemiHuman,10; - Id: 18511 AegisName: Blood_Angel_Wing_Ear Name: Blood Angel Wing Ear Type: Armor Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 60 View: 680 - Id: 18512 AegisName: Necktie_Of_Tippler Name: Juho Necktie Type: Armor Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 443 - Id: 18513 AegisName: Shining_Sunflower Name: Shining Sunflower Type: Armor Buy: 20 Weight: 300 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 View: 681 Script: | bonus bLuk,2; bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; - Id: 18514 AegisName: Para_Team_Hat2 Name: Eden Team Hat II Type: Armor Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 682 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | autobonus "{ bonus bBaseAtk,10; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,10; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; - Id: 18515 AegisName: RTC_Winner_Headgear Name: RTC Winner Hat Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 683 Script: | bonus bAllStats,5; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; bonus2 bAddEff,Eff_Curse,50; - Id: 18516 AegisName: RTC_2nd_Headgear Name: RTC 2nd Winner Hat Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 684 Script: | bonus bAllStats,3; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddEff,Eff_Curse,50; - Id: 18517 AegisName: RTC_3rd_Headgear Name: RTC 3rd Winner Hat Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 685 Script: | bonus bAllStats,1; bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddEff,Eff_Curse,50; - Id: 18518 AegisName: Ear_Of_Angel's_Wing_ Name: Angel Wing Ears Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 158 Script: | bonus bStr,1; - Id: 18519 AegisName: Ear_Of_Devil's_Wing_ Name: Evil Wing Ears Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 152 Script: | bonus bStr,1; - Id: 18520 AegisName: Jaty_C Name: Jaty Crown Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 686 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubRace,RC_Plant,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Plant,5; bonus2 bAddRace,RC_Brute,5; bonus2 bAddRace,RC_Player_Doram,5; - Id: 18521 AegisName: Lucky_Clover Name: Lucky Clover Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 571 Script: | bonus bLuk,1; bonus bMaxSP,20; - Id: 18522 AegisName: Evil_Marcher_Hat Name: Evil Marcher Hat Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 687 Script: | bonus bStr,2; bonus bMdef,1; .@r = getrefine(); if (.@r>=7) { bonus bCritAtkRate,10; } bonus2 bAddClass,Class_All,(.@r>=9?7:2); if (.@r>=9) { bonus bLongAtkRate,5; } - Id: 18523 AegisName: Super_Scell Name: Super Scell Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 688 Script: | bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",max(getskilllv("MG_LIGHTNINGBOLT"),5),50+(getskilllv("MG_LIGHTNINGBOLT")*5); bonus3 bAutoSpell,"MG_THUNDERSTORM",max(getskilllv("MG_THUNDERSTORM"),5),50+(getskilllv("MG_THUNDERSTORM")*5); - Id: 18524 AegisName: Dokkebi_Mask Name: Dokkebi Mask Type: Armor Buy: 20 Weight: 700 Defense: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 689 Script: | bonus bStr,2; - Id: 18525 AegisName: Watermelon_Hat Name: Watermelon Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 690 Script: | bonus bVit,1; bonus bLuk,1; bonus bMdef,4; bonus2 bAddEle,Ele_Fire,3; - Id: 18526 AegisName: Yummy_Lollipop Name: Candy Cane In Mouth Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 446 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,5; bonus bBaseAtk,5; bonus bAspd,1; bonus bFixedCastrate,-20; bonus bHealPower,5; - Id: 18527 AegisName: Gloomy_Pumpkin_Hat Name: Dark Pumpkin-head Type: Armor Buy: 20 Weight: 500 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true View: 691 Script: | bonus2 bAddMonsterDropItem,12192,10; bonus bMdef,5; - Id: 18528 AegisName: Tare_Neko_Cru Name: Drooping Neko Crew Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 692 Trade: NoDrop: true Script: | bonus bInt,2; bonus bMdef,5; .@r = getrefine(); if (.@r>=7) { .@i = 1; bonus bMatkRate,(.@r>=9)?7:2; } else .@i = 5; bonus2 bIgnoreMdefClassRate,Class_Normal,.@i+.@r; bonus2 bIgnoreMdefClassRate,Class_Boss,.@i+.@r; - Id: 18529 AegisName: Drooping_Wild_Rose Name: Accurate Wild Rose Type: Armor Buy: 20 Weight: 500 Defense: 5 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 541 Script: | bonus bMaxHPrate,-10; bonus bAspdRate,3; - Id: 18530 AegisName: Tha_Despero_Mask Name: Thanatos Despero Mask Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 693 Script: | bonus bUnbreakableHelm; bonus bLuk,-5; bonus bFlee,4; - Id: 18531 AegisName: Drooping_Permeter Name: Drooping Permeter Type: Armor Buy: 20 Weight: 1000 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 694 Script: | bonus2 bAddDefMonster,1314,-20; bonus2 bAddDefMonster,1316,-20; bonus2 bAddDefMonster,1319,-20; bonus2 bAddDefMonster,1315,-20; bonus2 bAddDefMonster,1318,-20; bonus2 bAddDefMonster,1312,-20; - Id: 18532 AegisName: Heart_Ribbon_Band Name: Heart Ribbon Hairband Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 708 Script: | bonus bInt,2; - Id: 18533 AegisName: Honeybee_Hat Name: Honey Bee Hat Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 709 Script: | bonus bMdef,3; bonus2 bAddRace,RC_Insect,5; bonus2 bMagicAddRace,RC_Insect,5; bonus2 bSubRace,RC_Insect,5; bonus3 bAddMonsterDropItem,518,RC_Insect,2; - Id: 18534 AegisName: Fancy_Phantom_Mask Name: Fancy Phantom Mask Type: Armor Buy: 20 Weight: 1000 Defense: 5 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 710 Script: | bonus bStr,1; bonus bAtkRate,5; bonus bDelayrate,-1; bonus bMaxHP,getrefine()*100; bonus2 bSkillAtk,"MC_MAMMONITE",20; bonus2 bSkillAtk,"NJ_ZENYNAGE",20; - Id: 18535 AegisName: Pumpkin_Hat_2010 Name: Pumpkin Hat 2010 Type: Armor Buy: 20 Weight: 200 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 206 - Id: 18536 AegisName: Foxtail Name: Foxtail Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 711 Trade: NoDrop: true Script: | bonus bMatk,10; bonus bFixedCast,-100; - Id: 18537 AegisName: Malangdo_Hat Name: Malangdo Hat Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 726 Script: | bonus bFlee,6; - Id: 18538 AegisName: Devil_Whisper Name: Spirit Whispers Type: Armor Buy: 20 Weight: 300 Defense: 3 Locations: Head_Mid: true ArmorLevel: 1 View: 712 Script: | bonus bUnbreakableHelm; bonus bMdef,3; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,12020,RC_Angel,400; bonus3 bAddMonsterDropItem,523,RC_Demon,400; - 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; .@r = getrefine(); if (.@r >= 5) { bonus bMatkRate,3; } if (.@r >= 7) { bonus bMatkRate,3; } - Id: 18540 AegisName: Evil_Mask Name: Evil Mask Type: Armor Buy: 20 Weight: 1000 Defense: 3 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 714 Script: | bonus2 bSPLossRate,1,2000; bonus bAspdRate,1; - Id: 18541 AegisName: Little_Fhat Name: Little Feather Hat Type: Armor Buy: 20 Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 715 Script: | bonus bDex,2; bonus bCritAtkRate,10; - Id: 18542 AegisName: Love_Guard Name: Love Guard Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 716 Script: | bonus bHealPower2,5; bonus bAddItemHealRate,5; bonus bHealPower,(getrefine()>6)?5:2; - Id: 18543 AegisName: Witchs_Hat Name: Witchs Hat Type: Armor Buy: 20 Weight: 300 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 717 Script: | bonus bMdef,5; bonus bVariableCastrate,(getrefine()>6?10:5); - Id: 18544 AegisName: Blrabbit_Hband Name: Blrabbit Hband Type: Armor Buy: 20 Weight: 100 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 718 - Id: 18545 AegisName: Whrabbit_Hband Name: Whrabbit Hband Type: Armor Buy: 20 Weight: 100 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 719 - Id: 18546 AegisName: Lover_In_Mouth Name: Lover In Mouth Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 View: 720 Script: | bonus2 bAddMonsterDropItem,529,200; bonus2 bAddMonsterDropItem,530,200; bonus2 bAddMonsterDropItem,11535,50; bonus2 bAddItemHealRate,529,50; bonus2 bAddItemHealRate,530,50; - Id: 18547 AegisName: Campus_Festival Name: Campus Festival Type: Armor Buy: 20 Weight: 100 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 721 - Id: 18548 AegisName: Tiny_Hat Name: Tiny Hat Type: Armor Buy: 20 Weight: 30 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 722 Script: | bonus bInt,1; bonus bAgi,1; - Id: 18549 AegisName: Butterfly_Hairpin Name: Butterfly Hairpin Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 723 Script: | bonus bInt,1; bonus bAgi,1; bonus bMdef,3; bonus2 bAddRace,RC_Plant,5; bonus2 bMagicAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,5; bonus3 bAddMonsterDropItem,709,RC_Plant,30; - Id: 18550 AegisName: Asgard_Blessing Name: Asgard Blessing Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 724 Script: | bonus bAllStats,2; bonus2 bSubEle,Ele_All,5; bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; - Id: 18551 AegisName: Galaxy_Circlet Name: Galaxy Circlet Type: Armor Buy: 20 Weight: 1000 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 725 Script: | .@r = getrefine(); .@a = .@r*10; .@b = .@r/2; bonus bMdef,5; bonus bMaxHP,.@a; bonus bMaxSP,.@a; bonus2 bSubEle,Ele_Earth,.@b; bonus2 bSubEle,Ele_Fire,.@b; bonus2 bSubEle,Ele_Water,.@b; - Id: 18552 AegisName: Proba_Angel_Blessing Name: Proba Angel Blessing Type: Armor Buy: 20 Weight: 1200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 444 Script: | bonus bLuk,2; - Id: 18553 AegisName: Mini_Tree Name: Mini Tree Type: Armor Buy: 20 Weight: 50 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 727 Script: | .@r = getrefine(); bonus2 bResEff,Eff_Stun,2000; bonus2 bResEff,Eff_Curse,2000; bonus2 bResEff,Eff_Blind,2000; bonus2 bResEff,Eff_Confusion,2000; if (.@r>8) bonus2 bAddMonsterDropItem,12130,900; else if (.@r>6) bonus2 bAddMonsterDropItem,12130,400; else bonus2 bAddMonsterDropItem,12130,100; - Id: 18554 AegisName: King_Prawn_Hat Name: King Prawn Hat Type: Armor Buy: 20 Weight: 1000 Defense: 8 Locations: Head_Top: true ArmorLevel: 1 View: 728 Script: | bonus2 bAddItemGroupHealRate,IG_Fish,100; - Id: 18555 AegisName: General_Helmet Name: General Helmet Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 729 Script: | bonus bMdef,3; bonus2 bAddRace,RC_Dragon,5; bonus2 bMagicAddRace,RC_Dragon,5; bonus2 bSubRace,RC_Dragon,5; bonus3 bAddMonsterDropItem,7444,RC_Dragon,2; - Id: 18556 AegisName: Angel_Helmet Name: Angel Helmet Type: Armor Locations: Head_Mid: true ArmorLevel: 1 View: 3 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus3 bAddMonsterIdDropItem,6464,2220,310; - Id: 18557 AegisName: Devil_Helmet Name: Devil Helmet Type: Armor Locations: Head_Mid: true ArmorLevel: 1 View: 12 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus3 bAddMonsterIdDropItem,6345,1812,310; - Id: 18558 AegisName: Sinsuncho_Hat Name: Sinsuncho Hat Type: Armor Buy: 20 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 730 Script: | bonus2 bExpAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,-10; - Id: 18559 AegisName: Fafnir_Skin Name: Fafnir Skin Type: Armor Buy: 20 Weight: 100 Defense: 3 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 152 Script: | bonus bCritical,3; bonus bHPrecovRate,-100; - Id: 18560 AegisName: Fafnir_Mask Name: Fafnir Mask Type: Armor Buy: 20 Weight: 300 Defense: 2 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 180 Script: | bonus bCritical,2; - Id: 18561 AegisName: B_Feather_Beret Name: B Feather Beret Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 731 Script: | bonus bVit,2; bonus bMdef,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; - Id: 18562 AegisName: Bone_Hat Name: Bone Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 732 Script: | bonus bMdef,3; - Id: 18563 AegisName: Heart_Wing_Hairband Name: Heart Wing Hairband Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 733 Trade: NoDrop: true Script: | .@r = getrefine()/3; bonus bUseSPrate,-(10+.@r*3); bonus bDelayrate,-(5+.@r*3); - Id: 18564 AegisName: Love_Piece Name: Love Piece Type: Armor Buy: 20 Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 734 Script: | bonus bNoCastCancel; bonus bUseSPrate,15; - Id: 18565 AegisName: St_Pat_Hat Name: St Patrick's Hat Type: Armor Buy: 20 Weight: 300 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 735 Script: | bonus bStr,1; bonus bInt,1; bonus bMdef,4; if (getrefine()>7) { bonus2 bAddMonsterDropItem,12135,8; } - Id: 18566 AegisName: Nut_Donut_In_Mouth Name: Nut Donut In Mouth Type: Armor Buy: 20 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 View: 736 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,5; bonus bMatk,5; - Id: 18567 AegisName: Stretched_Nose Name: Stretched Nose Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 737 - Id: 18568 AegisName: Humming_Bird Name: Humming Bird Type: Armor Buy: 20 Weight: 100 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 702 Script: | bonus bMdef,6; - Id: 18569 AegisName: Soft_Sheep_Hat Name: Soft Sheep Hat Type: Armor Buy: 20 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 738 Trade: NoDrop: true Script: | bonus bMaxHPrate,1+(getrefine()/2); if (getrefine()>9) { bonus2 bExpAddRace,RC_All,5; } - Id: 18570 AegisName: Ancient_Gold_Deco Name: Ancient Gold Ornament Type: Armor Buy: 20 Weight: 400 Defense: 7 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: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 739 Script: | if (BaseLevel >= 150) { bonus bAllStats,2; } if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) { bonus2 bAddClass,Class_All,8; } if (BaseClass == Job_Mage || BaseClass == Job_Acolyte) { bonus bMatkRate,8; bonus bHealPower,7; } if (BaseClass == Job_Archer) { bonus bDex,3; if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOW) bonus bLongAtkRate,10; } - Id: 18571 AegisName: Lucky_Hat Name: Lucky Hat Type: Armor Buy: 20 Weight: 1000 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 740 Script: | bonus2 bExpAddRace,RC_All,3; - Id: 18572 AegisName: Korean_Judge_Hat Name: Korean Judge Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 377 Trade: NoDrop: true Script: | bonus bMdef,2; bonus bVariableCastrate,-6; bonus bAspdRate,6; .@r = getrefine(); if (.@r>6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || Class == Job_Taekwon || Class == Job_Star_Gladiator || Class == Job_Star_Gladiator2 || Class == Job_Monk || Class == Job_Champion || Class == Job_Sura || Class == Job_Sura_T) bonus2 bAddClass,Class_All,(.@r/2); if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) bonus bMatkRate,(.@r/2); if (BaseClass == Job_Archer || Class == Job_Gunslinger) bonus bLongAtkRate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus bAllStats,1; } - Id: 18573 AegisName: White_Feather Name: White Feather Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 741 Script: | .@r = getrefine(); if (.@r<5) { bonus bHit,20; bonus bMaxHPrate,-10; } else if (.@r<7) { bonus bHit,10; } else if (.@r<9) { bonus bHit,7;bonus bMaxHPrate,3; } else { bonus bHit,4;bonus bMaxHPrate,4; } - Id: 18574 AegisName: Lord_of_Death Name: Lord of Death Type: Armor Buy: 20 Weight: 1000 Defense: 10 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 742 Trade: NoDrop: true Script: | bonus bMdef,5; bonus bAllStats,1; .@r = getrefine(); bonus2 bAddClass,Class_Boss,(.@r>5?.@r+5:10); bonus2 bSubClass,Class_Normal,-5; - Id: 18575 AegisName: Wunderkammer Name: Wunderkammer Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 View: 743 Script: | bonus bMdef,10; bonus3 bAutoSpell,"AS_SONICBLOW",1,30; bonus3 bAutoSpell,"CR_SHIELDCHARGE",5,20; bonus3 bAutoSpellWhenHit,"AL_PNEUMA",1,20; bonus3 bAutoSpellWhenHit,"CR_GRANDCROSS",5,5; bonus3 bAutoSpellWhenHit,"ASC_METEORASSAULT",5,5; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"PR_KYRIE",5,10; bonus3 bAutoSpellWhenHit,"AC_CONCENTRATION",5,5; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,5; - Id: 18576 AegisName: YinYang_Earring Name: YinYang Earring Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 744 Script: | bonus2 bSkillAtk,"MO_CHAINCOMBO",10; bonus2 bSkillAtk,"MO_TRIPLEATTACK",5; bonus2 bSkillAtk,"MO_COMBOFINISH",5; bonus2 bSkillUseSP,"MO_CHAINCOMBO",-1; bonus2 bSkillUseSP,"MO_COMBOFINISH",-1; - Id: 18577 AegisName: 24_Bolt Name: 24 Bolt Type: Armor Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 696 - Id: 18578 AegisName: Helm_Of_Valor Name: Helm Of Valor Type: Armor Defense: 4 Locations: Head_Top: true ArmorLevel: 1 View: 258 Script: | bonus2 bAddRace,RC_All,3; - Id: 18579 AegisName: 9th_Anni_Hat Name: 9th Anni Hat Type: Armor Weight: 90 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 745 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,9; - Id: 18580 AegisName: Yggdrasil_Crown Name: Yggdrasil Crown Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 746 Trade: NoDrop: true Script: | bonus bMdef,3; bonus bHealPower,2; .@r = getrefine(); bonus bHealPower2,10; if (.@r >= 7) { bonus bHealPower,5; } if (.@r >= 9) { bonus bHealPower,3; } - Id: 18581 AegisName: Red_Tiger_Mask Name: Red Tiger Mask Type: Armor Buy: 20 Weight: 400 Defense: 2 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 747 Script: | bonus bStr,3; bonus bMaxHP,100; - Id: 18582 AegisName: Blue_Tiger_Mask Name: Blue Tiger Mask Type: Armor Buy: 20 Weight: 400 Defense: 2 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 748 Script: | bonus bStr,3; - Id: 18583 AegisName: Navy_Drooping_Kitty Name: Navy Drooping Kitty Type: Armor Buy: 250000 Weight: 500 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 749 Script: | bonus bMdef,15; - Id: 18584 AegisName: Brown_Drooping_Kitty Name: Brown Drooping Kitty Type: Armor Buy: 250000 Weight: 500 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 750 Script: | bonus bMdef,15; - Id: 18585 AegisName: Orange_Bunny_Hairband Name: Orange Bunny Hairband Type: Armor Buy: 20 Weight: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 751 Script: | bonus bInt,2; bonus bVit,3; bonus bStr,1; .@r = getrefine(); if (.@r>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (.@r>11) bonus bFixedCastrate,-10; } - Id: 18586 AegisName: Violet_Bunny_Hairband Name: Violet Bunny Hairband Type: Armor Buy: 20 Weight: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 752 Script: | bonus bStr,1; bonus bInt,3; bonus bVit,2; bonus bDex,1; .@r = getrefine(); if (.@r>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (.@r>11) bonus bFixedCastrate,-10; } - Id: 18587 AegisName: Blue_Bunny_Hairband Name: Blue Bunny Hairband Type: Armor Buy: 20 Weight: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 753 Script: | bonus bStr,3; bonus bInt,1; bonus bVit,2; bonus bDex,1; .@r = getrefine(); if (.@r>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (.@r>11) bonus bFixedCastrate,-10; } - Id: 18588 AegisName: Silvah_Bunny_Hairband Name: Silver Bunny Hairband Type: Armor Buy: 20 Weight: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 754 Script: | bonus bStr,2; bonus bInt,3; bonus bVit,1; bonus bDex,1; .@r = getrefine(); if (.@r>8) { bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (.@r>11) bonus bFixedCastrate,-10; } - Id: 18589 AegisName: Strawberry_Hat Name: Strawberry Hat Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 755 Script: | bonus2 bAddMonsterDropItem,578,50*min(10,max(1,getrefine())); - Id: 18590 AegisName: Gemma_Hairband Name: Gemma Hairband Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 564 Script: | bonus bMdef,3; - Id: 18591 AegisName: Mini_Glasses_ Name: Mini Glasses Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 View: 47 - Id: 18592 AegisName: Nestea_Hat Name: Nestea Hat Type: Armor Buy: 20 Weight: 200 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 756 Script: | bonus bMdef,5; - Id: 18593 AegisName: Fancy_Mini_Crown Name: Fancy Mini Crown Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 707 Script: | bonus bInt,1; bonus bMdef,5; bonus bVariableCastrate,-3; bonus bHealPower,3; bonus bUseSPrate,-3; .@r = getrefine(); bonus bMatkRate,(.@r>6)?(5):((.@r>4)?(4):(3)); - Id: 18594 AegisName: Magni_Cap_ Name: Magni Cap Type: Armor Buy: 30000 Weight: 1000 Defense: 9 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 250 Script: | bonus bStr,2; - Id: 18595 AegisName: Horn_Of_Ancient Name: Horn of Ancient Type: Armor Buy: 40 Weight: 400 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 757 Trade: NoDrop: true Script: | bonus2 bSubClass,Class_Boss,10; bonus2 bAddClass,Class_Boss,10; .@r = getrefine(); if (.@r > 6) { autobonus "{ bonus bBaseAtk,100; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; } if (.@r > 8) { bonus2 bSubClass,Class_Boss,10; bonus2 bAddClass,Class_Boss,10; } - 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 Trade: NoDrop: true Script: | skill "WZ_HEAVENDRIVE",3; - Id: 18597 AegisName: Mercury_Helm Name: Mercury Riser Type: Armor Buy: 40 Weight: 400 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 759 Trade: NoDrop: true Script: | bonus bAspdRate,3; bonus bCritical,3; .@r = getrefine(); if (.@r >= 7) { bonus bAspdRate,2; bonus bCritical,2; } if (.@r >= 9) { bonus bAspdRate,2; bonus bCritical,2; } - Id: 18598 AegisName: Mini_Tree_J Name: Mini Tree J Type: Armor Buy: 20 Weight: 50 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 727 Script: | bonus bMdef,20; - Id: 18599 AegisName: Black_Devil_Mask Name: Black Devil Mask Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 760 Trade: NoDrop: true Script: | bonus bAllStats,2; - Id: 18600 AegisName: Cat_Ears_Beret Name: Cat Ear Beret Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 761 Trade: NoDrop: true Script: | bonus2 bAddClass,Class_All,5; .@r = getrefine(); if (.@r < 5) .@r = 5; bonus2 bSubRace,RC_DemiHuman,(.@r - 5); bonus2 bAddRace,RC_DemiHuman,(.@r - 5); bonus2 bSubRace,RC_Player_Human,(.@r - 5); bonus2 bAddRace,RC_Player_Human,(.@r - 5); - Id: 18601 AegisName: Red_Bread_Hat Name: Red Bread Hat Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 762 Trade: NoDrop: true Script: | .@r = getrefine(); if (.@r < 5) .@r = 5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,.@r-5; bonus2 bSubRace,RC_Player_Human,.@r-5; bonus2 bMagicAddRace,RC_DemiHuman,.@r-5; bonus2 bMagicAddRace,RC_Player_Human,.@r-5; bonus bMdef,5; - Id: 18602 AegisName: Watermelon_Slice Name: Watermelon Bite Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 View: 763 - Id: 18603 AegisName: Black_Devil_Mask_ Name: Black Devil Mask Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 760 Trade: NoDrop: true Script: | bonus bAllStats,1; - Id: 18604 AegisName: Falcon_Mask Name: Falcon Mask Type: Armor Buy: 10 Weight: 30 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 782 Script: | bonus2 bAddEle,Ele_Water,5; - Id: 18605 AegisName: Dark_Age Name: Dark Age Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 766 Script: | bonus bMdef,3; - Id: 18606 AegisName: Tear_Drop Name: Tear Drop Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 767 Script: | bonus bMatkRate,3; bonus bHealPower,1; - Id: 18607 AegisName: Blush_ Name: Blush Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 125 - Id: 18608 AegisName: Pair_Of_Red_Ribbon2 Name: Small Ribbons Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 45 View: 169 - Id: 18609 AegisName: Dark_Blindfold_ Name: Dark Blinder Type: Armor Buy: 20 Weight: 100 Slots: 1 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: 18610 AegisName: 7th_Anni_Hat_B Name: 7th Anni Hat B Type: Armor Buy: 20 Weight: 500 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 778 Script: | bonus bAllStats,5; bonus bMdef,4; - Id: 18611 AegisName: Black_Glasses_ Name: Black Glasses Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 404 Script: | bonus bInt,1; bonus bMdef,2; - Id: 18612 AegisName: White_Musang_Hat Name: White Musang Hat Type: Armor Buy: 40 Weight: 400 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 770 Trade: NoDrop: true 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: 400 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 771 Trade: NoDrop: true Script: | bonus bInt,2; bonus bDex,2; bonus bAgi,1; bonus bUnbreakableHelm; - Id: 18614 AegisName: Grim_Reaper_Hat Name: Grim Reaper Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 732 Script: | bonus bFlee,3; - Id: 18615 AegisName: Injured_Eyepatch Name: Injured Eyepatch Type: Armor Buy: 20 Weight: 200 Defense: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 20 View: 772 - Id: 18616 AegisName: Long_Tongue Name: Long Tongue Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 773 Script: | bonus bMatkRate,2; bonus bVariableCastrate,-3; - Id: 18617 AegisName: Onigiri_In_Mouth Name: Onigiri In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 774 Script: | bonus2 bAddDamageClass,1400,5; bonus2 bAddDamageClass,1406,5; bonus2 bAddDamageClass,1404,5; bonus2 bAddDamageClass,1402,5; bonus2 bAddDefMonster,1400,5; bonus2 bAddDefMonster,1406,5; bonus2 bAddDefMonster,1404,5; bonus2 bAddDefMonster,1402,5; - Id: 18618 AegisName: Airplane_Hat Name: Airplane Hat Type: Armor Buy: 20 Weight: 200 Defense: 8 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 775 - Id: 18619 AegisName: Thief_Bandana Name: Thief Bandana Type: Armor Buy: 20 Weight: 200 Defense: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 776 Script: | bonus4 bAutoSpell,"RG_SNATCHER",1,20,1; - Id: 18620 AegisName: Heart_Eyepatch Name: Heart Eyepatch Type: Armor Buy: 5 Weight: 50 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 779 - Id: 18621 AegisName: Gangster_Mask_A Name: Gangster Mask A Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 52 Script: | bonus2 bResEff,Eff_Silence,1500; bonus bMagicDamageReturn,1; - Id: 18622 AegisName: Rocket_Helm1 Name: Rocket Helm 1 Type: Armor Buy: 20 Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true View: 764 Script: | bonus bAllStats,5; bonus bMdef,5; bonus bUnbreakableHelm; - Id: 18623 AegisName: Rocket_Helm2 Name: Rocket Helm 2 Type: Armor Buy: 20 Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true View: 765 Script: | bonus bAllStats,4; bonus bMdef,5; bonus bUnbreakableHelm; - Id: 18624 AegisName: Rocket_Helm3 Name: Rocket Helm 3 Type: Armor Buy: 20 Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true View: 768 Script: | bonus bAllStats,3; bonus bMdef,5; bonus bUnbreakableHelm; - Id: 18625 AegisName: Rocket_Helm_RWC Name: Rocket Helm RWC Type: Armor Buy: 10000 Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 Refineable: true View: 769 Script: | bonus bAllStats,2; bonus bMdef,5; bonus bUnbreakableHelm; bonus bSpeedRate,25; - Id: 18626 AegisName: Gelato_Hat Name: Gelato Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 777 - Id: 18627 AegisName: Dried_Leaf Name: Dried Leaf Type: Armor Buy: 20 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 711 Script: | bonus bUnbreakableHelm; - Id: 18628 AegisName: Tare_Domovoi Name: Tare Brownie Type: Armor Buy: 20 Weight: 500 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 781 Script: | bonus bMdef,5; bonus bMaxHPrate,2; bonus2 bSubRace,RC_DemiHuman,5; - Id: 18629 AegisName: B_Desert_Wolf_Hat Name: Baby Desert Wolf Hat Type: Armor Buy: 10 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 783 Script: | bonus bMdef,5; bonus bLongAtkDef,5; - Id: 18630 AegisName: Alicel_Drooping_Doll Name: Drooping Alicel Type: Armor Buy: 20 Weight: 500 Defense: 6 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 784 Script: | bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; if (getrefine() > 10) { autobonus "{ bonus bAspdRate,100; }",10,7000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; } - Id: 18631 AegisName: Ribbon_Chef_Hat Name: Ribbon Chef Hat Type: Armor Buy: 20 Weight: 300 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 785 Script: | bonus bDex,3; bonus bLuk,1; if (getrefine() > 6) { bonus2 bAddMonsterDropItem,12125,500; bonus2 bAddMonsterDropItem,12126,500; bonus2 bAddMonsterDropItem,12127,400; bonus2 bAddMonsterDropItem,12128,300; bonus2 bAddMonsterDropItem,12129,200; } - Id: 18632 AegisName: Yellow_Poring_Clip Name: Yellow Poring Hairpin Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 786 - Id: 18633 AegisName: Pink_Poring_Clip Name: Pink Poring Hairpin Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 787 - Id: 18634 AegisName: Green_Poring_Clip Name: Green Poring Hairpin Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 788 - Id: 18635 AegisName: Blue_Poring_Clip Name: Blue Poring Hairpin Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 789 - Id: 18636 AegisName: Bridal_Ribbon Name: Bridal Ribbon Type: Armor Buy: 20 Weight: 200 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 790 Script: | bonus bDex,1; bonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,10; - Id: 18637 AegisName: Ancient_Admiral_Helm Name: Ancient Admiral Helm Type: Armor Buy: 20 Weight: 700 Defense: 4 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 660 Script: | bonus bStr,2; bonus bVit,1; if (getrefine() > 7) bonus bSpeedRate,25; - Id: 18638 AegisName: Citron_Hat Name: Citron 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: 1 Refineable: true View: 791 Script: | bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; - Id: 18639 AegisName: Naval_Officer_Hat Name: Naval Officer Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 792 Script: | bonus bLuk,3; bonus2 bAddEle,Ele_Water,5; - Id: 18640 AegisName: Starfish_Headband Name: Starfish Headband Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 793 - Id: 18641 AegisName: Ribbon_Magic_Hat Name: Ribbon Magic Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 794 Script: | bonus bMaxSP,50; bonus bMatkRate,5; - Id: 18642 AegisName: Scissorhand_Model Name: Scissorhand Model Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 795 Script: | bonus bAgi,1; - Id: 18643 AegisName: Rockhand_Model Name: Rockhand Model Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 796 Script: | bonus bStr,1; - Id: 18644 AegisName: Paperhand_Model Name: Paperhand Model Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 797 - Id: 18645 AegisName: Sailor_Hat Name: Sailor Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 798 Script: | bonus bInt,1; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; - Id: 18646 AegisName: Cow_Hat Name: Cow Hat Type: Armor Buy: 20 Weight: 300 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 799 Script: | bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; - Id: 18647 AegisName: Star_Eyepatch Name: Star Eyepatch Type: Armor Buy: 20 Weight: 100 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 800 Script: | bonus2 bResEff,Eff_Stun,1500; - Id: 18648 AegisName: Tongue_Charm Name: Tongue Charm Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 801 Script: | bonus2 bSubRace,RC_Demon,3; - Id: 18649 AegisName: Lude_Mask Name: Lude Mask Type: Armor Buy: 10 Weight: 100 Defense: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 Refineable: true View: 802 - Id: 18650 AegisName: RWC_Shouting_Mouth Name: RWC Shouting Mouth Type: Armor Buy: 20 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 194 Script: | bonus3 bAutoSpellWhenHit,"SM_ENDURE",1,10; bonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,10; bonus3 bAutoSpellWhenHit,"MO_EXPLOSIONSPIRITS",5,10; bonus3 bAutoSpell,"BS_MAXIMIZE",5,10; bonus3 bAutoSpell,"MC_LOUD",1,10; bonus3 bAutoSpell,"AC_CONCENTRATION",5,10; bonus3 bAutoSpell,"PR_GLORIA",3,10; autobonus "{ bonus bStr,3; bonus bAgi,3; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; showscript \"RWC 2011 Fighting!!\"; }"; autobonus "{ bonus bInt,3; bonus bLuk,3; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; showscript \"RWC 2011 Fighting!!\"; }"; - Id: 18651 AegisName: Ignis_Cap Name: Ignis Cap Type: Armor Buy: 20 Weight: 800 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 803 - Id: 18652 AegisName: Vanargand_Helm Name: Vanargandr Helm Type: Armor Buy: 20 Weight: 1500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true View: 804 Script: | .@r = getrefine(); if (.@r >= 9 ) { bonus2 bHPDrainRate,60,8; bonus2 bSPDrainRate,20,4; } else if (.@r >= 8 ) { bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,2; } else if (.@r >= 7 ) { bonus2 bHPDrainRate,30,5; bonus2 bSPDrainRate,10,2; } else if (.@r >= 5 ) { bonus2 bHPDrainRate,10,3; bonus2 bSPDrainRate,10,1; } else { bonus2 bHPDrainRate,10,1; bonus2 bSPDrainRate,10,1; } - Id: 18653 AegisName: Deviruchi_Headphone Name: Deviruchi Headphone Type: Armor Buy: 20 Weight: 200 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 805 Script: | bonus bMdef,4; - Id: 18655 AegisName: Goedo_Monocle Name: Goedo Monocle Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 807 Script: | bonus bAgi,2; - 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 bAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Demon,15; - Id: 18657 AegisName: Pegasus_Wing_Ears Name: Pegasus Wing Ears Type: Armor Buy: 20 Weight: 500 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 80 View: 568 Script: | bonus bUnbreakableHelm; .@i = BaseLevel; bonus bAspdRate,(.@i>=150)?(3):((.@i>=100)?(2):((.@i>=50)?(1):(0))); - Id: 18658 AegisName: Holy_Santa_Beard Name: Holy Santa Beard Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 25 - Id: 18659 AegisName: Boitata_Hat Name: Boitata Hat Type: Armor Buy: 20 Defense: 5 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 808 Script: | autobonus "{ bonus bAtkEle,Ele_Fire; }",10,180000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; bonus3 bAutoSpell,"AS_SONICBLOW",5,10; - Id: 18660 AegisName: Indi_Feather_Band Name: Indian Feather Headband Type: Armor Buy: 20 Weight: 400 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 809 Script: | bonus bAgi,2; - Id: 18661 AegisName: Trident_Helmet Name: Trident Helm Type: Armor Buy: 20 Weight: 400 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 810 Script: | bonus bStr,2; - Id: 18662 AegisName: Antler_Fedora Name: Antler Fedora Type: Armor Buy: 20 Weight: 400 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 811 Script: | bonus bInt,3; - Id: 18663 AegisName: Sunglasses_Bball_Hat Name: Sunglasses Baseball Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 812 Script: | bonus bInt,3; - Id: 18664 AegisName: Blind_Glasses Name: Stunner Shades Type: Armor Buy: 20 Weight: 400 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 813 Script: | bonus2 bResEff,Eff_Stun,1000; bonus2 bResEff,Eff_Freeze,1000; - Id: 18665 AegisName: Orange_In_Mouth Name: Orange In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 814 - Id: 18666 AegisName: CD_In_Mouth Name: CD In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 815 Script: | autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",rand(1,5),400; bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",rand(1,5),400; bonus3 bAutoSpell,\"MG_COLDBOLT\",rand(1,5),400; bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",rand(1,5),400; bonus3 bAutoSpell,\"MG_SOULSTRIKE\",rand(1,5),400; }",60,5000,BF_NORMAL,"{ specialeffect2 EF_ENHANCE; }"; - Id: 18667 AegisName: Cat_Lace_Hairband Name: Cat Lace Hairband Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 816 Script: | bonus bDex,3; - Id: 18668 AegisName: Droopy_Turtle_Hat Name: Droopy Turtle Hat Type: Armor Buy: 20 Weight: 300 Defense: 1 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 694 Script: | skill "AL_DECAGI",3; - Id: 18669 AegisName: Cowhide_Hat Name: Cowhide Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 819 Script: | bonus bDex,2; bonus bMaxHPrate,1; - Id: 18670 AegisName: Hankie_In_Mouth Name: Hankie In Mouth Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 12 View: 818 Script: | bonus bDex,3; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; - Id: 18671 AegisName: Rudolf_Hairband Name: Rudolf Hairband Type: Armor Buy: 20 Weight: 200 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 836 - Id: 18672 AegisName: Tare_Pope Name: Drooping Pope Type: Armor Buy: 20 Weight: 300 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 817 Script: | bonus bMdef,1; bonus bSPrecovRate,2; bonus bUnbreakableHelm; - Id: 18673 AegisName: Tare_Pope_ Name: Drooping Pope Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 817 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; bonus bMdef,7; .@r = getrefine(); bonus bHealPower,(.@r>=7?5+(.@r-6):5); if (.@r>=9) { bonus bMatkRate, ( .@r >= 12 ? 12 : 7 ); } - Id: 18674 AegisName: Planewing_Hat Name: Planewing Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 820 Script: | bonus bAgi,3; bonus bAspdRate,1; bonus2 bSPLossRate,5,10000; - Id: 18675 AegisName: Green_Apple_Hat Name: Green Apple Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 821 Script: | bonus bDex,2; bonus bHit,5; - Id: 18676 AegisName: Hexagon_Spectacles Name: Hexagon Spectacles Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 822 Script: | bonus2 bMagicAddRace,RC_Insect,4; bonus2 bSubRace,RC_Insect,5; bonus bUnbreakableHelm; - Id: 18677 AegisName: Cherry_Twig_In_Mouth Name: Cherry Twig In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true View: 823 - Id: 18678 AegisName: Leek_In_Mouth Name: Leek In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 824 Script: | bonus2 bSubSize,Size_Small,2; - Id: 18679 AegisName: Abacus_In_Mouth Name: Abacus In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 825 Script: | skill "MC_IDENTIFY",1; - Id: 18680 AegisName: Tw_Frog_Hat Name: Tw Frog Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 35 View: 826 Script: | bonus bAgi,1; bonus2 bExpAddRace,RC_Insect,5; - Id: 18681 AegisName: Puppy_Ears_Hat Name: Puppy Ears Hat Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 827 Script: | bonus bVit,2; bonus bMaxHP,100; - Id: 18682 AegisName: Teardrop Name: Teardrop Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 828 Script: | bonus bMaxSP,15; - Id: 18683 AegisName: Carrot_In_Mouth Name: Carrot In Mouth Type: Armor Buy: 20 Weight: 200 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 829 Script: | bonus2 bSubRace,RC_Plant,3; - Id: 18684 AegisName: Showy_High_Cap Name: Showy High Cap Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 830 Script: | bonus bStr,3; bonus bInt,2; bonus2 bAddItemSPHealRate,505,50; - Id: 18685 AegisName: Stardust_Hairband Name: Stardust Hairband Type: Armor Buy: 20 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 831 - Id: 18686 AegisName: 2011_RMSC_1 Name: 2011 RMSC 1 Type: Armor Buy: 20 Weight: 2500 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 832 Script: | bonus bUnbreakableHelm; bonus bAllStats,5; - Id: 18687 AegisName: 2011_RMSC_2 Name: 2011 RMSC 2 Type: Armor Buy: 20 Weight: 2500 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 832 Script: | bonus bUnbreakableHelm; bonus bAllStats,3; - Id: 18688 AegisName: 2011_RMSC_3 Name: 2011 RMSC 3 Type: Armor Buy: 20 Weight: 2500 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 832 Script: | bonus bUnbreakableHelm; bonus bAllStats,1; - Id: 18689 AegisName: 2011_RMSC_4 Name: 2011 RMSC 4 Type: Armor Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 832 Script: | bonus bUnbreakableHelm; - Id: 18690 AegisName: Sirt_Evil_Eye Name: Sirt Evil Eye Type: Armor Buy: 20 Weight: 400 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 345 Script: | bonus bUnbreakableHelm; bonus bStr,1; - Id: 18691 AegisName: Rising_Black_Dragon Name: Rising Black Dragon Type: Armor Buy: 20 Weight: 100 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 863 - Id: 18692 AegisName: Mike_Hat Name: Mike Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 837 Script: | bonus bDex,2; bonus bLuk,1; - Id: 18693 AegisName: Sleeping_Kitty_Cat Name: Sleeping Kitty Cat Type: Armor Buy: 20 Weight: 200 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 838 Script: | bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; - Id: 18694 AegisName: Red_Hood Name: Red Hood Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 839 Script: | bonus bCritical,10; - Id: 18695 AegisName: Phoenix_Crown Name: Phoenix Crown Type: Armor Buy: 20 Weight: 400 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 840 Script: | bonus bInt,2; - Id: 18696 AegisName: Orange_Hat Name: Orange Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 841 Script: | skill "MC_MAMMONITE",2; - Id: 18697 AegisName: Syringe_In_Mouth Name: Syringe In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 842 - Id: 18698 AegisName: Cheesy_Snack_In_Mouth Name: Cheesy Snack In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 843 - Id: 18699 AegisName: Starving_Fish_Hat Name: Starving Fish Hat Type: Armor Buy: 20 Weight: 1200 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 844 - Id: 18700 AegisName: Rabbit_Ribbon Name: Rabbit Ribbon Type: Armor Buy: 20 Weight: 500 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 845 Script: | bonus bInt,1; - Id: 18701 AegisName: Ancient_Civil_Man Name: Ancient Civil Man Type: Armor Buy: 20 Weight: 500 Defense: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 View: 846 Script: | bonus bInt,3; bonus bDex,2; bonus bLuk,1; if (getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW) == W_BOOK) bonus bVariableCastrate,-3; - Id: 18702 AegisName: Shaving_Cream Name: Shaving Cream Type: Armor Buy: 20 Weight: 50 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 847 - Id: 18703 AegisName: Stem_In_Mouth Name: Stem In Mouth Type: Armor Buy: 20 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 848 Script: | bonus2 bResEff,Eff_Poison,2000; - Id: 18704 AegisName: Drosera_Hairpin Name: Drosera Hairpin Type: Armor Buy: 20 Weight: 640 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 64 Refineable: true View: 850 Script: | bonus bMdef,4; bonus bMaxSP,64; bonus2 bSubRace,RC_Insect,-10; - Id: 18705 AegisName: FlipHat Name: Flip Hat Type: Armor View: 862 Buy: 50000 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bFlee2,5; bonus bLuk,2; autobonus "{ bonus bHit,30; }",1+.@r,6000,BF_WEAPON; autobonus "{ bonus bVariableCastrate,-30; }",1+.@r,6000,BF_MAGIC; bonus3 bAutoSpell,"AS_SONICBLOW",10,1; - Id: 18706 AegisName: Can_Hat Name: Can Hat Type: Armor Buy: 20 Weight: 400 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 851 Script: | bonus bLuk,3; - Id: 18707 AegisName: Maneater_Flower_Hat Name: Maneater Flower Hat Type: Armor Buy: 20 Weight: 500 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 852 Script: | bonus bFlee,20; - Id: 18708 AegisName: Candy_Hat Name: Candy Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 853 Script: | skill "AL_HEAL",3; - Id: 18709 AegisName: Black_Knitted_Hat Name: Black Knitted 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: 854 Script: | bonus bMaxSP,100; - Id: 18710 AegisName: Sugared_Fruit_Stick Name: Sugared Fruit Stick Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 855 - Id: 18711 AegisName: Electric_Sunglass Name: Electric Sunglass Type: Armor Buy: 20 Weight: 400 Defense: 3 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 20 View: 856 - Id: 18712 AegisName: Fan_In_Mouth Name: Fan In Mouth Type: Armor Buy: 20 Weight: 200 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 857 - Id: 18713 AegisName: Monkey_On_Fur_Hat Name: Monkey On Fur Hat Type: Armor Buy: 20 Weight: 300 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 858 Script: | bonus bDex,1; bonus bAgi,1; bonus bFlee,10; - Id: 18714 AegisName: Hippo_Hat Name: Hippo Hat Type: Armor Buy: 20 Weight: 500 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 859 Script: | bonus2 bSubEle,Ele_Water,10; bonus5 bAutoSpellWhenHit,"WZ_FROSTNOVA",1,1,BF_WEAPON|BF_MAGIC,0; - Id: 18715 AegisName: Helm_Of_Thoth Name: Helm Of Thoth Type: Armor Buy: 20 Weight: 2500 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 80 View: 860 Script: | bonus bInt,2; bonus bMdef,5; bonus bMaxSP,100; - Id: 18716 AegisName: Strawberry_In_Mouth Name: Strawberry In Mouth Type: Armor Buy: 20 Weight: 50 Defense: 2 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 861 - Id: 18718 AegisName: Rose_Hairband Name: Rose Hairband Type: Armor Buy: 20 Weight: 200 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 864 Script: | bonus bInt,1; bonus bVit,1; bonus bAspdRate,3; bonus bVariableCastrate,-3; - Id: 18720 AegisName: Magical_Booster Name: Magical Booster Type: Armor Buy: 20 Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 873 Script: | bonus bMatkRate,3; - Id: 18724 AegisName: L_Magestic_Goat_ Name: Gigantic Majestic Goat Type: Armor Buy: 20 Weight: 800 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 380 Script: | bonus2 bAddRace,RC_DemiHuman,12; bonus2 bAddRace,RC_Player_Human,12; bonus bBaseAtk,(JobLevel/7)*2; - Id: 18725 AegisName: Rabbit_Ear_Knit_Hat Name: Rabbit Ear Knitted Hat Type: Armor View: 867 Weight: 500 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 33 Refineable: true Script: | bonus bHPrecovRate,20; bonus bSPrecovRate,20; if (readparam(bLuk)>=55) { bonus bHPrecovRate,30; bonus bSPrecovRate,30; } - Id: 18726 AegisName: Sky_Helm Name: Sky Helm Type: Armor Buy: 20 Weight: 700 Defense: 5 Slots: 1 Locations: Head_Top: true Head_Mid: true Head_Low: true ArmorLevel: 1 EquipLevelMin: 88 Refineable: true View: 868 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,5; if (.@r>=7) bonus bLongAtkRate,10; else if (.@r>=5) bonus bLongAtkRate,5; else bonus bLongAtkRate,2; - Id: 18727 AegisName: Sedora_Hat Name: Sedora Hat Type: Armor Buy: 20 Weight: 300 Defense: 13 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 869 - Id: 18728 AegisName: Egir_Helm Name: Egir Helm Type: Armor Buy: 200000 Weight: 800 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 110 Refineable: true View: 870 Script: | bonus bMdef,5; bonus bUnbreakableHelm; - Id: 18729 AegisName: MVP_Basketball Name: MVP Basketball Type: Armor Buy: 20 Weight: 150 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 871 Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bAddItemHealRate,522,30; .@r = getrefine(); bonus bVariableCastrate,(.@r>=12)?(-5):((.@r>=10)?(-4):(-3)); - Id: 18730 AegisName: Cryptura_Academy_Hat Name: Cryptura Academy Hat Type: Armor Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 872 Script: | bonus bMaxHP,15; bonus bMaxSP,5; - Id: 18731 AegisName: Valkyrie_Outing_Helm Name: Valkyrie Randgris Helm Type: Armor Buy: 20 Locations: Head_Top: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true View: 225 Script: | bonus bAllStats,1; bonus bAspd,1; bonus bFixedCastrate,-1; - Id: 18732 AegisName: TE_Woe_Cap Name: TE Woe Cap Type: Armor Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 14 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bBaseAtk,5; bonus bMatk,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus2 bResEff,Eff_Freeze,2500; - Id: 18733 AegisName: TE_Woe_Bone_Helm Name: TE Woe Bone Helm Type: Armor Defense: 10 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 103 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus2 bAddRace,RC_Player_Human,20; bonus2 bAddRace,RC_Player_Doram,20; bonus2 bResEff,Eff_Freeze,2500; - Id: 18734 AegisName: TE_Woe_Magic_Eyes Name: TE Woe Magic Eyes Type: Armor Defense: 5 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 209 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus bMatk,10; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bMagicAddRace,RC_Player_Doram,20; bonus2 bResEff,Eff_Freeze,2500; - Id: 18735 AegisName: Drooping_Elven_Ears Name: Drooping Elven Ears Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 875 Script: | bonus bMdef,3; skill "WZ_ESTIMATION",1; - Id: 18736 AegisName: Censor_Bar_ Name: Censor Bar Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 229 - Id: 18737 AegisName: Fortier_Mask Name: Fortier Masque Type: Armor Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 876 Script: | bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Fire,4; - Id: 18738 AegisName: White_Boys_Hat Name: Boys White Hat Type: Armor View: 877 Buy: 20 Weight: 100 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus3 bAutoSpell,"BS_WEAPONPERFECT",1,(.@r>=5?20:10); - Id: 18739 AegisName: Carnation_Hairband Name: Carnation Hairband Type: Armor Buy: 20 Weight: 100 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 878 Script: | bonus bLuk,1; - Id: 18740 AegisName: C_Hair_Of_The_Strong Name: RMSC2012 Special Costume Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 879 - Id: 18741 AegisName: C_Will_O_Wisp Name: Costume Will O Wisp Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 880 EquipScript: | sc_start SC_STRANGELIGHTS,INFINITE_TICK,0; UnEquipScript: | sc_end SC_STRANGELIGHTS; - Id: 18742 AegisName: C_MoonStar_Accessory Name: Costume Moon and Stars Type: Armor Buy: 20 Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 881 Trade: NoDrop: true EquipScript: | sc_start SC_MOONSTAR,INFINITE_TICK,0; UnEquipScript: | sc_end SC_MOONSTAR; - Id: 18743 AegisName: C_Spirit_Of_Chung_E Name: Costume Spirit Of Chung E Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 882 - Id: 18744 AegisName: C_World_Star Name: Costume Twilight Type: Armor Buy: 20 Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 883 EquipScript: | sc_start SC_SUPER_STAR,INFINITE_TICK,0; UnEquipScript: | sc_end SC_SUPER_STAR; - Id: 18745 AegisName: Choco_Stick_In_Mouth Name: Choco Stick In Mouth Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 884 Script: | bonus bMaxSP,50; - Id: 18746 AegisName: Chilly_Breath Name: Chilly Breath Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 885 Script: | bonus bInt,1; - Id: 18747 AegisName: Eyes_Of_Ifrit Name: Eyes Of Ifrit Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 886 Script: | bonus bDex,1; bonus2 bResEff,Eff_Curse,2500; - Id: 18748 AegisName: Gold_Ingot_Poring_Hat Name: Gold Ingot Poring Hat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 887 Script: | bonus bDex,2; bonus bLuk,2; - Id: 18749 AegisName: Majoruros_Horn Name: Majoruros Horn Type: Armor Buy: 20 Weight: 500 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 888 Script: | bonus bStr,2; bonus bMaxHP,100; - Id: 18750 AegisName: Poker_Card_In_Mouth Name: Poker Card In Mouth Type: Armor Buy: 20 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 889 Script: | bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; - Id: 18751 AegisName: Extreme_Luck_Clover Name: Super Lucky Clover Type: Armor View: 571 Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bFlee2,2; - Id: 18752 AegisName: Cursed_Book Name: Cursed Book Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 890 Script: | .@r = getrefine(); bonus2 bHPLossRate,.@r,5000; bonus2 bHPDrainRate,40,4+(.@r/2); bonus2 bSPDrainRate,10,1+(.@r/3); - Id: 18753 AegisName: Tw_Rice_Ball Name: Tw Rice Ball Type: Armor Buy: 20 Weight: 100 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 View: 892 Script: | bonus bLuk,1; bonus2 bAddMonsterDropItem,564,100; - Id: 18754 AegisName: Blood_Sucker Name: Blood Sucker Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 40 View: 893 Script: | bonus bUnbreakableHelm; bonus2 bHPDrainRate,30,5; bonus bHPrecovRate,-100; bonus bSPrecovRate,-100; - Id: 18755 AegisName: Feather_Beret_ Name: Feather Beret Type: Armor Weight: 600 Defense: 1 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 224 Script: | bonus bMdef,1; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; - Id: 18756 AegisName: Black_Shiba_Inu_Hat Name: Black Shiba Inu Hat Type: Armor Buy: 20 Weight: 400 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 894 Script: | bonus bBaseAtk,30; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; - Id: 18758 AegisName: Hat_Of_Scrat Name: Hat Of Scrat Type: Armor Buy: 20 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 896 Script: | bonus2 bAddSize,Size_Medium,5; - Id: 18759 AegisName: Stretched_Nose_M Name: Wood Goblin's Nose Type: Armor Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 737 Script: | bonus bUnbreakableHelm; bonus2 bAddMonsterDropItem,1032,400; bonus2 bAddMonsterDropItem,1033,100; bonus3 bAddMonsterDropItem,576,RC_Plant,40; - Id: 18760 AegisName: Remodel_Wizardry_Hat Name: Improved Mage Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 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; .@r = getrefine(); bonus bMatk,.@r; if (.@r>=7) bonus bInt,.@r-6; - Id: 18761 AegisName: Remodel_Magician_Hat Name: Improved Magician Hat Type: Armor Buy: 20 Weight: 500 Defense: 6 Slots: 1 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; .@r = getrefine(); bonus bMaxSP,.@r*5; if (.@r>=7) bonus bDex,.@r-6; - Id: 18762 AegisName: Remodel_Mask_Of_Fox Name: Improved Kitsune Mask Type: Armor Buy: 20 Weight: 300 Defense: 2 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 153 Script: | bonus bAgi,2; bonus bLuk,2; if (getrefine()>=7) bonus bFlee2,4; - Id: 18763 AegisName: Remodel_Joker_Jester Name: Improved Joker Jester 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: 89 Script: | bonus bLuk,2; bonus bMdef,5; if (getrefine()>=7) bonus bCritAtkRate,5; - Id: 18764 AegisName: Remodel_Bunny_Band Name: Improved Bunny Band Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 15 Script: | bonus bLuk,2; if (getrefine()>=7) bonus bCritical,5; - Id: 18765 AegisName: Enhanced_Corsair Name: Enhanced Corsair Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 105 Script: | bonus bVit,1; bonus bMaxHPrate,5; .@r = getrefine(); if (.@r>=7) bonus2 bSubEle,Ele_Neutral,1; if (.@r>=9) bonus bMaxHPrate,3; - Id: 18766 AegisName: Enhanced_Helm_Of_Angel Name: Enhanced Helm of Angel Type: Armor Buy: 20 Weight: 1600 Defense: 10 Slots: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Monk: true Priest: true Rebellion: true Rogue: true Sage: true SoulLinker: true StarGladiator: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 110 Script: | bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; .@r = getrefine(); if (.@r>=7) { bonus bAgi,2; bonus bLuk,2; } if (.@r>=9) bonus bAspd,1; - Id: 18767 AegisName: Enhanced_Helm_Of_Sun Name: Enhanced Hat of the Sun God Type: Armor Buy: 20 Weight: 2400 Defense: 4 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 138 Script: | bonus bStr,3; bonus bInt,2; .@j = getrefine(); if (.@j>=7) .@i = 1; if (.@j>=9) .@i = 2; bonus bBaseAtk,10+(15*.@i); bonus bMatk,10+(15*.@i); - Id: 18768 AegisName: Enhanced_Bone_Helm Name: Enhanced Bone Helm Type: Armor Buy: 20 Weight: 800 Defense: 15 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; .@j = getrefine(); if (.@j>=7) .@i = 1; if (.@j>=9) .@i = 2; bonus2 bSubEle,Ele_Neutral,2+(2*.@i); - Id: 18769 AegisName: Remodel_Munak_Turban Name: Improved Munak Hat Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 51 Script: | bonus2 bSubRace,RC_Undead,10; if (getrefine()>=7) bonus2 bAddRace,RC_Undead,10; - Id: 18770 AegisName: Remodel_Bongun_Hat Name: Improved Bongun Hat Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 Refineable: true View: 139 Script: | bonus2 bSubRace,RC_Demon,10; if (getrefine()>=7) bonus2 bAddRace,RC_Demon,10; - Id: 18771 AegisName: Remodel_Opera_Mask Name: Improved Opera Phantom Mask Type: Armor Buy: 20 Weight: 200 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 20 View: 128 Script: | bonus bBaseAtk,5; bonus bMatk,5; - Id: 18772 AegisName: Improved_Binoculars Name: Advanced Binoculars Type: Armor Buy: 20 Weight: 100 Defense: 2 Jobs: Archer: true BardDancer: true Hunter: true Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 83 Script: | bonus bDex,1; bonus bLongAtkRate,1; - Id: 18773 AegisName: Improved_Fin_Helm Name: Advanced Fin Helm Type: Armor Buy: 20 Weight: 300 Defense: 5 Jobs: Crusader: true Knight: true Swordman: true Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 65 View: 100 Script: | bonus bMaxHP,300+BaseLevel; /* unconfirmed */ - Id: 18774 AegisName: Improved_Assassin_Mask Name: Advanced Assassin Mask Type: Armor Buy: 20 Weight: 100 Defense: 1 Jobs: Assassin: true Priest: true Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 View: 180 Script: | bonus bCritical,1; bonus bCritAtkRate,1; - Id: 18775 AegisName: Improved_Welding_Mask Name: Advanced 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; bonus bDex,5; bonus bLuk,5; - Id: 18776 AegisName: Improved_Kiss_Of_Angel Name: Advanced Angel's Kiss Type: Armor Buy: 10000 Weight: 300 Defense: 6 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 255 Script: | bonus bSPrecovRate,30; - Id: 18777 AegisName: Aladdin_Lamp Name: Aladdin Lamp Type: Armor Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 897 Script: | bonus bLuk,10; - Id: 18778 AegisName: Pink_Bunny_Band_J Name: Rabbit Hairband (Peach) Type: Armor Buy: 400000 Weight: 100 Defense: 3 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 898 Script: | bonus bLuk,2; - Id: 18779 AegisName: RWC_Champ_Crown_Red Name: RWC Champ Crown First Place Type: Armor Buy: 20 Weight: 500 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 902 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bResEff,Eff_Blind,10000; bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; - Id: 18780 AegisName: RWC_Champ_Crown_Blue Name: RWC Champ Crown Second Place Type: Armor Buy: 20 Weight: 500 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 903 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,5; bonus2 bResEff,Eff_Curse,10000; bonus2 bResEff,Eff_Stun,10000; bonus bUnbreakableHelm; bonus bAllStats,7; bonus bMdef,5; - Id: 18781 AegisName: RWC_Champ_Crown_Black Name: RWC Champ Crown Third Place Type: Armor Buy: 20 Weight: 500 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 904 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,3; bonus bMdef,1; - Id: 18782 AegisName: Butterfly_Wing_Ear_J Name: Butterfly Wing Ear Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 695 Script: | bonus bDex,2; bonus bUnbreakableHelm; - Id: 18783 AegisName: Rose_Crown Name: Rose Crown Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 583 Script: | .@r = getrefine(); bonus bMdef,10; bonus bInt,1; skill "SA_SPELLBREAKER",1; bonus bUseSPrate,50; if (.@r >= 6) bonus bUseSPrate,-(.@r-5)*10; - Id: 18784 AegisName: Elder_Devil_Horn Name: Elder Devil Horn Type: Armor Buy: 20 Weight: 400 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 757 Script: | bonus bInt,2; if (getrefine() >= 7) .@val = 5; bonus2 bMagicAddRace,RC_DemiHuman,5+.@val; bonus2 bMagicAddRace,RC_Player_Human,5+.@val; bonus2 bMagicAddRace,RC_Player_Doram,5+.@val; - Id: 18785 AegisName: King_Poring_Hat Name: King Poring Hat Type: Armor Buy: 20 Weight: 600 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 905 Script: | bonus bDex,1; bonus bLuk,1; .@r = getrefine(); if (.@r>=3) { bonus bDex,(.@r-4); bonus bLuk,(.@r-4); } - Id: 18786 AegisName: Anemos_Mask Name: Anemos Mask Type: Armor Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 906 Script: | bonus bUnbreakableHelm; bonus2 bMagicAtkEle,Ele_Wind,4; - Id: 18787 AegisName: Goal_Tender_Mask Name: Goal Tender Mask Type: Armor Buy: 20 Weight: 200 Defense: 5 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 336 Script: | bonus2 bAddRace,RC_DemiHuman,8; bonus2 bAddRace,RC_Player_Human,8; - Id: 18788 AegisName: Starlight_Scope Name: Starlight Scope Type: Armor Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 83 Script: | .@lv = BaseLevel; bonus bDex,1; if (.@lv >= 100) { .@val = 1; if (.@lv >= 150) .@val += 1; } bonus bLongAtkRate,1+.@val; - Id: 18789 AegisName: Poison_Spore_Hat Name: Poison Spore Hat Type: Armor Buy: 20 Weight: 900 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 899 Script: | .@r = getrefine(); bonus3 bAddMonsterDropItem,921,RC_Plant,10*max(1,(.@r/2)); bonus3 bAddMonsterDropItem,7033,RC_Plant,10*max(1,(.@r/2)); - Id: 18790 AegisName: Rainbow_Poring_Hat Name: Rainbow Poring Hat Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 900 - Id: 18791 AegisName: Shrine_Maiden_Hat Name: Shrine Maiden Hat Type: Armor Buy: 20 Weight: 200 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 908 Refineable: true Script: | bonus bInt,1; bonus bVit,2; .@r = getrefine(); bonus2 bVariableCastrate,"PR_MAGNUS",-100; bonus2 bFixedCastrate,"PR_MAGNUS",-100; bonus5 bAutoSpellWhenHit,"AL_HEAL",max(getskilllv("AL_HEAL"),1),50,BF_WEAPON|BF_MAGIC,0; if (.@r>8) { bonus2 bSkillAtk,"PR_MAGNUS",120; } - Id: 18792 AegisName: Idn_Sakkat Name: Indonesian Independence Sakkat Type: Armor Buy: 10 Weight: 400 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true View: 901 Script: | bonus bVit,10; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubRace,RC_DemiHuman,10; - Id: 18793 AegisName: Sorc_Night_Cap Name: Sorcerer's Night Cap Type: Armor Buy: 20 Weight: 200 Defense: 25 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 911 Script: | .@r = getrefine(); bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_COLDBOLT",50; bonus bMdef,10; if (.@r>6) bonus2 bSkillAtk,"SO_SPELLFIST",25; if (.@r>8) bonus bAspd,5; - Id: 18796 AegisName: RWC_Champ_Crown_QF Name: RWC Champ Crown Fourth Place Type: Armor Buy: 20 Weight: 500 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 914 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bResEff,Eff_Curse,10000; bonus bUnbreakableHelm; bonus bAllStats,2; - Id: 18797 AegisName: Deep_Angel_Hairband Name: Deep Blue Angel Hairband Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 915 Script: | bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,3; - Id: 18798 AegisName: Pink_Angel_Hairband Name: Pink Angel Hairband Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 916 Script: | bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,3; - Id: 18799 AegisName: Nero_Mask Name: Nero Mask Type: Armor View: 917 Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus2 bMagicAtkEle,Ele_Water,4; - Id: 18801 AegisName: Gale_Hairband Name: Gale Hair Ornament Type: Armor Buy: 20 Weight: 250 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 809 Script: | .@r = getrefine(); bonus bInt,2; skill "NJ_RAIGEKISAI",3; bonus2 bSubEle,Ele_Wind,15; if (.@r >= 8) bonus2 bSubEle,Ele_Wind,5; - Id: 18802 AegisName: Boss_Hat Name: Poring Fedora Hat Type: Armor Buy: 20 Weight: 100 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 919 Script: | .@r = getrefine(); bonus bMaxHPrate,5; if (.@r >= 5) { bonus bMaxHPrate,1; bonus bMaxSPrate,-2*.@r; if (.@r >= 10) { bonus bMaxHPrate,4; bonus bMaxSPrate,-3; } } - Id: 18803 AegisName: Rose_Cascade Name: Rose Cascade Type: Armor Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 920 Script: | .@dex = readparam(bDex); bonus bUseSPrate,-5-((.@dex >= 120)?5:0)-((.@dex >= 100)?5:0); - Id: 18804 AegisName: Thornbush_Hairband Name: Thornbush Hairband Type: Armor Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 921 Refineable: true Script: | .@r = getrefine(); bonus bInt,1; bonus bDex,1; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Water,5; bonus2 bMagicAddEle,Ele_Wind,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r>=5) { bonus2 bMagicAddEle,Ele_Fire,min(.@r,10)*2; bonus2 bMagicAddEle,Ele_Water,min(.@r,10)*2; bonus2 bMagicAddEle,Ele_Wind,min(.@r,10)*2; bonus2 bMagicAddEle,Ele_Earth,min(.@r,10)*2; } - Id: 18805 AegisName: Eclipse_Hat Name: Eclipse Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 922 Script: | bonus bLuk,3; bonus bMdef,5; - Id: 18806 AegisName: Black_Rabbit_Hat Name: Black Rabbit Hat Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 923 Script: | bonus bDex,2; bonus bAgi,3; bonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10; - Id: 18807 AegisName: Yellow_Yuzu_Hat Name: Yellow Yuzu Hat Type: Armor Buy: 20 Weight: 400 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 924 Script: | bonus bVit,2; bonus bLuk,3; bonus2 bSubRace,RC_Plant,10; - Id: 18808 AegisName: Wing_Form_Spectacle Name: Wing Style Spectacle Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 Refineable: true View: 925 Script: | bonus bAgi,1; - Id: 18809 AegisName: 8th_Anni_Hat_B Name: Bandana 8th Anniversary Type: Armor Weight: 500 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 778 Script: | bonus bMdef,4; /* Event bonus bonus bAllStats,8; bonus2 bAddMonsterDropItem,503,10; bonus bVariableCastrate,-10; bonus bAspdRate,10; bonus bRestartFullRecover; bonus3 bAutoSpellWhenHit,"AL_HEAL",5,10; */ - Id: 18810 AegisName: Hell_Pumpkin_Hat Name: Hell Pumpkin Hat Type: Armor Buy: 20 Weight: 500 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 717 Script: | bonus bMdef,12; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; - Id: 18811 AegisName: JRO_White_Snake Name: White Snake Type: Armor Buy: 20 Weight: 400 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 413 Script: | .@r = getrefine(); if (.@r >= 6) .@val = .@r-5; bonus2 bAddEff,Eff_Poison,10*.@val; - Id: 18812 AegisName: Elder_Crown Name: Elder Crown Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 933 Script: | .@r = getrefine(); bonus bInt,2; bonus bMdef,5; .@val = 10; if (.@r >= 6) { .@val += 10; if (.@r >= 9) .@val += 10; } bonus3 bAddMonsterDropItem,7939,RC_Plant,.@val; - Id: 18813 AegisName: New_Wave_Sunglasses Name: New Wave Sunglasses Type: Armor Buy: 10 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 856 Script: | bonus bDelayrate,-10; - Id: 18814 AegisName: Angel_School_Cap Name: Angel School Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 927 Script: | bonus bInt,2; bonus bVit,1; - Id: 18815 AegisName: Devil_School_Cap Name: Devil School Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 928 Script: | bonus bStr,2; bonus bVit,1; - Id: 18816 AegisName: Adv_Angel_School_Cap Name: Evoked Angel School Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 929 Script: | bonus bInt,2; bonus bVit,2; bonus bLuk,1; - Id: 18817 AegisName: Adv_Devil_School_Cap Name: Evoked Devil School Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 930 Script: | bonus bStr,2; bonus bVit,2; bonus bLuk,1; - Id: 18818 AegisName: Red_Pencil_In_Mouth Name: Red Pencil In Mouth Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 931 Script: | bonus bUnbreakableHelm; bonus bHit,3; - Id: 18819 AegisName: Blue_Pencil_In_Mouth Name: Blue Pencil In Mouth Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 View: 932 Script: | bonus bUnbreakableHelm; bonus bHit,3; - Id: 18820 AegisName: Gray_Helmet Name: Gray Helmet Type: Armor Buy: 20 Weight: 450 Defense: 35 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: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true View: 941 Script: | bonus2 bSubEle,Ele_Holy,3+getrefine()/2; - Id: 18821 AegisName: Rainbow_Feather_Deco Name: Rainbow Feather Deco Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 934 Trade: NoDrop: true Script: | .@r = getrefine(); if (.@r<3) .@r = 1; else .@r = .@r+1; bonus2 bAddClass,Class_All,.@r; bonus bMatkRate,.@r3; - Id: 18822 AegisName: Flame_Wing_Ear Name: Flame Wing Ear Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 422 Script: | bonus3 bAutoSpell,"SM_MAGNUM",1,30; - Id: 18823 AegisName: Imperial_Feather Name: Imperial Feather Type: Armor Buy: 10 Weight: 500 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 935 Script: | bonus bAspdRate,1; bonus2 bSubEle,Ele_Wind,5; if (readparam(bAgi)>107) { bonus bAspd,1; bonus bAspdRate,1; } - Id: 18824 AegisName: Mask_Of_Bankrupt Name: Bankruptcy Mask Type: Armor Buy: 20 Weight: 490 Slots: 1 Locations: Head_Mid: true Head_Low: true ArmorLevel: 1 EquipLevelMin: 49 View: 936 Script: | autobonus "{ bonus2 bHPRegenRate,50,2000; bonus2 bSPRegenRate,10,2000; }",10,10000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; - Id: 18825 AegisName: Money_Lost_Spirit Name: Grief for Greed Type: Armor Buy: 20 Weight: 1200 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 38 Refineable: true View: 937 Script: | bonus bInt,1; bonus bDex,1; - Id: 18827 AegisName: Valkyrie_Circlet Name: Valkyrie Circlet Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 940 Script: | bonus bStr,3; bonus2 bAddEle,Ele_Dark,10; bonus2 bAddRace,RC_Demon,10; - Id: 18828 AegisName: 2012RMSCNO1 Name: 2012 RWC Winners Helmet Type: Armor Buy: 1000 Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 942 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,5; bonus bMdef,5; bonus bSpeedRate,25; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; - Id: 18829 AegisName: 2012RMSCNO2 Name: 2012 RWC Runners-Up Helmet Type: Armor Buy: 1000 Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 943 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,4; bonus bMdef,5; bonus bSpeedRate,25; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; - Id: 18830 AegisName: 2012RMSCNO3 Name: 2012 RWC 2nd Runner Helmet Type: Armor Buy: 1000 Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 944 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,3; bonus bMdef,5; bonus bSpeedRate,25; skill "AL_TELEPORT",1; bonus bUnbreakableHelm; - Id: 18831 AegisName: 2012RMSCNO4 Name: 2012 RWC Special Helmet Type: Armor Weight: 1000 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 95 View: 945 Script: | bonus bAllStats,2; bonus bMdef,5; bonus bSpeedRate,10; - Id: 18832 AegisName: Rolf_Von_Gigue_666 Name: Rolf Von Gigue 666 Type: Armor Buy: 20 Weight: 300 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 946 Script: | bonus3 bAutoSpell,"BS_ADRENALINE",2,5; - Id: 18833 AegisName: Marin_Crown Name: Marin Crown Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 Refineable: true View: 948 Script: | bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpellWhenHit,"MG_FROSTDIVER",3,10; bonus3 bAutoSpell,"MG_COLDBOLT",5,10; - Id: 18834 AegisName: Sakura_Hairband Name: Sakura Hairband Type: Armor Buy: 20 Weight: 300 Defense: 3 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 Refineable: true View: 949 Script: | bonus bLuk,3; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,10; - Id: 18838 AegisName: Angeling_Woolly_Hat Name: Angeling Woolly Hat Type: Armor Weight: 350 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 953 Script: | .@r = getrefine(); bonus bAllStats,1; bonus bBaseAtk,2+(.@r*2); bonus bMatk,2+(.@r*2); autobonus "{ bonus bAspd,2; }",3+.@r,5000,BF_NORMAL,"{ active_transform 1096,5000; }"; autobonus "{ bonus bVariableCastrate,-50; }",3+.@r,5000,BF_MAGIC,"{ active_transform 1096,5000; }"; - Id: 18839 AegisName: Poring_Sunglasses Name: Poring Sunglasses Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 954 Script: | bonus bDex,1; - Id: 18841 AegisName: Small_Poring_Band Name: Small Poring Band Type: Armor Buy: 20 Weight: 350 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 955 Script: | .@r = getrefine(); bonus bAspdRate,2*(.@r/3); if (.@r>9) bonus bAspd,1; bonus2 bExpAddRace,RC_All,3; - Id: 18842 AegisName: Hat_Of_Girl Name: Hat Of Girl Type: Armor Buy: 20 Weight: 350 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 956 Script: | .@r = getrefine(); bonus bInt,2*(.@r/3); bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Human,7; bonus bMaxHPrate,-3; - Id: 18843 AegisName: Small_Deviling_Hat Name: Small Deviling Hat Type: Armor Buy: 20 Weight: 350 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 957 Script: | .@r = getrefine(); if (.@r>7) bonus bMaxHPrate,.@r-7; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; - Id: 18844 AegisName: Blue_Poring_Bubble Name: Blue Poring Bubble Type: Armor Buy: 20 Weight: 50 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 View: 958 Script: | bonus bAllStats,2; bonus bUnbreakableHelm; bonus bFlee2,2; - Id: 18845 AegisName: Banshee_Master_Kiss Name: Banshee Master Kiss Type: Armor Buy: 20 Weight: 200 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 View: 959 Script: | bonus bUnbreakableHelm; bonus bMaxSPrate,3; autobonus2 "{ bonus2 bSubRace,RC_Player_Doram,100; bonus2 bSubRace,RC_Player_Human,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 18846 AegisName: C_Guard_Of_Neptune Name: Seagod Protector Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 960 Script: | bonus2 bSubDefEle,Ele_Water,5; - Id: 18847 AegisName: Jolly_Roger Name: Jolly Roger Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 962 Script: | bonus bVit,1; bonus2 bSubDefEle,Ele_Water,2; bonus2 bAddEle,Ele_Water,2; .@r = getrefine(); if (.@r>6) { bonus2 bAddEle,Ele_Water,3; } if (.@r>8) { bonus2 bSubDefEle,Ele_Water,3; } - Id: 18848 AegisName: Lush_Rose Name: Lush Rose Type: Armor Buy: 10 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 963 Script: | bonus bMagicHPGainValue,100; bonus bMatk,20+(getrefine()*5); bonus2 bHPLossRate,50,5000; - Id: 18849 AegisName: Celines_Ribbon Name: Celine's Ribbon Type: Armor Buy: 10 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 967 Script: | bonus bDex,3; bonus bMagicHPGainValue,200; bonus bMatk,40+(getrefine()*7); bonus2 bHPLossRate,50,5000; - Id: 18850 AegisName: Polar_Bear_Cap Name: Polar Bear Cap Type: Armor Buy: 20 Weight: 300 Defense: 7 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 966 Script: | bonus bUnbreakableHelm; bonus bDex,1; bonus bAgi,1; bonus bMdef,3; bonus bHPrecovRate,5; bonus bSPrecovRate,3; bonus2 bAddMonsterDropItem,12354,100; - Id: 18851 AegisName: ValentineHeart Name: Valentine Heart Type: Armor Buy: 20 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 397 Script: | bonus bMaxHPrate,5+(getrefine()/2); - Id: 18852 AegisName: D_Strawberry_Hat Name: Tasty Strawberry Hat Type: Armor Buy: 20 Weight: 150 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 968 Script: | bonus bAllStats,1; if (getrefine()>11) bonus bAspd,2; - Id: 18853 AegisName: D_Strawberry_Hat_ Name: Tasty Strawberry Hat Type: Armor Buy: 20 Weight: 150 Defense: 4 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 968 Script: | bonus bAllStats,1; if (getrefine()>11) bonus bAspd,2; - Id: 18854 AegisName: ValentineYellowHeart Name: Yellow Valentine Heart Type: Armor Buy: 20 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 865 Script: | bonus bMaxSPrate,2+(getrefine()/2); - Id: 18855 AegisName: Aviator_Hat Name: Aviator Hat Type: Armor Buy: 10 Weight: 100 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 972 Script: | bonus bAgi,3; bonus bInt,3; autobonus "{ bonus bAtkEle,Ele_Wind; }",500,180,BF_NORMAL; - Id: 18856 AegisName: W_King_Tiger_Doll_Hat Name: W King Tiger Doll Hat Type: Armor Buy: 10 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 973 Script: | bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; .@r = getrefine(); autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*max(1,getrefine()); }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*max(1,getrefine()); }",.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; specialeffect2 EF_POTION_BERSERK; showscript \"Traaaansformation-!! Eddga form!!\"; }"; - Id: 18857 AegisName: Curupira_Hat Name: Curupira Hat Type: Armor Buy: 10 Weight: 100 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 974 Script: | bonus bDex,3; bonus2 bAddEffWhenHit,Eff_Confusion,600; - Id: 18858 AegisName: Pink_Angeling_Bubble Name: Pink Angeling Bubble Type: Armor Buy: 10 Weight: 50 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 975 Script: | bonus bAspd,1; bonus bMaxHP,200; - Id: 18859 AegisName: Angeling_Bubble Name: Angeling Bubble Type: Armor Buy: 10 Weight: 50 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 976 Script: | bonus bDex,1; bonus bMatkRate,2; bonus bMaxHP,100; - Id: 18860 AegisName: Preschool_Hat Name: Red Flower Hat Type: Armor Buy: 10 Weight: 200 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1033 Script: | bonus bDex,5; bonus2 bSubDefEle,Ele_Earth,3; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (getrefine() >= 12) { bonus bShortWeaponDamageReturn,5; } - Id: 18861 AegisName: Zaha_Doll_Hat_J Name: Zaha Doll Hat Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 461 Script: | bonus bHealPower,15; bonus bUseSPrate,15; - Id: 18862 AegisName: Armor_Chiu_J Name: Chiu Armor Type: Armor Buy: 20 Weight: 500 Defense: 55 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,5; bonus bDefEle,Ele_Dark; - Id: 18863 AegisName: Exorcist_Robe Name: Exorcist Robe Type: Armor Buy: 10 Weight: 1700 Defense: 57 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bMdef,5; .@r = getrefine(); if (.@r >= 3) { bonus2 bSubRace,RC_Demon,.@r/3*5; } if (BaseClass == Job_Acolyte) bonus2 bSubEle,Ele_Dark,10; - Id: 18864 AegisName: Earth_Goddess_Flower_J Name: Earth Goddess Flower Type: Armor Buy: 10 Weight: 250 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 864 Script: | bonus bVit,2; skill "WZ_EARTHSPIKE",5; bonus2 bSubEle,Ele_Earth,15; .@r = getrefine(); if (.@r>=8) { bonus2 bSubEle,Ele_Earth,5; } - Id: 18865 AegisName: Sword_Master_Crown Name: Sword Master Crown Type: Armor Buy: 10 Weight: 1000 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 981 Script: | .@i = BaseLevel; bonus bBaseAtk,(.@i>150)?(15):((.@i>100)?(10):((.@i>50)?(5):(0))); if (getskilllv("SM_SWORD") == 10) bonus bHit,10; if (getskilllv("SM_TWOHAND") == 10) bonus bUseSPrate,-5; if (getskilllv("AM_AXEMASTERY") == 10) bonus bVariableCastrate,-5; if (getskilllv("AS_KATAR") == 10) bonus bCritAtkRate,20; if (getskilllv("PR_MACEMASTERY") == 10) bonus bAspdRate,10; - Id: 18866 AegisName: Owlduke_Silk_Hat Name: Owl Duke Silk Hat Type: Armor Buy: 20 Weight: 500 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | if (getrefine() > 6) .@val = getrefine(); bonus bAgi,1; bonus bInt,2; bonus5 bAutoSpell,"HW_MAGICPOWER",2,5+.@val,BF_MAGIC,0; - Id: 18867 AegisName: Vajra Name: Vajra Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 48 View: 983 Script: | bonus bDex,1; bonus bLongAtkRate,2; - Id: 18868 AegisName: Assassin_Skull_Mask Name: Assassin's Skull Mask Type: Armor Buy: 10 Weight: 500 Defense: 2 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 984 Script: | bonus bCritical,5; - Id: 18870 AegisName: Event_Sweet_Candy Name: Very Sweet Candy Bar Type: Armor Buy: 10 Weight: 10 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 446 Script: | bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddClass,Class_All,2; - Id: 18871 AegisName: Event_Sweet_Candy2 Name: Very Sweet Candy Type: Armor Buy: 10 Weight: 10 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 446 Script: | bonus bAllStats,1; bonus bBaseAtk,5; bonus bMatk,5; - Id: 18872 AegisName: Snake_Hat Name: Snake Hat Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 986 Script: | bonus bStr,3; bonus bInt,3; bonus bMdef,5; bonus bUnbreakableHelm; - Id: 18873 AegisName: Sweet_Valentine_Out Name: Sweet Valentine Out Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 865 Script: | .@r = getrefine(); if (.@r>6) { bonus bMaxHPrate,.@r-3; bonus bMaxSPrate,.@r-3; } bonus4 bAutoSpellWhenHit,"AL_BLESSING",10,50,0; - Id: 18874 AegisName: One_Eyed_Glass_ Name: Monocle Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 23 - Id: 18877 AegisName: Baron_Evil_Eye Name: Baron's Evil Eye Type: Armor Buy: 10 Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 989 Script: | bonus bDelayrate,-5; bonus bUseSPrate,5; - Id: 18878 AegisName: Palace_Guard_Cap Name: Palace Guard Cap Type: Armor Buy: 10 Weight: 1000 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 991 Script: | .@r = max(5,getrefine()); bonus2 bSubEle,Ele_Neutral,.@r; bonus bLongAtkDef,.@r; bonus bUnbreakableHelm; - Id: 18879 AegisName: Angry_Scorpion_Hat Name: Angry Scorpion Hat Type: Armor Buy: 10 Weight: 100 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 995 Script: | bonus bMdef,5; - Id: 18880 AegisName: BLACKDEATHKING_GOLDEN Name: Advanced Jao King Hat Type: Armor Buy: 10 Weight: 500 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true View: 996 Script: | bonus bAllStats,3; bonus bMaxHPrate,5; bonus bMaxSPrate,5; - Id: 18881 AegisName: Yggdrasil_Hat Name: World Tree Hats Type: Armor View: 997 Weight: 500 Defense: 16 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMdef,2; bonus bHealPower,5; bonus bAddItemHealRate,5; bonus2 bSkillHeal,"AL_HEAL",5; bonus2 bSkillHeal,"PR_SANCTUARY",5; bonus2 bSkillHeal,"AM_POTIONPITCHER",5; bonus2 bSkillHeal,"AB_HIGHNESSHEAL",5; bonus2 bSkillHeal,"AB_CHEAL",5; if (@r>=7) bonus bHealPower,10; - Id: 18882 AegisName: Kannam_On_Head Name: Kannam On Head Type: Armor Buy: 10 Weight: 200 Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 1003 Script: | bonus3 bAutoSpellWhenHit,"SA_DELUGE",1,100; .@r = min(15,getrefine())/3; .@r = max(1,.@r); bonus3 bAutoSpellWhenHit,"WZ_WATERBALL",.@r,100; - Id: 18883 AegisName: Black_Witch_Hat Name: Mystery Witch Hat Type: Armor View: 1006 Weight: 400 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,3; bonus2 bAddItemHealRate,522,30; if (.@r>=10) { bonus bFlee,2; bonus bAspd,1; } if (.@r>=14) { bonus bFlee,2; bonus bAspd,1; } - Id: 18884 AegisName: Tatenasi_Helmet Name: Tatenasi Helm Type: Armor View: 810 Weight: 1000 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Neutral,5+(.@r-6); bonus bMagicAtkDef,-5; if (.@r>=6) bonus3 bAutoSpellWhenHit,"LK_PARRYING",1,(.@r*10-50); - Id: 18885 AegisName: Jejecap Name: Jejecap Type: Armor Weight: 100 Defense: 8 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1011 Script: | bonus bStr,2; bonus bInt,3; bonus2 bSubRace,RC_DemiHuman,11; bonus2 bSubRace,RC_Player_Human,11; bonus2 bAddItemHealRate,522,70; - Id: 18887 AegisName: Aqua_Bunny_Band Name: Aqua Bunny Band Type: Armor Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1012 Script: | bonus bVit,3; .@r = getrefine(); bonus bMatkRate,2; if (.@r>11) bonus bVariableCastrate,-10; else if (.@r>8) { bonus bMatkRate,4; bonus bMdef,5; } - Id: 18888 AegisName: Maroon_Bunny_Band Name: Maroon Bunny Band Type: Armor Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1013 Script: | bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (.@r>11) bonus bVariableCastrate,-10; else if (.@r>8) { bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; } - Id: 18889 AegisName: Golden_Bunny_Band Name: Golden Bunny Band Type: Armor Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1014 Script: | bonus bAgi,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,5; if (.@r>11) bonus bVariableCastrate,-10; else if (.@r>8) { bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; } - Id: 18890 AegisName: Gray_Bunny_Band Name: Gray Bunny Band Type: Armor Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1015 Script: | bonus bInt,5; bonus bLuk,5; .@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (.@r>11) bonus bVariableCastrate,-10; else if (.@r>8) { bonus2 bAddClass,Class_All,4; bonus bMatkRate,4; } - Id: 18891 AegisName: Husky_Hat Name: Husky Hat Type: Armor Weight: 500 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1016 Script: | bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus3 bAutoSpell,"SN_WINDWALK",5,10+(getrefine()*3); - Id: 18892 AegisName: Ufo_Poring_Hat Name: Ufo Poring Hat Type: Armor Weight: 1000 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 1017 Script: | bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; bonus bHit,5; bonus bFlee2,5; .@r = getrefine(); if (.@r>8) { bonus bDelayrate,-5; bonus bAspdRate,5; } else if (.@r>6) bonus bVariableCastrate,-5; - Id: 18893 AegisName: Dragon_Claw_Helm Name: Dragon Claw Helm Type: Armor Weight: 1000 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 1018 Script: | bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Dragon,8; bonus2 bAddItemGroupHealRate,IG_Meat,200; if (getrefine()>11) { bonus bMaxHPrate,7; bonus bMaxSPrate,3; } - Id: 18894 AegisName: Rainbow_Star Name: Rainbow Star Type: Armor Weight: 500 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1019 Script: | bonus2 bSubRace,RC_Player_Human,5; - Id: 18895 AegisName: Celestial_Dark_Flame Name: Celestial Dark Flame Type: Armor Weight: 200 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 1008 Script: | bonus2 bSubEle,Ele_Fire,8; - Id: 18896 AegisName: Pterios_Fins Name: Pterios Fins Type: Armor Weight: 200 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 1009 Script: | bonus2 bSubEle,Ele_Fire,8; - Id: 18897 AegisName: Azure_Diadem Name: Azure Diadem Type: Armor Weight: 200 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 1010 Script: | bonus2 bSubEle,Ele_Water,8; - Id: 18898 AegisName: Yggdrasil_Herald_Crown Name: Yggdrasil Herald Crown Type: Armor Weight: 200 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 997 Script: | bonus bAllStats,5; bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine(); .@rate = max(.@r,7)-7; if (.@rate) { bonus bMaxHPrate,.@rate; bonus bVariableCastrate,-.@rate; } - Id: 18900 AegisName: Weisswurst Name: Weisswurst Type: Armor Buy: 20 Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 60 View: 1022 Script: | bonus bMaxHP,50; - Id: 18901 AegisName: Seppl_Hat Name: Seppl Hat Type: Armor Buy: 20 Weight: 500 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 View: 1023 Script: | bonus bVit,3; bonus bHPrecovRate,10; - Id: 18902 AegisName: Shovel_Hat Name: Shovel Hat Type: Armor Weight: 500 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 1024 Script: | bonus bVit,3; bonus2 bAddMonsterDropItem,553,500; bonus2 bAddItemHealRate,553,700; - Id: 18903 AegisName: Frozen_Land_Rose Name: Frozen Land Rose Type: Armor View: 1025 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 Script: | bonus bUnbreakableHelm; bonus2 bSkillAtk,"WZ_STORMGUST",3; bonus2 bSkillAtk,"WL_JACKFROST",3; bonus bUseSPrate,5; - Id: 18904 AegisName: Man_Medal Name: Man's Pride Type: Armor View: 775 Weight: 300 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus3 bAutoSpell,"SM_PROVOKE",5,2; if (.@r>=6) bonus3 bAutoSpell,"SM_PROVOKE",min(10,.@r),2; - Id: 18905 AegisName: Butterfly_Barrettes Name: Butterfly Wing Hair Clip Type: Armor View: 1027 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | bonus2 bExpAddRace,RC_Insect,5; bonus2 bSubRace,RC_Insect,-10; - Id: 18906 AegisName: Holy_Rosario Name: Ichthys's Rosary Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 60 View: 1028 Script: | bonus bHealPower,3; - Id: 18908 AegisName: Isabella_Red_Ear Name: Isabella Red Ear Type: Armor Buy: 10 Weight: 300 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1030 Script: | bonus bStr,5; bonus bMaxHPrate,5; bonus2 bSubDefEle,Ele_Fire,10; .@r = getrefine(); if (.@r>=9) bonus bAspd,1+(.@r-9)/2; - Id: 18909 AegisName: Isabella_Brown_Ear Name: Isabella Brown Ear Type: Armor Buy: 10 Weight: 300 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1031 Script: | bonus bMaxHPrate,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMatk,getrefine()*2; - Id: 18910 AegisName: Isabella_Blue_Ear Name: Isabella Blue Ear Type: Armor Buy: 10 Weight: 300 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1032 Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddSize,Size_Medium,10; if (getrefine()>=12) { bonus bShortWeaponDamageReturn,5; } - Id: 18912 AegisName: Bell_Pigeon Name: Bell Pigeon Type: Armor Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1034 Script: | bonus bAllStats,1; bonus3 bAutoSpellWhenHit,"AL_RUWACH",1,10; - Id: 18913 AegisName: Gossip_Raven Name: Gossip Raven Type: Armor View: 1035 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; bonus3 bAutoSpell,"AL_RUWACH",1,10; - Id: 18914 AegisName: Kid_Deviling Name: Baby Deviling Type: Armor View: 1036 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; bonus3 bAutoSpell,"AL_BLESSING",7,10; - Id: 18915 AegisName: Blood_Buffterfly Name: Blood Butterfly Ears Type: Armor View: 1037 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHP,200; bonus bFlee,1; - Id: 18916 AegisName: Bear_Balloon Name: Bear Balloon Type: Armor View: 1038 Weight: 200 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bStr,1; bonus bLuk,1; bonus bMaxHP,50; - Id: 18917 AegisName: LoveLove_Balloon Name: LoveLove Balloon Type: Armor Buy: 10 Weight: 200 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1039 Trade: NoDrop: true NoTrade: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAllStats,1; bonus bUnbreakableHelm; - Id: 18918 AegisName: Long_Octopus_Balloon Name: Long Octopus Balloon Type: Armor Buy: 10 Weight: 200 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1040 Script: | bonus bVit,1; bonus bInt,1; bonus bMaxSP,30; bonus bUnbreakableHelm; - Id: 18919 AegisName: Jack_Castle_Bat Name: Jack Castle Bat Type: Armor Weight: 200 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 View: 1041 Script: | bonus bFlee,5; - Id: 18920 AegisName: Bork Name: Bork Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Top: true ArmorLevel: 1 View: 1043 Script: | .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; if (.@r >= 7) { .@val = 5; if (.@r >= 9) .@val += 3; bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Player_Human,.@val; bonus2 bAddRace,RC_Player_Doram,.@val; } - Id: 18921 AegisName: C_Aladdin_Lamp Name: "Costume: Tarnished Lamp" Type: Armor Weight: 200 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 897 Script: | bonus bLuk,10; - Id: 18922 AegisName: ILCHONGOM Name: Angeling Woolly Hat Type: Armor Weight: 500 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 966 Script: | .@r = getrefine(); bonus bAllStats,2; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Fish,10; if (.@r>=9) bonus bMaxHPrate,.@r; - Id: 18923 AegisName: RokBlackCat Name: Stylist Black Cat Ear Type: Armor Weight: 200 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 368 - Id: 18924 AegisName: Fez_Of_Gentle Name: Gentleman Fez Type: Armor Weight: 600 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1042 Script: | .@r = getrefine(); bonus bDex,2; if (.@r = 8) bonus bDex,1; if (.@r = 10) bonus bDex,2; - Id: 18925 AegisName: GodOfWinds_Fan Name: God of Winds Fan Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 View: 1051 Script: | bonus2 bSkillAtk,"WZ_VERMILION",3; bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",3; bonus bUseSPrate,5; - Id: 18926 AegisName: Green_Foxtail Name: Green Foxtail Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 View: 1058 Script: | bonus2 bSkillAtk,"WZ_HEAVENDRIVE",3; bonus2 bSkillAtk,"WL_EARTHSTRAIN",3; bonus bUseSPrate,5; - Id: 18929 AegisName: Elephant_Model_Hat Name: Elephant Model Hat Type: Armor Buy: 10 Weight: 300 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1065 Script: | .@r = getrefine(); bonus bDex,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",5,5; - Id: 18930 AegisName: Gorilla_Model_Hat Name: Gorilla Model Hat Type: Armor Buy: 10 Weight: 300 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1066 Script: | bonus bStr,2; .@m = gettime(DT_MONTH); if (.@m == 1 || .@m == 2) { bonus bStr,2; bonus bVit,2; } bonus4 bAutoSpell,"KN_BOWLINGBASH",1,20,1; if (getrefine()>10) { bonus bStr,3; } - Id: 18931 AegisName: Lion_Model_Hat Name: Lion Model Hat Type: Armor Buy: 10 Weight: 300 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1067 Script: | .@r = getrefine(); bonus bInt,2+((.@r >= 2 && .@r <= 8) ? 1 : ((.@r > 8) ? (.@r/8): 0)); bonus3 bAutoSpellWhenHit,"WZ_METEOR",5,5; - Id: 18932 AegisName: Rhino_Model_Hat Name: Rhino Model Hat Type: Armor Buy: 10 Weight: 300 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1068 Script: | .@r = getrefine(); bonus bVit,2+((.@r >= 11) ? (.@r/11) : 0); bonus3 bAutoSpellWhenHit,"WZ_VERMILION",5,5; - Id: 18933 AegisName: Mechanical_Plant_Hat Name: Mechanical Plant Hat Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 45 Refineable: true View: 1069 Script: | .@r = getrefine()/2; bonus bDex,2; bonus bMdef,7; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(5*.@r); - Id: 18934 AegisName: Fox_Ears_Bell_Ribbon Name: Fox Ears Bell Ribbon Type: Armor Weight: 400 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1070 Script: | bonus bAgi,2; bonus bAspdRate,10; .@r = getrefine(); autobonus "{ bonus bCritical,100; bonus bLongAtkRate,5+max(0,getrefine()-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }"; - Id: 18935 AegisName: There_Is_Something Name: There is Something Type: Armor Weight: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 1091 Script: | bonus bUnbreakableHelm; bonus bFlee2,8; bonus bSpeedRate,25; bonus3 bAddEffWhenHit,Eff_Curse,350,ATF_SHORT|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Fear,150,ATF_SHORT|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Curse,3500,ATF_MAGIC|ATF_SELF; bonus3 bAddEffWhenHit,Eff_Fear,1500,ATF_MAGIC|ATF_SELF; - Id: 18936 AegisName: Golden_Fish Name: Golden Fish In Mouth Type: Armor Buy: 1 Weight: 10 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1081 Script: | bonus bAllStats,2; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bExpAddRace,RC_Fish,2; bonus2 bSubRace,RC_Fish,2; - Id: 18937 AegisName: Memories_Of_Lovers Name: Memory of Lovers Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 Refineable: true View: 1072 Script: | bonus bMdef,7; bonus bMaxHPrate,2; - Id: 18938 AegisName: Astro_Circle Name: Astro Circle Type: Armor Weight: 300 Defense: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1073 Script: | bonus bInt,1; .@r = getrefine(); if (.@r>6) { .@t = ((.@r-6)*2); } bonus2 bSubSkill,"WZ_METEOR",20+.@t; bonus2 bSubSkill,"WL_CRIMSONROCK",20+.@t; bonus2 bSubSkill,"WL_COMET",5; bonus2 bSkillAtk,"WZ_METEOR",(.@r/3)*5; bonus2 bSkillAtk,"WL_CRIMSONROCK",(.@r/3)*5; - Id: 18939 AegisName: Black_Cat_Ears_Beret Name: Black Cat Ears Beret Type: Armor View: 1071 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bAddItemHealRate,579,75; - Id: 18940 AegisName: 10_Gallon_Hat_Of_Flame Name: 10 Gallon Hat Of Flame Type: Armor Buy: 10 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1075 Script: | bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,-5; bonus2 bAddEffWhenHit,Eff_Burning,1000; autobonus2 "{}",50,100,BF_WEAPON|BF_MAGIC,"{ heal 0,-30; }"; - Id: 18941 AegisName: Hunting_Cap_Of_Gust Name: Hunting Cap of Gust Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1477 Script: | bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,-5; bonus3 bAddEffWhenHit,Eff_Fear,1,ATF_WEAPON|ATF_MAGIC; autobonus2 "{}",50,100,BF_WEAPON|BF_MAGIC,"{ heal 0,-30; }"; - Id: 18942 AegisName: Knit_Cap_Of_Water Name: Knit Cap of Water Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1077 Script: | bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,-5; bonus2 bAddEffWhenHit,Eff_Freeze,1000; autobonus2 "{}",50,100,BF_WEAPON|BF_MAGIC,"{ heal 0,-30; }"; - Id: 18943 AegisName: Silk_Hat_Of_Earth Name: Silk Hat of Earth Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1078 Script: | bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Fire,-5; bonus2 bAddEffWhenHit,Eff_Deepsleep,1000; autobonus2 "{}",50,100,BF_WEAPON|BF_MAGIC,"{ heal 0,-30; }"; - Id: 18947 AegisName: Pipe_Of_Jiraiya Name: Jiraiya's Pipe Type: Armor Buy: 10 Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 View: 1088 Script: | bonus2 bSkillUseSP,"NJ_KOUENKA",-5; bonus2 bVariableCastrate,"NJ_KAENSIN",-10; bonus2 bSkillAtk,"NJ_BAKUENRYU",20; - Id: 18948 AegisName: Mask_Of_Orochimaru Name: Orochimaru's Mask Type: Armor Buy: 10 Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 View: 1089 Script: | bonus2 bSkillUseSP,"NJ_HYOUSENSOU",-5; bonus2 bVariableCastrate,"NJ_SUITON",-10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; - Id: 18949 AegisName: Scroll_Of_Tsunade Name: Tsunade's Scroll Type: Armor Buy: 10 Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 View: 1090 Script: | bonus2 bSkillUseSP,"NJ_HUUJIN",-5; bonus2 bVariableCastrate,"NJ_RAIGEKISAI",-10; bonus2 bSkillAtk,"NJ_KAMAITACHI",20; - Id: 18950 AegisName: Gerhard_Von_Devi Name: Gerhard Von Deviruchi Type: Armor Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1092 Script: | bonus bInt,1; bonus bDex,1; if (readparam(bInt) >= 120) bonus bMatkRate,10; else if (readparam(bInt) >= 99) bonus bMatkRate,7; else bonus bMatkRate,5; if (getpetinfo(PETINFO_EGGID) == 9023) { if (getpetinfo(PETINFO_INTIMATE) >= PET_INTIMATE_LOYAL) bonus bDelayrate,-5; else bonus bDelayrate,-2; } - Id: 18954 AegisName: Rabbit_Head_Dress Name: White Rabbit Bonnet Type: Armor View: 1095 Weight: 800 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus5 bAutoSpell,"AL_INCAGI",1,50,BF_WEAPON|BF_MAGIC,0; bonus5 bAutoSpell,"PR_LEXAETERNA",1,10+(.@r*2/3),BF_WEAPON|BF_MAGIC,0; /*Unknown Rate*/ - Id: 18955 AegisName: Pirates_Foolish Name: Pirate's Folly Type: Armor Defense: 6 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 496 Script: | bonus2 bHPDrainRate,30,6; bonus2 bSPDrainRate,10,2; - Id: 18956 AegisName: Chocolate_Bomb Name: Chocolate Bomb Type: Armor Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1110 Script: | bonus bStr,1; bonus bInt,1; bonus bLuk,1; - Id: 18959 AegisName: Old_Pink_Poo_Hat Name: Old Pink Poo Hat Type: Armor Buy: 20 Weight: 1200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1102 Script: | bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubRace,RC_Player_Doram,13; - Id: 18960 AegisName: Love_Daddy_2013 Name: Love Daddy 2013 Type: Armor Buy: 10 Weight: 10 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1104 Script: | .@r = getrefine(); bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; if (readparam(bStr) >= 90) { bonus bBaseAtk,15; if (.@r >= 9) bonus bBaseAtk,15; } if (readparam(bInt) >= 90) { bonus bMatk,15; if (.@r >= 9) bonus bMatk,15; } if (readparam(bVit) >= 90) { bonus bMaxHP,500; if (.@r >= 9) bonus bMaxHP,500; } if (readparam(bAgi) >= 90) { bonus bAspdRate,2; if (.@r >= 9) bonus bAspdRate,3; } if (readparam(bDex) >= 90) { bonus bLongAtkRate,3; if (.@r >= 9) bonus bLongAtkRate,3; } if (readparam(bLuk) >= 90) { bonus bCritical,5; if (.@r >= 9) bonus bCritical,5; } - Id: 18962 AegisName: Panda_Balloon Name: Panda Balloon Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1115 Script: | bonus bAllStats,1; bonus bAspd,1; bonus bUnbreakableHelm; - Id: 18965 AegisName: Shaving_Foam Name: Shaving Foam Type: Armor Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 1129 Script: | bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,10; bonus2 bResEff,Eff_Bleeding,3000; - Id: 18968 AegisName: Jinn_Marin_Balloon Name: Demon Blue Poring Bubble Type: Armor Weight: 50 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1133 Script: | bonus bInt,1; bonus bDex,1; bonus bMaxHP,100; bonus bBaseAtk,5; bonus bMatk,5; - Id: 18969 AegisName: Boss_Beret Name: Beret Boss Hat Type: Armor Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 1134 Script: | .@r = getrefine(); bonus2 bSubSize,Size_All,5+(.@r-5); if (.@r>=10) bonus2 bSubSize,Size_All,5; - Id: 18970 AegisName: Moon_Cat_Magic Name: Magical Moon Cat Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1308 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "ALL_CATCRY",1; bonus bAllStats,3; bonus bDelayrate,-5-(getrefine()/2); bonus bVariableCastrate,-5-(getrefine()/2); - Id: 18971 AegisName: Old_Rune_Circlet Name: Old Rune Circlet Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 623 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,1; bonus bMdef,5; .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bAspd,.@r/5; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus2 bSkillAtk,"RK_IGNITIONBREAK",20*.@r/2; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15*.@r/2; - Id: 18972 AegisName: Old_Mitra Name: Old Mitra Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 624 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMdef,5; bonus bMatk,2*.@r; bonus bBaseAtk,4*.@r; bonus bHealPower,2*.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"AB_JUDEX",20*(.@r/2); bonus2 bSkillAtk,"PR_MAGNUS",10*(.@r/2); - Id: 18973 AegisName: Old_Driver_Band_R Name: Old Driver Band Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 626 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bBaseAtk,4*.@r; bonus bAspd,(.@r/5); bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"NC_POWERSWING",20*(.@r/2); bonus2 bSkillAtk,"NC_AXETORNADO",20*(.@r/2); - Id: 18974 AegisName: Old_Driver_Band_Y Name: Old Driver Band(Yellow) Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 637 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bBaseAtk,4*.@r; bonus bAspd,(.@r/5); bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"NC_ARMSCANNON",15*(.@r/2); bonus2 bSkillCooldown,"NC_SELFDESTRUCTION",-10000*(.@r/4); - Id: 18975 AegisName: Old_Shadow_Handicraft Name: Old Shadow Handicraft Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 627 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMatk,4*.@r; bonus bBaseAtk,4*.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"SC_TRIANGLESHOT",25*(.@r/2); if (.@r>=6) { bonus2 bSkillCooldown,"SC_ENERVATION",-1000; bonus2 bSkillCooldown,"SC_UNLUCKY",-1000; if (.@r>=8) { bonus2 bSkillCooldown,"SC_LAZINESS",-1000; bonus2 bSkillCooldown,"SC_WEAKNESS",-1000; if (.@r>=10) { bonus2 bSkillCooldown,"SC_IGNORANCE",-1000; bonus2 bSkillCooldown,"SC_GROOMY",-1000; } } } - Id: 18976 AegisName: Old_Minstrel_Song_Hat Name: Old Minstrel Song's Hat Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 628 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bLongAtkRate,.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"CG_ARROWVULCAN",20*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15*(.@r/2); - Id: 18977 AegisName: Old_Midas_Whisper Name: Old Midas Whisper Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 629 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bBaseAtk,4*.@r; bonus bLongAtkRate,(.@r/2); bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"GN_CARTCANNON",15*(.@r/2); - Id: 18978 AegisName: Old_Magic_Stone_Hat Name: Old Magic Stone Hat Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 630 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bSPrecovRate,20; bonus bAllStats,1; bonus bMdef,5; bonus bMatkRate,.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"WL_SOULEXPANSION",15*(.@r/2); bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000-(.@r*100); - Id: 18979 AegisName: Old_Blazing_Soul Name: Old Blazing Soul Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 631 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bCritical,2*.@r; bonus bBaseAtk,4*.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*(.@r/2); bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*(.@r/2); - Id: 18980 AegisName: Old_Wind_Whisper Name: Old Wind Whisper Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 633 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMdef,5; bonus bMatkRate,.@r; bonus bBaseAtk,4*.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/2); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20*(.@r/2); - Id: 18981 AegisName: Old_Dying_Swan Name: Old Dying Swan Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 635 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bLongAtkRate,.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"CG_ARROWVULCAN",20*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15*(.@r/2); - Id: 18982 AegisName: Old_Circlet_Of_Bone Name: Old Circlet Of Bones Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 1141 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bCritAtkRate,.@r; bonus bAspdRate,.@r; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"GC_CROSSIMPACT",15*(.@r/2); bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20*(.@r/2); - Id: 18983 AegisName: Old_Protect_Of_Crown Name: Old Casket of Protection Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 1140 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMdef,5; bonus bBaseAtk,4*.@r; bonus bAspd,(.@r/5); bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"LG_CANNONSPEAR",20*(.@r/2); bonus2 bSkillAtk,"LG_OVERBRAND",15*(.@r/2); bonus2 bSkillAtk,"LG_OVERBRAND_BRANDISH",(.@r/2)*15; - Id: 18984 AegisName: Old_Camo_RabbitHood Name: Old Camouflage Rabbit Hood Type: Armor Buy: 10 Weight: 100 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true View: 1142 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bLongAtkRate,.@r; bonus bFlee2,(.@r/3); bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); bonus2 bSkillAtk,"RA_CLUSTERBOMB",15*(.@r/2); bonus2 bSkillAtk,"RA_WUGSTRIKE",10*(.@r/2); - Id: 18985 AegisName: Falconer_Flute Name: Falconer Flute Type: Armor Weight: 100 Jobs: Hunter: true Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 75 View: 1143 Script: | set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus3 bAutoSpell,"HT_BLITZBEAT",.@i,((.@bblvl / 3) * 10) + (.@luk * 10) + (((.@bblvl / 5) * .@bblvl) * 2); - Id: 18987 AegisName: RWC13_Jormungandr_Hat Name: RWC13 Jormungandr Hat Type: Armor Buy: 20 Weight: 2500 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1149 Script: | bonus bAllStats,2; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; .@r = getrefine(); if (.@r>6) { bonus2 bAddItemHealRate,11596,20; bonus bAspd,1; } if (.@r>9) { bonus bVariableCastrate,-5; bonus bDelayrate,-5; } bonus2 bAddItemHealRate,11596,150; EquipScript: | sc_end SC_SpeedUp0; - Id: 18992 AegisName: New_Year_Hairpin Name: New Year Hairpin Type: Armor View: 1155 Buy: 20 Weight: 180 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 15 Refineable: true Script: | bonus bHit,5; bonus bFlee2,3; - Id: 18993 AegisName: Flower_Hat Name: Flower Hat Type: Armor View: 1172 Weight: 300 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bDex,3; bonus bInt,2; bonus bFlee,-2; bonus bFixedCastrate,-5; if (.@r>=12) { .@b += (.@r-12)*10; } bonus bMatk,.@b; bonus bMaxSP,.@b; - Id: 18997 AegisName: Riot_Chip Name: Runaway Chip Type: Armor Buy: 10 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1201 Script: | bonus bHit,50; bonus bFlee,50; bonus bMaxSPrate,-50; - Id: 19004 AegisName: Happy_Balloon Name: Happy Balloon Type: Armor Weight: 200 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1183 Script: | bonus bDex,2; bonus bMaxHP,200; bonus bMaxSP,50; - Id: 19006 AegisName: Victory_Ear_Accessary Name: Ear of Victory Type: Armor View: 1185 Weight: 200 Defense: 3 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVit,1; bonus bInt,1; - Id: 19010 AegisName: Baby_Dragon_Hat Name: Baby Dragon Hat Type: Armor View: 525 Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus2 bSubRace,RC_Dragon,-10; bonus2 bExpAddRace,RC_Dragon,5; - Id: 19011 AegisName: Little_Devil_S_Horn Name: Little Devil's Horn Type: Armor Weight: 1000 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1103 Script: | bonus2 bExpAddRace,RC_Demon,5; bonus2 bSubRace,RC_Demon,10; - Id: 19014 AegisName: Gravekeeper_Blinker Name: Gravekeeper's Blinker Type: Armor Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1210 Script: | bonus2 bAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,5; - Id: 19015 AegisName: C_Gemma_Hairband Name: Costume Kama's Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 564 - Id: 19019 AegisName: Elemental_Crown Name: Elemental Crown Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1219 Script: | .@r = getrefine(); bonus bLongAtkRate,4; bonus bDex,(3+(BaseLevel>99?.@r:.@r/2)); - Id: 19020 AegisName: Survive_Circlet Name: Survivor's Circlet Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1220 Script: | .@r = getrefine(); bonus bInt,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus bMatkRate,4; - Id: 19021 AegisName: Gigant_Helm Name: Gigant Helm Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1221 Script: | .@r = getrefine(); bonus bStr,(3 + (BaseLevel > 99 ? .@r : .@r/2)); bonus2 bAddClass,Class_All,4; - Id: 19022 AegisName: Floating_Stone_Of_Int Name: Floating Stone Of Intelligence Type: Armor Locations: Head_Top: true ArmorLevel: 1 View: 1230 EquipScript: | sc_start SC_FSTONE,INFINITE_TICK,0; UnEquipScript: | sc_end SC_FSTONE; - Id: 19023 AegisName: Q_Scaraba_Crown Name: Queen Scaraba Helmet Type: Armor View: 1231 Weight: 1500 Slots: 1 Locations: Head_Low: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bDefRate,-50; bonus bMdefRate,-50; bonus2 bSubRace,RC_Insect,.@r; bonus5 bAutoSpell,"NPC_WIDECONFUSE",2,10+(.@r*5),BF_WEAPON|BF_MAGIC,1; - Id: 19024 AegisName: Protect_Feathers Name: Protect Feathers Type: Armor Weight: 500 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1232 Script: | bonus2 bSubRace,RC_Player_Doram,2; bonus2 bSubRace,RC_Player_Human,2; bonus bAspdRate,5; .@vit = readparam(bVit); if (.@vit >= 108) { bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; bonus bAspdRate,5; if (.@vit >= 120) { bonus bMaxHPrate,3; bonus bMdef,3; } } - Id: 19025 AegisName: Puppy_Ears_Hat_Jp Name: Puppy Ears Hat Type: Armor Weight: 200 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 827 Script: | bonus bMdef,3; bonus2 bAddRace,RC_Brute,5; bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Brute,5; bonus3 bAddMonsterDropItem,7938,RC_Brute,500; - Id: 19026 AegisName: Egir_Helm_K Name: Aegir Helm Type: Armor Buy: 10 Weight: 800 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 870 Script: | bonus bVit,3; - Id: 19027 AegisName: 10_Type_Glasses Name: 10 Type Glasses Type: Armor Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1237 Script: | bonus2 bMagicAddRace,RC_Brute,5; bonus2 bSubRace,RC_Brute,5; - Id: 19028 AegisName: Minions_Of_Devil Name: Devil's Servant Type: Armor Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 40 View: 1036 Script: | skill "AM_POTIONPITCHER",3; - Id: 19030 AegisName: Pretty_Rabbit_Hood Name: Pretty Rabbit Hood Type: Armor Buy: 10 Weight: 100 Defense: 20 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1085 Script: | bonus bMaxHP,(15*BaseLevel); - Id: 19031 AegisName: Fallen_Angel_Blessing Name: Fallen Angel's Blessing Type: Armor Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 1250 Script: | bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; - Id: 19033 AegisName: Accessories_Of_Goddess Name: Ancient Rift Ornament Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 376 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHP,1000+(.@r >= 9 ? 1000 : .@r >=7 ? 400 : 0); - Id: 19034 AegisName: 37_Sculpt Name: 307 Styles Scute Type: Armor Weight: 200 Defense: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1009 Script: | bonus2 bMagicAddRace,RC_Fish,4; bonus2 bSubRace,RC_Fish,5; - Id: 19035 AegisName: Otter_Hat Name: Otto Hat Type: Armor Weight: 30 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 540 Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bSPGainRace,RC_Fish,5; bonus bHPGainValue,100; bonus2 bSubRace,RC_Fish,(.@r>=7?10:(.@r>=5?5:0)); - Id: 19036 AegisName: Brabery_Hat Name: Adventurer's Hat Type: Armor Buy: 20 Weight: 1000 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 891 Script: | bonus2 bExpAddRace,RC_DemiHuman,5; bonus2 bSubRace,RC_DemiHuman,-10; - Id: 19037 AegisName: 93_BloodyWing Name: 93 Styles Bloody Wings Type: Armor Weight: 200 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1037 Script: | bonus2 bMagicAddRace,RC_Plant,4; bonus2 bSubRace,RC_Plant,5; - Id: 19038 AegisName: 12th_Crown Name: 12 Anniversary Crown of Saint Type: Armor Buy: 10 Weight: 120 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1117 Script: | bonus bAllStats,2; bonus bMdef,12; - Id: 19039 AegisName: 12th_ElvenEars Name: 12 Anniversary Elf Ears Type: Armor Buy: 10 Weight: 120 Locations: Head_Mid: true ArmorLevel: 1 Refineable: true View: 875 Script: | bonus2 bSubRace,RC_All,4; bonus2 bSubRace,RC_Player_Human,-4; bonus2 bSubRace,RC_Player_Doram,-4; - Id: 19041 AegisName: 666_DevilEar Name: 666 Styles Demon's Ears Type: Armor View: 498 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus2 bMagicAddRace,RC_Demon,4; bonus2 bSubRace,RC_Demon,5; - Id: 19042 AegisName: Maneater_Flower_Hairpin Name: Maneater Flower Hairpin Type: Armor Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 852 Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bSPGainRace,RC_Insect,5; bonus bHPGainValue,100; bonus2 bSubRace,RC_Insect,(.@r>=7?10:(.@r>=5?5:0)); - Id: 19043 AegisName: Goibne's_Helmet_S Name: Goibne's Helm Type: Armor Buy: 30000 Weight: 500 Defense: 10 Slots: 1 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: 19044 AegisName: Morrigane's_Helm_S Name: Morrigane's Helm Type: Armor Buy: 30000 Weight: 500 Defense: 8 Slots: 1 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: 19045 AegisName: 14_RainbowWing Name: 104 Styles Rainbow Feathers Type: Armor View: 1186 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus2 bMagicAddRace,RC_Angel,4; bonus2 bSubRace,RC_Angel,5; - Id: 19046 AegisName: DeadlyPoison_Manteau Name: Poisonous Manteau Type: Armor Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Poison,2; bonus2 bMagicAddEle,Ele_Poison,2; - Id: 19047 AegisName: Angeling_KnitCap Name: Angeling Knit Cap Type: Armor Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 953 Script: | bonus2 bSPGainRace,RC_Angel,5; bonus bHPGainValue,100; .@r = getrefine(); if (.@r >= 5) { bonus2 bSubRace,RC_Angel,5+((.@r >= 7) ? 5 : 0); } - Id: 19048 AegisName: Elemental_Clothe Name: Elemental Tights Type: Armor Weight: 500 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,2+((.@r >= 9) ? 3 : 0)+((.@r >= 8) ? 2 : 0); if (.@r >= 7) bonus bUnbreakableArmor; - Id: 19050 AegisName: Loki_Nidhogg_Hat Name: Loki & Nidhoggur's Hat Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1304 - Id: 19051 AegisName: Moon_Cat_Warrior Name: Warrior Moon Cat Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1308 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | /* skill "ALL_CATCRY",1; */ .@r = getrefine(); bonus2 bHPDrainRate,40,5+.@r/3; bonus2 bSPDrainRate,10,2+.@r/5; bonus bAllStats,3; - Id: 19052 AegisName: Sigrun's_Wing_C Name: Rental Sigrun's Wing Type: Armor Buy: 10 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 568 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (Class == Job_Swordman || Class == Job_Thief || Class == Job_Merchant || Class == Job_Taekwon || Class == Job_Star_Gladiator || Class == Job_Star_Gladiator2) bonus bAspd,1; else if (Class == Job_Mage || Class == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) { bonus bMatk,5; bonus bHealPower,2; } else if (Class == Job_Archer || Class == Job_Gunslinger) bonus bLongAtkRate,2; else if (Class == Job_Novice || Class == Job_SuperNovice) { bonus bMaxHP,120; bonus bMaxSP,60; } - Id: 19053 AegisName: Moon_Cat_Fighter Name: Fighter Moon Cat Type: Armor Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1308 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | /* skill "ALL_CATCRY",1; */ .@r = getrefine(); bonus bAllStats,3; bonus2 bAddEff,Eff_Stun,500+(.@r*100); - Id: 19079 AegisName: CelestialWoman_Flower Name: Celestial Woman's Flower Type: Armor Buy: 20 Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 438 Script: | bonus bHPGainValue,100; bonus bMdef,5; bonus2 bSPGainRace,RC_Undead,5; if (getrefine()>=5) { bonus2 bSubRace,RC_Undead,5; } if (getrefine()>=7) { bonus2 bSubRace,RC_Undead,5; } - Id: 19080 AegisName: NettyHeart_BalloonGum Name: Nettie Heart Bubble Gum Type: Armor View: 720 Buy: 10 Weight: 200 Locations: Head_Low: true ArmorLevel: 1 - Id: 19081 AegisName: Faceworm_Egg_Shell Name: Faceworm Egg Shell Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1356 Script: | bonus bHit,20; bonus2 bAddRace2,RC2_FACEWORM,5; bonus2 bMagicAddRace2,RC2_FACEWORM,5; bonus2 bSubRace2,RC2_FACEWORM,5; .@r = getrefine(); if (.@r>=5) { bonus2 bAddRace2,RC2_FACEWORM,10; bonus2 bMagicAddRace2,RC2_FACEWORM,10; bonus2 bSubRace2,RC2_FACEWORM,10; } if (.@r>=7) { bonus2 bAddRace2,RC2_FACEWORM,15; bonus2 bMagicAddRace2,RC2_FACEWORM,15; bonus2 bSubRace2,RC2_FACEWORM,15; } if (.@r>=9) { bonus2 bAddRace2,RC2_FACEWORM,20; bonus2 bMagicAddRace2,RC2_FACEWORM,20; bonus2 bSubRace2,RC2_FACEWORM,20; } - Id: 19082 AegisName: Bio_Protector Name: Bio Protector Type: Armor Weight: 500 Defense: 3 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1366 Script: | bonus bHit,10; bonus bVariableCastrate,-5; bonus bPerfectHitAddRate,5; - Id: 19083 AegisName: Mask_of_Hero Name: Mask of Hero Type: Armor Buy: 20 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1367 Script: | bonus bVit,10; bonus bMdef,10; bonus bShortWeaponDamageReturn,1; - Id: 19084 AegisName: Parfait_V_Hat Name: Parfaille Vigilante Hat Type: Armor Weight: 100 Defense: 2 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 1368 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLuk,1; bonus5 bAutoSpell,"AL_BLESSING",3,30,BF_WEAPON|BF_MAGIC,0; - Id: 19085 AegisName: Sigrun's_Wing_ Name: Sigrun's Wings Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 568 Script: | if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker)) { bonus bAspd,1; bonus bAgi,-2; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || Class == Job_Ninja || Class == Job_Soul_Linker) { bonus bMatk,5; bonus bHealPower,1; } else if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger) bonus bLongAtkRate,1; else if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) { bonus bMaxHP,60; bonus bMaxSP,30; } - Id: 19086 AegisName: Robo_Eye_ Name: Robo Eye Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 345 Script: | bonus2 bAddClass,Class_All,2; bonus bMatkRate,1; bonus bDex,1; - Id: 19087 AegisName: Angel_Spirit_ Name: Angel Spirit Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 394 Script: | bonus bStr,1; bonus bHit,8; - Id: 19088 AegisName: Binoculars_ Name: Binoculars Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 View: 83 Script: | bonus bDex,1; - Id: 19089 AegisName: Blinker_ Name: Blinker Type: Armor Buy: 1500 Weight: 100 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 View: 82 Script: | bonus2 bResEff,Eff_Blind,5000; - Id: 19090 AegisName: Alarm_Mask_ Name: Alarm Mask Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 View: 170 Script: | bonus2 bResEff,Eff_Blind,2500; - Id: 19091 AegisName: Opera_Ghost_Mask_ Name: Opera Phantom Mask Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 20 View: 128 - Id: 19092 AegisName: Machoman_Glasses_ Name: Machoman's Glasses Type: Armor Buy: 36000 Weight: 100 Defense: 1 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 92 - Id: 19093 AegisName: Spinning_Eyes_ Name: Geek Glasses Type: Armor Buy: 20000 Weight: 100 Defense: 1 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 27 Script: | bonus2 bResEff,Eff_Blind,800; - Id: 19094 AegisName: Mr_Smile_ Name: Mr. Smile Type: Armor Buy: 60 Weight: 100 Defense: 1 Slots: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 View: 65 - Id: 19095 AegisName: Happy_Balloon_K Name: Happy Balloon Type: Armor Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1289 Script: | bonus2 bDropAddRace,RC_All,10; bonus2 bExpAddRace,RC_All,5; - Id: 19096 AegisName: Special_Kapra_Hat Name: Special Kafra Hat Type: Armor View: 581 Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,130*.@r; bonus bMaxSP,13*.@r; if (.@r>=10) { bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } - Id: 19097 AegisName: Ribbon_Piamat_K Name: Piamette Ribbon Type: Armor View: 1403 Weight: 100 Defense: 1 Locations: Head_Low: true ArmorLevel: 1 Script: | bonus bMdef,1; bonus bVit,1; - Id: 19098 AegisName: Piamette_Hood Name: Piamette Hood Type: Armor View: 1087 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | bonus bInt,2; bonus bDex,2; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Human,10; if (getrefine()>=12) { bonus bNoSizeFix; } - Id: 19101 AegisName: Glastheim_Onlooker Name: Glast Heim Spectator Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true View: 1041 Script: | bonus bAtkRate,2; bonus bDelayrate,-5; - Id: 19102 AegisName: Pale_Moon_Hat Name: Pale Moon Hat Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 913 Script: | bonus bFlee,20; bonus2 bAddRace2,RC2_THANATOS,5; bonus2 bSubRace2,RC2_THANATOS,5; bonus2 bMagicAddRace2,RC2_THANATOS,5; if (getrefine()>4) { bonus2 bAddRace2,RC2_THANATOS,10; bonus2 bSubRace2,RC2_THANATOS,10; bonus2 bMagicAddRace2,RC2_THANATOS,10; } if (getrefine()>6) { bonus2 bAddRace2,RC2_THANATOS,15; bonus2 bSubRace2,RC2_THANATOS,15; bonus2 bMagicAddRace2,RC2_THANATOS,15; } if (getrefine()>8) { bonus2 bAddRace2,RC2_THANATOS,20; bonus2 bSubRace2,RC2_THANATOS,20; bonus2 bMagicAddRace2,RC2_THANATOS,20; } skill "ALL_THANATOS_RECALL",1; - Id: 19103 AegisName: Kings_Crown Name: Old King’s Crown Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1412 Script: | .@r = getrefine(); bonus bMdef,15; bonus bMatkRate,5+max(1,(.@r-6)); bonus3 bAddEff,Eff_Fear,1000,ATF_MAGIC; if (.@r>=5) bonus3 bAddEff,Eff_Fear,1000+(1000*(min(10,.@r-5)/2)),ATF_MAGIC; - Id: 19104 AegisName: YDragon_SkyWing Name: Dragon Emperor's Wing Type: Armor View: 1413 Weight: 100 Defense: 7 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 50 Script: | if (BaseClass == Job_Swordman) { bonus2 bSubSize,Size_Medium,3; bonus2 bSubSize,Size_Large,5; } else if (BaseClass == Job_Mage) bonus2 bSubEle,Ele_All,5; else if (BaseClass == Job_Archer) bonus bLongAtkDef,10; else if (BaseClass == Job_Acolyte) bonus bHealPower,10; else if (BaseClass == Job_Thief) { bonus bFlee,10; bonus bFlee2,3; } else if (BaseClass == Job_Merchant) { bonus2 bSubClass,Class_Normal,3; bonus2 bSubClass,Class_Boss,5; } else if (BaseClass == Job_Novice || BaseClass == Job_Taekwon || Class == Job_Ninja || Class == Job_Gunslinger) { bonus bMaxHP,1000; bonus bMaxSP,100; } - Id: 19105 AegisName: Explosion_Gum Name: Explosion Gum Type: Armor Weight: 100 Slots: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1414 Script: | bonus2 bResEff,Eff_Sleep,10000; bonus bVariableCastrate,10; - Id: 19106 AegisName: Magicstone_Of_Grace Name: Blessing of Gemstone Type: Armor View: 1420 Weight: 3000 Defense: 15 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bNoGemStone; bonus bMatk,readparam(bInt); bonus bUseSPrate,100; if (.@r >= 5) { bonus bUseSPrate,-25; bonus bMatkRate,3; bonus bHealPower,3; } if (.@r >= 7) { bonus bUseSPrate,-25; bonus bMatkRate,5; bonus bHealPower,5; } if (.@r >= 9) { bonus bUseSPrate,-25; bonus bMatkRate,7; bonus bHealPower,7; } - Id: 19107 AegisName: Mad_Hatter Name: Mad Hatter Type: Armor Weight: 800 Defense: 12 Slots: 1 Locations: Head_Top: true Head_Low: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1421 Script: | .@r = getrefine(); .@per = ((.@r>=7)?10000:(.@r>=5?5000:2000)); bonus bUnbreakableHelm; bonus2 bSubSkill,"NPC_CRITICALSLASH",((.@r>=7)?100:(.@r>=5?50:20)); bonus2 bSubEle,Ele_Dark,5*.@r; if (BaseJob == Job_Novice) bonus2 bResEff,Eff_Freeze,.@per; else if (BaseJob == Job_Swordman) bonus2 bResEff,Eff_Curse,.@per; else if (BaseJob == Job_Mage) bonus2 bResEff,Eff_Bleeding,.@per; else if (BaseJob == Job_Archer) bonus2 bResEff,Eff_Sleep,.@per; else if (BaseJob == Job_Acolyte) bonus2 bResEff,Eff_Stone,.@per; else if (BaseJob == Job_Thief) bonus2 bResEff,Eff_Blind,.@per; else if (BaseJob == Job_Merchant) bonus2 bResEff,Eff_Poison,.@per; else if (BaseJob == Job_Taekwon) bonus2 bResEff,Eff_Stun,.@per; else if (BaseJob == Job_Ninja) bonus2 bResEff,Eff_Silence,.@per; else if (BaseJob == Job_Gunslinger) bonus2 bResEff,Eff_Confusion,.@per; - Id: 19108 AegisName: Wild_Poring_Rider Name: Wild Poring Rider Type: Armor Weight: 1000 Defense: 9 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 View: 1422 Refineable: true Script: | if ((eaclass()&EAJ_UPPERMASK) == EAJ_KNIGHT) bonus2 bAddMonsterDropItemGroup,IG_RUNE_CRAFT_MATERIALS,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_CRUSADER) bonus2 bAddMonsterDropItemGroup,IG_JUICE,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_PRIEST) bonus2 bAddMonsterDropItem,523,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_MONK) bonus2 bAddMonsterDropItem,605,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_WIZARD) bonus2 bAddMonsterDropItemGroup,IG_GEMSTONE,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_SAGE) bonus2 bAddMonsterDropItemGroup,IG_ELEMENTAL_CONVERTER,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_ASSASSIN) bonus2 bAddMonsterDropItemGroup,IG_POISONS,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_ROGUE || (eaclass()&EAJ_UPPERMASK) == EAJ_SUPER_NOVICE) bonus2 bAddMonsterDropItem,23660,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_HUNTER || (eaclass()&EAJ_UPPERMASK) == EAJ_BARDDANCER) bonus2 bAddMonsterDropItemGroup,IG_QUIVER,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_BLACKSMITH) bonus2 bAddMonsterDropItemGroup,IG_BLACKSMITH,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_ALCHEMIST) bonus2 bAddMonsterDropItemGroup,IG_POTION_CRAFT_MATERIALS,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_NINJA) bonus2 bAddMonsterDropItemGroup,IG_KUNAI_BOX,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_GUNSLINGER) bonus2 bAddMonsterDropItemGroup,IG_BULLET_CASE,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_SOUL_LINKER) bonus2 bAddMonsterDropItemGroup,IG_SOUL_LINKER,100; else if ((eaclass()&EAJ_UPPERMASK) == EAJ_STAR_GLADIATOR) bonus2 bAddMonsterDropItemGroup,IG_ELEMENTAL_STONES,100; else bonus2 bAddMonsterDropItem,522,100; - Id: 19109 AegisName: Valhalla_Idol Name: Valhalla Idol Type: Armor Weight: 300 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1423 Script: | bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true); UnEquipScript: | hateffect(HAT_EF_VALHALLA_IDOL,false); - Id: 19110 AegisName: Valhalla_Idol_ Name: Valhalla Idol Type: Armor Defense: 2 Weight: 300 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1423 Script: | bonus bMaxSP,50; bonus4 bAutoSpellWhenHit,"MG_SAFETYWALL",10,50,0; hateffect(HAT_EF_VALHALLA_IDOL,true); UnEquipScript: | hateffect(HAT_EF_VALHALLA_IDOL,false); - Id: 19111 AegisName: Laser_Of_Eagle Name: Laser of Eagle Type: Armor Weight: 400 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1424 Script: | bonus bDex,2; bonus bLongAtkRate,10; bonus5 bAutoSpell,"PR_LEXAETERNA",1,50,BF_LONG,1; /*TODO: Chance to transform become Shechil while attacking.*/ - Id: 19112 AegisName: Tengu_Scroll Name: Tengu Scroll Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 40 View: 1445 Script: | bonus2 bHPDrainRate,30,5; - Id: 19113 AegisName: Gemini_Eyes Name: Gemini-S58 Eyes Type: Armor Weight: 100 Jobs: All: true Summoner: false Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1456 Script: | if (readparam(bAgi) >= 90) .@val = 30; bonus2 bResEff,Eff_Silence,10+.@val; bonus2 bSubSkill,"LG_RAYOFGENESIS",30; bonus2 bSubSkill,"SO_PSYCHIC_WAVE",30; - Id: 19114 AegisName: Sting_Silk_Ribbon Name: Sting Silk Ribbon Type: Armor Buy: 20 Weight: 300 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1457 Script: | bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Earth,20; if (getrefine()>4) { bonus2 bSubSize,Size_All,2; } if (getrefine()>6) { bonus2 bSubSize,Size_All,3; } - Id: 19115 AegisName: Republic_Hat Name: Republic Hat Type: Armor Weight: 400 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1458 Script: | .@r = getrefine(); .@val = 6; if (.@r >= 7) { .@val += 2; } if (.@r >= 9) { .@val += 4; } bonus bLongAtkRate,.@val; - Id: 19116 AegisName: Red_Baby_Dragon Name: Red Baby Dragon Type: Armor Weight: 700 Range: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1463 Script: | .@r=getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",(.@r>=8?45:(.@r>=6?30:15)); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",(.@r>=8?45:(.@r>=6?30:15)); - Id: 19117 AegisName: Poring_Sunglasses_K Name: Poring Sunglasses Type: Armor Weight: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 954 Script: | bonus2 bDropAddRace,RC_All,5; bonus2 bExpAddRace,RC_All,5; - Id: 19118 AegisName: Poring_Sunglasses_K_ Name: Poring Sunglasses Type: Armor Weight: 10 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 954 Script: | bonus2 bDropAddRace,RC_All,4; bonus2 bExpAddRace,RC_All,4; - Id: 19119 AegisName: Toughen_Time_Keeper_Hat Name: Enhanced Time Keeper Hat Type: Armor View: 240 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,2; bonus bVariableCastrate,-5; bonus bMaxHP,500; bonus bMaxSP,100; bonus2 bHPDrainRate,30,3+(.@r/3); bonus2 bSPDrainRate,10,1+(.@r/4); - Id: 19125 AegisName: Cylinder_Hairband Name: Cylinder Hairband Type: Armor Buy: 20 Weight: 300 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1477 Script: | bonus bStr,5; bonus bInt,5; bonus2 bVariableCastrate,"GN_CARTCANNON",-100; bonus2 bSkillUseSP,"GN_CARTCANNON",30; bonus2 bSkillUseSP,"GN_CART_TORNADO",5; bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillAtk,"GN_CART_TORNADO",5; if (getrefine()>=5) { bonus2 bSkillAtk,"GN_CARTCANNON",20; bonus2 bSkillAtk,"GN_CART_TORNADO",10; } if (getrefine()>=8) { bonus2 bSkillAtk,"GN_CARTCANNON",30; bonus2 bSkillAtk,"GN_CART_TORNADO",20; } - Id: 19126 AegisName: Shadow_Booster_ Name: Shadow Booster Type: Armor Buy: 10 Weight: 300 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 873 Script: | bonus bAspd,1; bonus bDelayrate,-1; - Id: 19127 AegisName: Zherlthsh_Mask_ Name: Zealotus Mask Type: Armor View: 200 Buy: 20 Weight: 400 Defense: 3 Slots: 1 Jobs: All: true Novice: false Locations: Head_Top: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus2 bSubRace,RC_DemiHuman,5; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Human,5; - Id: 19128 AegisName: Ifrit's_Ear_ Name: Ears Of Ifrit Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 422 Script: | bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bSkillAtk,"SM_BASH",4; bonus2 bSkillAtk,"SM_MAGNUM",4; bonus2 bSubEle,Ele_Water,-3; bonus2 bSubEle,Ele_Fire,3; bonus bMdef,3; bonus bStr,1; bonus bInt,1; - Id: 19129 AegisName: Chick_Hat_ Name: Chick Hat Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 View: 311 Script: | bonus bLuk,2; bonus bMaxHP,50; bonus bMaxSP,50; skill "TF_DOUBLE",2; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Brute,3; bonus2 bSubRace,RC_Player_Doram,3; - Id: 19130 AegisName: Magic_Eyes_ Name: Magic Eyes Type: Armor Buy: 20 Weight: 300 Defense: 3 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 54 Refineable: true View: 209 Script: | bonus bMdef,5; bonus bVariableCastrate,-10; - Id: 19131 AegisName: Radio_Antenna_ Name: Radio Antenna Type: Armor Weight: 1500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 347 Script: | bonus bMdef,5; bonus bCritical,5; bonus bFlee,5; skill "MG_LIGHTNINGBOLT",1; bonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1; - Id: 19132 AegisName: Masquerade_ Name: Masquerade Type: Armor Buy: 20 Weight: 100 Slots: 1 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: 19133 AegisName: Odin_Mask_ Name: Odin's Mask Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 480 Script: | bonus2 bSubClass,Class_Boss,2; - Id: 19134 AegisName: Whikebain_Ears_K Name: Wickebine's Black Cat Ears Type: Armor Buy: 20 Weight: 200 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 368 Script: | bonus bFlee,10; bonus bCritAtkRate,10; autobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_STEAL; }"; - Id: 19135 AegisName: Spirit_Of_Chung_E Name: Spirit of Green Maiden Type: Armor View: 882 Buy: 20 Weight: 10 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; bonus bMaxHPrate,2*(.@r/4); bonus bMaxSPrate,2*(.@r/4); if (.@r>=9) { bonus bHPrecovRate,40; bonus bSPrecovRate,40; } if (.@r>=12) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; } autobonus "{ bonus bCritAtkRate,30; bonus bMatkRate,30; }",1,5000,BF_WEAPON|BF_MAGIC,"{ active_transform 1519,5000; }"; - Id: 19136 AegisName: Spirit_Of_Chung_E_ Name: Spirit of Green Maiden Type: Armor View: 882 Buy: 20 Weight: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; bonus bMaxHPrate,(.@r/4); bonus bMaxSPrate,(.@r/4); if (.@r>=9) { bonus bHPrecovRate,40; bonus bSPrecovRate,40; } if (.@r>=12) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; } autobonus "{ bonus bCritAtkRate,30; bonus bMatkRate,30; }",1,5000,BF_WEAPON|BF_MAGIC,"{ active_transform 1519,5000; }"; - Id: 19137 AegisName: Strawberry_In_Mouth_ Name: Strawberry Mouth Guard Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 861 Script: | bonus bVit,2; bonus bLongAtkDef,5; bonus bShortWeaponDamageReturn,5; if (BaseLevel>=100) { bonus bMaxHP,2000; } else { bonus bMaxHP,200; } - Id: 19138 AegisName: SeraphimCoronet Name: Seraphim Coronet Type: Armor Buy: 20 Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1487 Script: | bonus bStr,2; .@int = readparam(bInt); bonus bBaseAtk,(.@int/8)*5; bonus bHealPower,.@int/8; bonus bVariableCastrate,.@int/8; if (.@int>=108) { bonus bBaseAtk,50; bonus bHealPower,5; bonus bVariableCastrate,4; } if (.@int>=120) { bonus bBaseAtk,125; bonus bHealPower,10; bonus bVariableCastrate,6; } - Id: 19139 AegisName: SurviveOrb Name: Survivor's Orb Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 1488 Script: | skill "TF_HIDING",1; bonus2 bAddClass,Class_All,2; bonus bMatkRate,2; bonus bVariableCastrate,-3; - Id: 19140 AegisName: Squirrel_Ear_Hat Name: Squirrel Ears Hood Hat Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1486 Script: | .@r = getrefine(); bonus bAspd,1; bonus bCriticalLong,5; bonus bCritAtkRate,10; bonus2 bIgnoreDefRaceRate,RC_All,10; if (.@r > 4) { bonus bAspd,1; bonus bCriticalLong,10; bonus bCritAtkRate,2; bonus2 bIgnoreDefRaceRate,RC_All,20; } if (.@r > 6) { bonus bAspd,1; bonus bCriticalLong,15; bonus bCritAtkRate,6; bonus2 bIgnoreDefRaceRate,RC_All,30; } if (.@r > 8) { bonus bAspd,1; bonus bCriticalLong,20; bonus bCritAtkRate,12; bonus2 bIgnoreDefRaceRate,RC_All,40; autobonus "{ bonus bCritAtkRate,100; }",70,5000; } - Id: 19141 AegisName: Tha_Maero_Mask_J Name: Maero Mask Type: Armor Buy: 20 Weight: 200 Defense: 6 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 666 Script: | bonus bMdef,8; bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; - Id: 19142 AegisName: Droop_Gunslinger_J Name: Drooping Rebellion Type: Armor Buy: 20 Weight: 500 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1444 Script: | bonus bLongAtkRate,10; - Id: 19143 AegisName: Poring_Balloon Name: Poring Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1426 Script: | bonus2 bAddMonsterDropItem,909,2000; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19144 AegisName: Felock_Cap_ Name: Ferlock's Hat Type: Armor Buy: 20 Weight: 1000 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 View: 1489 - Id: 19145 AegisName: Whistle Name: Whistle Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1478 Script: | bonus bBaseAtk,10; bonus bMatk,10; bonus bHPGainValue,10; bonus bSPGainValue,3; - Id: 19146 AegisName: Marin_Balloon Name: Marin Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1430 Script: | bonus4 bAutoSpell,"WZ_QUAGMIRE",1,5,0; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19147 AegisName: Drops_Balloon Name: Drops Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1427 Script: | bonus bDex,2; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19148 AegisName: SantaPoring_Balloon Name: Santa Poring Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1428 Script: | bonus2 bAddItemGroupHealRate,IG_Candy,200; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19149 AegisName: Poporing_Balloon Name: Poporing Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1429 Script: | bonus2 bAddEff,Eff_Poison,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19150 AegisName: Metaling_Balloon Name: Metalring Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1431 Script: | bonus3 bAutoSpell,"RG_STRIPWEAPON",1,50; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19151 AegisName: Deviling_Balloon Name: Devilring Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1434 Script: | bonus2 bAddEff,Eff_Curse,500; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19152 AegisName: Angeling_Balloon Name: Angelring Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1435 Script: | bonus2 bAddItemHealRate,504,100; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19153 AegisName: Ghostring_Balloon Name: Ghostring Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1436 Script: | bonus3 bAutoSpell,"MG_SOULSTRIKE",5,10; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19154 AegisName: Archangeling_Balloon Name: Arch Angelring Balloon Type: Armor Buy: 20 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1437 Script: | skill "ALL_RESURRECTION",1; bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19155 AegisName: Demons_Eye Name: Demon's Eyes Type: Armor Buy: 20 Weight: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 60 View: 1490 Script: | bonus2 bSubRace,RC_Player_Human,3; bonus bFlee2,2; - Id: 19156 AegisName: Lunar_Rainbow Name: Lunar Rainbow Type: Armor Buy: 20 Weight: 200 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true View: 704 Script: | bonus bAgi,3; bonus bMdef,10; bonus bMatk,(10*getrefine()); - Id: 19157 AegisName: Droop_Gunslinger Name: Drooping Rebellion Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1444 Script: | bonus bAllStats,1; bonus bUseSPrate,-10; .@r = getrefine(); if (.@r >= 9) { bonus bAspd,1; } if (.@r >= 12) { bonus bSpeedRate,25; } bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19158 AegisName: C_Gemini_Eyes Name: Costume GeminiS58 Eyes Blue Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1456 - Id: 19159 AegisName: Barrel_Helm Name: Barrel Helm Type: Armor Buy: 20 Weight: 420 Defense: 59 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1498 Script: | bonus bVit,5; bonus bHPrecovRate,-10; .@r = getrefine(); if (.@r >= 7) { bonus bDef,100; skill "CR_AUTOGUARD",1; } if (.@r >= 8) { bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; if (BaseJob == Job_SuperNovice) { skill "CR_AUTOGUARD",5; } } - Id: 19162 AegisName: Scuba_Mask_K Name: Scuba Mask Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 400 Script: | bonus bBaseAtk,5; bonus bMatk,5; - Id: 19163 AegisName: CatharinaPawnBrad60 Name: Catherina Von Blood Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1527 Script: | bonus bHPGainValue,500; bonus bLongHPGainValue,500; bonus bMagicHPGainValue,500; bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; if (getpetinfo(PETINFO_EGGID) == 9055) { if (getpetinfo(PETINFO_INTIMATE) >= PET_INTIMATE_LOYAL) .@factor = 2; else .@factor = 1; bonus2 bHPRegenRate,(.@factor*500),5000; bonus2 bSPRegenRate,(.@factor*20),5000; } UnEquipScript: | heal -5000,-500; - Id: 19164 AegisName: Para_Team_Hat100 Name: Awakened Eden Group Hat I Type: Armor Buy: 20 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1529 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | autobonus "{ bonus bBaseAtk,15; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,15; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if (.@r >= 7) { bonus bBaseAtk,10; bonus bMatk,10; if (.@r >= 9) { bonus bAllStats,1; if (.@r >= 12) { bonus2 bRegenPercentSP,1,10000; } } } - Id: 19165 AegisName: Para_Team_Hat160 Name: Awakened Eden Group Hat II Type: Armor Buy: 20 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true View: 1530 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | autobonus "{ bonus bBaseAtk,30; }",70,5000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; autobonus "{ bonus bMatk,30; }",50,5000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; .@r = getrefine(); if (.@r >= 7) { bonus bBaseAtk,15; bonus bMatk,15; if (.@r >= 9) { bonus bAllStats,2; if (.@r >= 12) { bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; } } } - Id: 19166 AegisName: RoCelebrationHat Name: RO Celebration Hat Type: Armor Buy: 20 Weight: 140 Defense: 14 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 14 Refineable: true View: 1541 Script: | bonus bMaxSP,140; bonus2 bSPRegenRate,6,4000; - Id: 19168 AegisName: Kafra_Employee_Band Name: Kafra Staff Headband Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 106 Script: | bonus2 bSubEle,Ele_All,5; .@r = getrefine()*10; bonus2 bAddMonsterDropItem,23177,10+.@r; bonus2 bAddMonsterDropItem,7059,10+.@r; bonus2 bAddMonsterDropItem,7060,10+.@r; - Id: 19169 AegisName: K_King_Tiger_Doll_Hat Name: "[Katsua]Tiger King Doll Hat" Type: Armor View: 495 Buy: 20 Weight: 400 Defense: 6 Slots: 1 Jobs: All: true Novice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bStr,2; bonus bDex,2; bonus2 bAddRace,RC_Brute,10; autobonus "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*"+.@r+"; }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; }"; autobonus2 "{ bonus2 bSPLossRate,5,1000; bonus bBaseAtk,25*"+.@r+"; }",3*.@r,3000,BF_NORMAL,"{ active_transform 1115,3000; }"; - Id: 19170 AegisName: Guardian_Processor Name: Guardian Processor Type: Armor Buy: 20 Weight: 300 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 1552 Refineable: true Script: | .@bonus = (getrefine() >= 7 ? 12 : 10); bonus2 bSubRace,RC_DemiHuman,.@bonus; bonus2 bSubRace,RC_Player_Human,.@bonus; - Id: 19171 AegisName: Magician_Knithat Name: Magician Knit Hat Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 854 Script: | .@r = getrefine(); bonus bMdef,10; bonus2 bAddRace,RC_Undead,5; bonus2 bMagicAddRace,RC_Undead,5; bonus2 bSubRace,RC_Undead,2; bonus bSPGainValue,5; bonus bLongSPGainValue,5; bonus bMagicSPGainValue,5; if (.@r>=7) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,3; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } if (.@r>=9) { bonus bMdef,5; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; bonus2 bSubRace,RC_Undead,5; bonus bSPGainValue,10; bonus bLongSPGainValue,10; bonus bMagicSPGainValue,10; } - Id: 19172 AegisName: PoPe_Osuwari_Head Name: Pope Osuwari Head Type: Armor Buy: 1000 Weight: 400 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1553 Script: | bonus bInt,2; bonus bDelayrate,-10; .@r = getrefine(); if (.@r>=7) bonus bDelayrate,-10; if (.@r>=9) bonus bDelayrate,-10; - Id: 19173 AegisName: Luwmin_Ice Name: Floating Ice Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 90 View: 1562 Script: | bonus2 bAddItemHealRate,536,100; - Id: 19174 AegisName: Flying_Drone Name: Flying Drone Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 90 View: 1561 Script: | skill "MC_OVERCHARGE",9; bonus3 bAddMonsterIdDropItem,25212,2476,10000; bonus3 bAddMonsterIdDropItem,6719,3073,10000; bonus3 bAddMonsterIdDropItem,22567,2942,10000; bonus3 bAddMonsterIdDropItem,22567,3000,10000; bonus3 bAddMonsterIdDropItem,22567,3029,10000; bonus3 bAddMonsterIdDropItem,22567,3097,10000; bonus3 bAddMonsterIdDropItem,6919,3450,10000; bonus3 bAddMonsterIdDropItem,6919,3473,10000; /*Todo: When Defeat Realized Amdarais Drop Temporal Crystal (6607) 100%*/ - Id: 19175 AegisName: Jack_Head Name: Pumpkin Head Type: Armor Buy: 20 Weight: 310 Defense: 10 Slots: 1 Locations: Head_Top: true Head_Mid: true Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1415 - Id: 19176 AegisName: Fallen_Angel_Blessing_ Name: Fallen Angel Blessing Type: Armor Buy: 20 Weight: 200 Defense: 1 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 10 View: 1250 Script: | bonus2 bAddRace,RC_Angel,5; bonus2 bSubRace,RC_Angel,5; - Id: 19177 AegisName: Elemental_Crown_K Name: Elemental Crown Type: Armor Weight: 500 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1219 Script: | .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; - Id: 19178 AegisName: Elemental_Crown_K_ Name: Elemental Crown Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1219 Script: | .@r = getrefine(); bonus bDex,3 + (.@r/2); bonus bLongAtkRate,4; - Id: 19179 AegisName: Rabbit_Magic_Hat_ Name: Magic Rabit Hat Type: Armor Weight: 800 Defense: 4 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 497 Script: | bonus bDex,1; bonus bAgi,1; bonus bMdef,1; bonus bAspdRate,5; bonus bDelayrate,-4; - Id: 19180 AegisName: Anubis_Helm_ Name: Anubis Helm Type: Armor Buy: 20 Defense: 8 Slots: 1 Locations: Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 65 View: 485 Script: | bonus bMdef,5; bonus2 bSubClass,Class_Boss,10; bonus bHealPower2,10; bonus bAddItemHealRate,10; - Id: 19181 AegisName: New_Wave_Sunglasses_ Name: New Wave Sunglasses Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 30 View: 856 Script: | bonus bDelayrate,-5; - Id: 19185 AegisName: Blackhand_Of_Fate Name: Dark Hand Type: Armor Buy: 20 Weight: 800 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1310 Script: | .@r = getrefine(); bonus bAllStats,10; bonus bUseSPrate,-20; bonus2 bSubRace,RC_DemiHuman,5; bonus bAtkRate,.@r; bonus bMatkRate,.@r; - Id: 19189 AegisName: Racing_C_Mecha Name: Racing Cap (Mechanic) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*((.@r/3)); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("BS_OVERTHRUST"); if (.@r>=11) { skill "TF_DOUBLE",5; } - Id: 19190 AegisName: Racing_C_Gene Name: Racing Cap (Geneticist) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"GN_CART_TORNADO",5*getskilllv("AM_AXEMASTERY"); if (.@r>=11) bonus3 bAutoSpell,"GN_CART_TORNADO",max(2,getskilllv("GN_CART_TORNADO")),50; /* Unknow Rates */ - Id: 19191 AegisName: Racing_C_Cross Name: Racing Cap (Guillotine Cross) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*getskilllv("AS_LEFT"); if (.@r>=11) autobonus "{ bonus bCritAtkRate,20; }",50,5000,BF_WEAPON; /* Unknow Rate and Effect */ - Id: 19192 AegisName: Racing_C_Chaser Name: Racing Cap (Shadow Chaser) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bMatk,5*getskilllv("RG_PLAGIARISM"); if (.@r>=11) bonus3 bAutoSpell,"HW_MAGICPOWER",5,30; /* Unknow Rates */ - Id: 19193 AegisName: Racing_C_Warlock Name: Racing Cap (Warlock) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillCooldown,"WL_TETRAVORTEX",-500*(getskilllv("WZ_METEOR")+getskilllv("WZ_VERMILION")); if (.@r>=11) bonus2 bFixedCastrate,"HW_MAGICPOWER",-50; - Id: 19194 AegisName: Racing_C_Sorcer Name: Racing Cap (Sorcerer) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillAtk,"MG_THUNDERSTORM",5*getskilllv("SA_AUTOSPELL"); bonus2 bSkillAtk,"MG_FIREBALL",5*getskilllv("SA_AUTOSPELL"); } if (.@r>=11) { bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; } - Id: 19195 AegisName: Racing_C_Rune Name: Racing Cap (Rune Knight) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,5*(getskilllv("KN_TWOHANDQUICKEN")/2); if (.@r>=11) { bonus bUnbreakableWeapon; skill "TF_DOUBLE",5; } - Id: 19196 AegisName: Racing_C_Royal Name: Racing Cap (Royal Guard) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"LG_RAGEBURST",10*getskilllv("KN_SPEARMASTERY"); if (.@r>=11) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1000; - Id: 19197 AegisName: Racing_C_Bishop Name: Racing Cap (Archbishop) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",10*getskilllv("PR_MACEMASTERY"); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",10*getskilllv("PR_MACEMASTERY"); /* if (.@r>=11) bonus3 bAutoSpell,"AB_ADORAMUS",max(5,getskilllv("AB_ADORAMUS")),50; Unknow Rate and Blue Gemstone consume mechanic */ - Id: 19198 AegisName: Racing_C_Sura Name: Racing Cap (Sura) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillUseSP,"SR_KNUCKLEARROW",getskilllv("MO_COMBOFINISH"); if (.@r>=11) bonus2 bSkillAtk,"SR_KNUCKLEARROW",30; - Id: 19199 AegisName: Racing_C_Ranger Name: Racing Cap (Ranger) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("HT_STEELCROW"); if (.@r>=11) bonus bDelayrate,-15; - Id: 19200 AegisName: Racing_C_Mins Name: Racing Cap (Minstrel) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("BA_MUSICALLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/ - Id: 19201 AegisName: Racing_C_Wander Name: Racing Cap (Wanderer) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("DC_DANCINGLESSON"); if (.@r>=11) bonus3 bAutoSpell,"WM_REVERBERATION",max(2,getskilllv("WM_REVERBERATION")),50; /* Unknow rates*/ - Id: 19202 AegisName: Racing_C_Gunner Name: Racing Cap (Gunslinger) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-2000*getskilllv("GS_PIERCINGSHOT"); bonus2 bSkillCooldown,"RL_D_TAIL",-200*getskilllv("GS_GROUNDDRIFT"); } if (.@r>=11) bonus2 bSkillCooldown,"RL_C_MARKER",-1000; - Id: 19203 AegisName: Racing_C_Ninja Name: Racing Cap (Ninja) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bLongAtkRate,getskilllv("NJ_HUUMA"); if (.@r>=11) bonus2 bSkillAtk,"KO_HUUMARANKA",30; - Id: 19204 AegisName: Racing_C_Super Name: Racing Cap (Super Novice) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bCritAtkRate,10*(getskilllv("TF_DOUBLE")/2); if (.@r>=11) { bonus bAspd,1; bonus bBaseAtk,20; } - Id: 19205 AegisName: Racing_C_Doram Name: Racing Cap (Summoner) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,5*(.@r/2); bonus bMatk,5*.@r/2; bonus bAspdRate,2*(.@r/3); if (.@r>=8) { bonus2 bSkillCooldown,"SU_SVG_SPIRIT",-4000*getskilllv("SU_LUNATICCARROTBEAT"); bonus2 bSkillCooldown,"SU_NYANGGRASS",-8000*getskilllv("SU_CN_METEOR"); bonus2 bSkillCooldown,"SU_BUNCHOFSHRIMP",-4000*getskilllv("SU_FRESHSHRIMP"); } if (.@r>=11) bonus bDelayrate,-15; - Id: 19209 AegisName: Nurse_Cap_IL Name: Illusion Nurse Cap Type: Armor Buy: 20 Weight: 100 Defense: 4 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 64 Script: | .@r = getrefine(); bonus bInt,(1+(.@r/2)); bonus bHealPower,(3*(.@r/2)); - Id: 19210 AegisName: Apple_Of_Archer_IL Name: Illusion Apple of Archer Type: Armor Buy: 20 Weight: 200 Defense: 1 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 72 Script: | bonus bDex,(3+(getrefine()/2)); - Id: 19211 AegisName: Magical_Feather_K Name: Magical Feather Type: Armor View: 1279 Buy: 20 Weight: 30 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) .@b = 10; else .@b = 5; bonus2 bMagicAddEle,Ele_Dark,.@b; bonus2 bMagicAddEle,Ele_Poison,.@b; bonus2 bMagicAddEle,Ele_Holy,.@b; bonus2 bMagicAddEle,Ele_Ghost,.@b; bonus2 bMagicAddEle,Ele_Undead,.@b; bonus2 bAddEle,Ele_Dark,.@b; bonus2 bAddEle,Ele_Poison,.@b; bonus2 bAddEle,Ele_Holy,.@b; bonus2 bAddEle,Ele_Ghost,.@b; bonus2 bAddEle,Ele_Undead,.@b; if (.@r>=9) { bonus2 bSubEle,Ele_Dark,7; bonus2 bSubEle,Ele_Poison,7; bonus2 bSubEle,Ele_Holy,7; bonus2 bSubEle,Ele_Ghost,7; bonus2 bSubEle,Ele_Undead,7; } if (.@r>=12) { .@val = 1; } bonus5 bAutoSpell,"AL_HOLYLIGHT",1+.@val,10,BF_SHORT|BF_WEAPON,1; bonus5 bAutoSpell,"AL_HOLYLIGHT",1+.@val,5,BF_LONG|BF_WEAPON,1; - Id: 19212 AegisName: Malangdo_Pirate Name: Malangdo Pirate Hat Type: Armor Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 1587 Script: | .@r = getrefine(); bonus2 bAddRace2,RC2_Malangdo,15; bonus2 bMagicAddRace2,RC2_Malangdo,15; bonus2 bSubRace2,RC2_Malangdo,15; bonus2 bSubEle,Ele_Wind,10; if (.@r >= 7) { bonus2 bAddRace2,RC2_Malangdo,15; bonus2 bMagicAddRace2,RC2_Malangdo,15; bonus2 bSubRace2,RC2_Malangdo,15; } if (.@r >= 8) bonus2 bSubEle,Ele_Wind,15; if (.@r >= 9) { bonus2 bAddRace2,RC2_Malangdo,20; bonus2 bMagicAddRace2,RC2_Malangdo,20; bonus2 bSubRace2,RC2_Malangdo,20; } - Id: 19217 AegisName: TW_Cock_Hat Name: Cock Hat Type: Armor View: 1296 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Low: true Head_Mid: true Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,8+(.@r/3); bonus2 bAddRace,RC_All,3+(.@r/3); bonus bMatkRate,3+(.@r/3); - Id: 19218 AegisName: Time_Keeper_Glasses Name: Time Keeper Glasses Type: Armor View: 47 Locations: Head_Mid: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxSP,50; - Id: 19221 AegisName: Golden_Angel_Band_TH Name: Golden Angel Hairband Type: Armor Weight: 10 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1104 Script: | .@r = getrefine(); if (readparam(bStr) >= 70) { bonus bBaseAtk,5; if (.@r >= 7) bonus bBaseAtk,10; } if (readparam(bInt) >= 70) { bonus bMatk,5; if (.@r >= 7) bonus bMatk,10; } if (readparam(bVit) >= 70) { bonus bMaxHPrate,2; bonus bMaxSPrate,2; if (.@r >= 7) { bonus bMaxHPrate,2; bonus bMaxSPrate,2; } } if (readparam(bAgi) >= 70) { bonus bAspdRate,2; if (.@r >= 7) bonus bAspdRate,3; } if (readparam(bDex) >= 70) { bonus bLongAtkRate,2; if (.@r >= 7) bonus bLongAtkRate,3; } if (readparam(bLuk) >= 70) { bonus bCritAtkRate,2; if (.@r >= 7) bonus bCritAtkRate,3; } - Id: 19223 AegisName: Cap_IL Name: Illusion Cap Type: Armor Weight: 400 Defense: 15 Slots: 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: Head_Top: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true View: 14 Script: | bonus bAtkRate,1; bonus bBaseAtk,(2*getrefine()); - Id: 19238 AegisName: PoringTownOnion Name: Poring Village Leek Type: Armor View: 824 Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 Script: | autobonus "{ bonus bSpeedRate,25; }",50,5000,BF_NORMAL,"{ showscript \"Smokie-formation!\"; active_transform 1056,5000; /*SMOKIE*/ }"; - Id: 19239 AegisName: PoringTownCarrot Name: Poring Village Carrot Type: Armor View: 829 Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 30 Script: | autobonus "{ bonus bSpeedRate,25; }",50,5000,BF_NORMAL,"{ showscript \"Lunatic-formation!\"; active_transform 1063,5000; /*LUNATIC*/ }"; - Id: 19240 AegisName: Toy_Syringe_K Name: Toy Syringe Type: Armor View: 842 Buy: 20 Weight: 100 Defense: 3 Locations: Head_Low: true ArmorLevel: 1 Refineable: true Script: | bonus2 bAddItemHealRate,11573,100; bonus2 bAddItemHealRate,547,100; - Id: 19241 AegisName: Magical_Booster_K Name: Magical Booster Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 Refineable: true View: 873 - Id: 19242 AegisName: Cat_Lace_Hairband_K Name: Costume Neko Headress Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 816 Script: | bonus bAllStats,1; bonus bAspdRate,5; .@r = getrefine(); if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=12) { bonus bNoCastCancel; } if (BaseLevel>=100) { bonus2 bExpAddRace,RC_All,4; } else { bonus2 bExpAddRace,RC_All,10; } - Id: 19243 AegisName: Blue_Rear_Ribbon Name: Indigo Rear Ribbon Type: Armor View: 1492 Buy: 20 Weight: 100 Defense: 8 Locations: Head_Low: true ArmorLevel: 1 Script: | bonus2 bExpAddRace,RC_All,5; bonus2 bDropAddRace,RC_All,5; - Id: 19244 AegisName: Necklace_Rosary_K Name: Rosario Necklace Type: Armor View: 1471 Buy: 20 Weight: 300 Defense: 12 Locations: Head_Low: true ArmorLevel: 1 Script: | bonus bHealPower,5; - Id: 19245 AegisName: Crimson_Booster Name: Crimson Booster Type: Armor View: 1355 Buy: 3000000 Weight: 300 Defense: 10 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 - Id: 19246 AegisName: Royalguard_Necklace Name: Royal Guard Necklace Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 1629 Script: | bonus bAspd,1; - Id: 19247 AegisName: Fancy_Flower_IL Name: Illusion Fancy Flower Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 120 View: 4 Refineable: true Script: | bonus bMatkRate,1; bonus bMatk,(2*getrefine()); - Id: 19249 AegisName: Spell_Circuit Name: Spell Circuit Type: Armor View: 1301 Buy: 20 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,(.@r/2)*20; if (.@r>6) { bonus bVariableCastrate,-10; } if (.@r>8) { bonus2 bMagicAtkEle,Ele_Dark,10; bonus2 bMagicAtkEle,Ele_Neutral,10; } if (.@r>10) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; } .@val = max(min(.@r-15,5),0); bonus bFixedCast,-.@val*100; - Id: 19256 AegisName: Mobile_BeginnerMark Name: Beginner Mark Type: Armor View: 1348 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMax: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; bonus2 bDropAddRace,RC_All,10; - Id: 19261 AegisName: 2017RTCSymbole Name: 2017 RTC Symbols Type: Armor View: 1650 Weight: 300 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_DemiHuman,6+(min(15,.@r)/3); bonus2 bSubRace,RC_Player_Human,6+(min(15,.@r)/3); bonus2 bSubRace,RC_Player_Doram,6+(min(15,.@r)/3); if (.@r>=9) bonus bMdef,6; - Id: 19262 AegisName: Jirant_Circlet Name: Ancient Dragon Crown Type: Armor Buy: 20 Weight: 600 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1644 Script: | .@r = getrefine(); bonus bMdef,15; bonus2 bResEff,Eff_Fear,1000*.@r; bonus bMatkRate,.@r; bonus bVariableCastrate,-.@r; if (.@r>=7) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } if (.@r>=9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } if (.@r>=10) { bonus bInt,(readparam(bInt)+readparam(bDex))/10; bonus bDex,(readparam(bInt)+readparam(bDex))/10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Sage) { skill "HW_GANBANTEIN",1; } } - Id: 19263 AegisName: General_Helmet_ Name: General's Helm Type: Armor View: 729 Buy: 20 Weight: 800 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*15; if (.@r>6) { bonus bAspdRate,10; } if (.@r>8) { bonus bAspd,1; bonus bAtkRate,5; } if (.@r>10) { bonus bCritAtkRate,15; } .@val = max(min(.@r-15,5),0); bonus bFixedCast,-.@val*100; - Id: 19264 AegisName: GoldFish_Hat Name: Gold Fish Head Hat Type: Armor View: 1645 Buy: 20 Weight: 400 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); if (.@r>8) { bonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,10,1; } if (.@r<6) { autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",10,60000,BF_MAGIC,"{ specialeffect2 EF_ASPERSIO; }"; } else { autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",(10+(.@r*2)),60000,BF_MAGIC,"{ specialeffect2 EF_ASPERSIO; }"; } - Id: 19265 AegisName: Smoky_TransformHat Name: Smokie Transformation Leaf Type: Armor Weight: 600 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1646 Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_All,.@r; autobonus "{ .@r = getrefine(); bonus3 bAutoSpell,\"MG_COLDBOLT\",2,50; bonus3 bAutoSpell,\"MG_FIREBOLT\",2,50; bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",2,50; bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",2,50; if (.@r>=7) { bonus3 bAutoSpell,\"WZ_FROSTNOVA\",5,40; if (.@r>=8) { bonus3 bAutoSpell,\"MG_THUNDERSTORM\",5,30; if (BaseLevel>100) { if (.@r>=9) { bonus3 bAutoSpell,\"WL_HELLINFERNO\",5,20; if (.@r>=10) { bonus3 bAutoSpell,\"WL_CHAINLIGHTNING\",3,10; } } } } } }",1,5000,BF_WEAPON,"{ active_transform 1056,5000; /*SMOKIE*/ }"; - Id: 19266 AegisName: Survive_Circlet_K Name: Survivor's Circlet Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1220 Script: | .@r = getrefine(); bonus bInt,3; bonus bMatk,10*(.@r/2)+(BaseLevel > 129 ? 50 : 0); if (.@r >= 10) { bonus bMatkRate,5; } - Id: 19267 AegisName: SurviveOrb_K Name: Survivor's Orb Type: Armor Weight: 300 Defense: 2 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1488 Script: | bonus bMdef,2; bonus bVariableCastrate,-2; - Id: 19268 AegisName: FaceWorm_Breath Name: Gigant Snake Breath Type: Armor View: 1050 Buy: 20 Weight: 300 Defense: 2 Locations: Head_Low: true ArmorLevel: 1 Script: | bonus2 bMagicAtkEle,Ele_Fire,1; - Id: 19269 AegisName: Angel_Of_Happiness_J Name: Happy Flapping Angel Wings Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 1251 Script: | .@r = getrefine(); .@a = 15; if (.@r >= 7) .@a += 15; if (.@r>=8) bonus2 bResEff,Eff_Stone,10000; if (.@r>=9) .@a += 20; bonus2 bAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bMagicAddRace2,RC2_CLOCKTOWER,.@a; bonus2 bSubRace2,RC2_CLOCKTOWER,.@a; bonus3 bAddMonsterIdDropItem,1061,1193,50; bonus3 bAddMonsterIdDropItem,1061,1275,50; bonus3 bAddMonsterIdDropItem,1061,2920,50; bonus3 bAddMonsterIdDropItem,1061,1016,50; bonus3 bAddMonsterIdDropItem,1061,1101,50; bonus3 bAddMonsterIdDropItem,1061,1102,50; bonus3 bAddMonsterIdDropItem,1061,2917,50; bonus3 bAddMonsterIdDropItem,1061,2916,50; bonus3 bAddMonsterIdDropItem,1061,1270,50; bonus3 bAddMonsterIdDropItem,1061,1269,50; bonus3 bAddMonsterIdDropItem,1061,1209,50; bonus3 bAddMonsterIdDropItem,1061,1378,50; bonus3 bAddMonsterIdDropItem,1061,1109,50; bonus3 bAddMonsterIdDropItem,1061,1111,50; bonus3 bAddMonsterIdDropItem,1061,1377,50; bonus3 bAddMonsterIdDropItem,1061,1205,50; bonus3 bAddMonsterIdDropItem,1061,1213,50; bonus3 bAddMonsterIdDropItem,1061,1131,50; bonus3 bAddMonsterIdDropItem,1061,1219,50; bonus3 bAddMonsterIdDropItem,1061,1191,50; bonus3 bAddMonsterIdDropItem,1061,1203,50; bonus3 bAddMonsterIdDropItem,1061,2919,50; bonus3 bAddMonsterIdDropItem,1061,2479,50; bonus3 bAddMonsterIdDropItem,1061,2478,50; bonus3 bAddMonsterIdDropItem,1061,1189,50; bonus3 bAddMonsterIdDropItem,1061,1686,50; bonus3 bAddMonsterIdDropItem,1061,1190,50; bonus3 bAddMonsterIdDropItem,1061,1087,50; bonus3 bAddMonsterIdDropItem,1061,1023,50; bonus3 bAddMonsterIdDropItem,1061,2923,50; bonus3 bAddMonsterIdDropItem,1061,2921,50; bonus3 bAddMonsterIdDropItem,1061,1216,50; bonus3 bAddMonsterIdDropItem,1061,1199,50; bonus3 bAddMonsterIdDropItem,1061,1195,50; bonus3 bAddMonsterIdDropItem,1061,1281,50; bonus3 bAddMonsterIdDropItem,1061,1215,50; bonus3 bAddMonsterIdDropItem,1061,1622,50; bonus3 bAddMonsterIdDropItem,1061,2918,50; bonus3 bAddMonsterIdDropItem,1061,3074,50; bonus3 bAddMonsterIdDropItem,1061,1204,50; bonus3 bAddMonsterIdDropItem,1061,1179,50; - Id: 19272 AegisName: Garden_Of_Eden Name: Garden of Eden Type: Armor Buy: 20 Weight: 400 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1653 Script: | .@r = getrefine(); bonus bInt,5; bonus bDex,5; bonus2 bIgnoreMdefRaceRate,RC_All,20; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_All,30; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=9) { bonus2 bIgnoreMdefRaceRate,RC_All,50; bonus bVariableCastrate,-15; } UnEquipScript: | sc_end SC_TELEKINESIS_INTENSE; - Id: 19273 AegisName: Gemini_RedEyes Name: Gemini S-58 Eyes (Red) Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1654 Script: | .@val = 100*(readparam(bVit)>89?50:10); bonus2 bResEff,Eff_Sleep,.@val; bonus2 bResEff,Eff_Stone,.@val; - Id: 19274 AegisName: OpenAir_Headset Name: Open Air Headset Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 90 View: 1655 Script: | bonus bDelayrate,-5; bonus bUseSPrate,-5; bonus bSPGainValue,5; bonus bMagicSPGainValue,5; bonus bLongSPGainValue,5; - Id: 19275 AegisName: Rental_Scuba_Mask Name: Rental Scuba Mask Type: Armor View: 400 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,20; bonus bBaseAtk,20; bonus2 bSubRace,RC_Fish,5; - Id: 19276 AegisName: Return_TW_1th_Hat Name: 1st Anniversary Commemorative Hat Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1667 Script: | .@r = getrefine(); bonus bCritical,5; if (.@r>=3) bonus bCritical,2; if (.@r>=6) bonus bCritical,3; if (.@r>=9) bonus bAspd,1; - Id: 19277 AegisName: Soda_In_Mouth Name: Soda in Mouth Type: Armor View: 1643 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 - Id: 19281 AegisName: Agenda_RobeJ Name: Agenda Robe Type: Armor Buy: 20 Weight: 800 Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,10; autobonus "{ .@r = getrefine(); bonus bMatkRate,.@r; }",3,10000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }"; - Id: 19282 AegisName: Consultation_RobeJ Name: Consultation Robe Type: Armor Buy: 20 Weight: 800 Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bFixedCastrate,-50; bonus bNoCastCancel; bonus bMatkRate,2*.@r; bonus2 bMagicAtkEle,Ele_Fire,2*.@r; - Id: 19283 AegisName: K_Heart_Wing_Hairband Name: "[Katsua]Heart Wings Hairband" Type: Armor View: 733 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bDelayrate,-5-3*(.@r/3); bonus bUseSPrate,-10-3*(.@r/3); - Id: 19284 AegisName: K_New_Wave_Sunglasses Name: "[Katsua]New Wave Sunglasses" Type: Armor View: 856 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Trade: NoDrop: true Script: | bonus bDelayrate,-10; - Id: 19285 AegisName: Helmet_Of_Siegfried_J Name: Siegfried's Helmet Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1055 Script: | .@r = getrefine(); bonus2 bSubClass,Class_Boss,5; bonus bUnbreakableHelm; if (.@r>=6) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,5; } if (.@r>=8) { bonus bFlee2,5; bonus2 bSubClass,Class_Boss,10; bonus bNoKnockback; } - Id: 19286 AegisName: IA_Choker Name: IA Choker Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 50 View: 1661 - Id: 19287 AegisName: C_Cat_Poring_Balloon Name: Costume Meowpoling Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1438 - Id: 19288 AegisName: C_Gigant_Helm Name: Costume Gigant Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1221 - Id: 19289 AegisName: C_Moon_Eyepatch Name: Costume Moon Eyepatch Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1370 - Id: 19290 AegisName: C_Elder_Devil_Horn Name: Costume Elder Devil Horn Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 757 - Id: 19291 AegisName: C_Shiba_Inu Name: Costume Shiba Inu Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1669 - Id: 19292 AegisName: C_Wildcat_Knit_Cap Name: Costume Smokie Knit Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1671 - Id: 19293 AegisName: C_SmartUnderRim_Glasses Name: Costume Under Rimmed Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1670 - Id: 19294 AegisName: C_CatEars_Cyber_HeadP_R Name: Costume Cyber Cat Ear Headphones (Red) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1668 - Id: 19295 AegisName: Red_Baby_Dragon_TW Name: Red Baby Dragon Type: Armor Weight: 700 Range: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1463 Script: | .@r=getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",((.@r>=10)?10:(.@r>=7?3:0)); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",((.@r>=10)?10:(.@r>=7?3:0)); bonus bAspd,((.@r>=10)?2:(.@r>=7?1:0)); - Id: 19296 AegisName: Classical_Fhat Name: Fancy Feather Hat Type: Armor View: 1381 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,7; } if (.@r>=9) { bonus bAtkRate,5; bonus bAspd,1; } if (.@r>=11) { bonus bLongAtkRate,5; } if (.@r>=10) { bonus bFixedCast,-100*(min((.@r-10),15)/1); } - Id: 19298 AegisName: Tatenasi_Helmet_TW Name: Sealed Tatenasi Helm Type: Armor View: 810 Weight: 1000 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus2 bSubEle,Ele_Neutral,5+(min(10,.@r-6)); bonus bMagicAtkDef,-5; if (.@r>=6) bonus3 bAutoSpellWhenHit,"LK_PARRYING",1,(min(10,.@r*10-50)); - Id: 19299 AegisName: Tree_Of_Sprout_JP Name: Tree Sprout Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 848 Script: | bonus bVariableCastrate,-5; - Id: 19300 AegisName: Dog_Officer Name: Dog Officer Type: Armor View: 1601 Weight: 400 Defense: 35 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); if (.@r>=7) { bonus bBaseAtk,30; } if (.@r>=9) { bonus bAtkRate,5; bonus bAspd,1; } if (.@r>=11) { bonus bCritAtkRate,3; bonus bLongAtkRate,3; } if (.@r>=10) { bonus bFixedCast,-100*(min((.@r-10),15)/1); } - Id: 19306 AegisName: Heart_Card_In_Mouth Name: Heart Card in Mouth Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 1679 Script: | bonus bCritAtkRate,5; - Id: 19307 AegisName: Willothewisp Name: Will-O-Wisp Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 880 Script: | bonus2 bResEff,Eff_Confusion,10000; bonus bVariableCastrate,10; - Id: 19308 AegisName: Amistr_Beret Name: Amistr Beret Type: Armor View: 1294 Weight: 200 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=11) { bonus bMatkRate,3; bonus bAtkRate,5; } if (.@r>=10) { bonus bFixedCast,-100*(min((.@r-10),15)/1); } - Id: 19310 AegisName: Rebeginer_Cap Name: Beginner's Cap Type: Armor Buy: 20 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 102 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAllStats,1; bonus bMaxHP,200; - Id: 19311 AegisName: Greater_Dracul_Horn Name: Greater Dracule Horn Type: Armor View: 1695 Weight: 800 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMaxHPrate,10; bonus2 bAddClass,Class_All,6; bonus2 bHPDrainRate,30,10; skill "MC_LOUD",1; if (.@r>=9) { bonus2 bAddClass,Class_All,10; bonus2 bHPDrainRate,30,30; } else if (.@r>=7) { bonus2 bAddClass,Class_All,5; bonus2 bHPDrainRate,30,15; } - Id: 19312 AegisName: Neev_Barrette Name: Neev Barrette Type: Armor View: 1696 Buy: 20 Weight: 100 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@b = BaseLevel; bonus bMdef,3+(.@b/25); bonus bMaxHPrate,.@b/25; bonus bMaxSPrate,.@b/25; - Id: 19313 AegisName: Neev_Barrette_ Name: Neev Barrette Type: Armor View: 1696 Buy: 20 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@b = BaseLevel; bonus bMdef,3+(.@b/25); bonus bMaxHPrate,.@b/25; bonus bMaxSPrate,.@b/25; - Id: 19314 AegisName: Royal_Mantle Name: Royal Mantle Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 90 View: 1697 Script: | bonus2 bSubEle,Ele_All,5; - Id: 19320 AegisName: Dwarf_Beard_J Name: Dwarf's Mustache Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1349 Script: | bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubEle,Ele_Water,5; - Id: 19321 AegisName: Bell_Pigeon_J Name: Mysterious Pigeon Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1034 Script: | bonus bAllStats,1; bonus bDelayrate,-5; - Id: 19326 AegisName: Book_of_Soyga Name: Book of Soyga Type: Armor Buy: 20 Weight: 1000 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 423 - Id: 19327 AegisName: Feather_Of_Seraphim Name: Seraphim Feather Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 1704 Script: | bonus bHealPower,5; - Id: 19328 AegisName: Spider_Temp_TW Name: Spider's Winks Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1711 Script: | .@r = getrefine(); bonus bAspd,1; bonus2 bAddEff,Eff_Poison,500; bonus bBaseAtk,5*(readparam(bStr)/12); bonus2 bIgnoreDefRaceRate,RC_All,readparam(bStr)/12; if (.@r>=9) { bonus bAtkRate,2; bonus bAspdRate,5; bonus2 bIgnoreDefRaceRate,RC_All,5; } if (.@r>=12) { bonus bAtkRate,2; bonus bAspdRate,5; bonus2 bIgnoreDefRaceRate,RC_All,5; } - Id: 19329 AegisName: Hand_Of_Devil Name: Devil's Hand Type: Armor Buy: 10 Weight: 1000 Defense: 18 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1018 Script: | .@r = getrefine(); .@a = getskilllv("SR_RIDEINLIGHTNING"); .@b = getskilllv("SR_EARTHSHAKER"); .@c = getskilllv("SR_RAMPAGEBLASTER"); bonus bNoCastCancel; bonus bAspdRate,10; bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillAtk,"SR_HOWLINGOFLION",20; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus bAspdRate,5; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus bAspdRate,5; } if (.@r>=10) bonus bIgnoreDefRace,RC_All; if (.@r>=10 && .@a == 5) { bonus2 bVariableCastrate,"SR_HOWLINGOFLION",-50; bonus2 bVariableCastrate,"MO_STEELBODY",-50; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-50; } if (.@r>=10 && .@b == 5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; if (.@r>=10 && .@c == 5) bonus2 bAddClass,Class_Boss,50; - Id: 19337 AegisName: Hat_of_Goggle Name: Goggle Hat Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 1721 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Poison,10; if (.@r<7) .@a = 15; else if (.@r<9) .@a = 30; else if (.@r>=9) .@a = 50; if (.@r>=8) bonus2 bSubEle,Ele_Poison,15; bonus2 bAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bMagicAddRace2,RC2_HEARTHUNTER,.@a; bonus2 bSubRace2,RC2_HEARTHUNTER,.@a; - Id: 19338 AegisName: Clover_Silkhat Name: Clover Silk Hat Type: Armor View: 735 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 15 Refineable: true Script: | bonus bHit,3; bonus bAgi,2; - Id: 19339 AegisName: Egg_Crispinette Name: Egg Crispinette Type: Armor View: 1598 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 15 Refineable: true Script: | bonus bMaxHP,75; bonus bMaxSP,25; - Id: 19340 AegisName: Saint_Egg_Shell Name: Holy Egg Shell Type: Armor View: 537 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 15 Refineable: true Script: | bonus bHealPower,2; - Id: 19341 AegisName: Devil_Egg_Shell Name: Wicket Egg Shell Type: Armor View: 999 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 15 Refineable: true Script: | bonus bAspdRate,2; - Id: 19342 AegisName: Bull_Hat Name: Bull Hat Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 819 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Wind,10; if (.@r<7) .@a = 15; if (.@r>=7 && .@r<9) .@a = 30; if (.@r>=8) bonus2 bSubEle,Ele_Wind,15; if (.@r>=9) .@a = 50; bonus2 bAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bMagicAddRace2,RC2_ROCKRIDGE,.@a; bonus2 bSubRace2,RC2_ROCKRIDGE,.@a; - Id: 19343 AegisName: Circlet_Of_Phoenix Name: Circlet of Phoenix Type: Armor Weight: 1000 Defense: 18 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1056 Script: | .@r = getrefine(); .@mdef = 15; .@hp = 10; .@dmg = 10; .@cast = -10; bonus2 bFixedCastrate,"LG_OVERBRAND",-100; if (.@r>=7) { .@cast -= 5; .@dmg += 15; if (.@r>=9) { .@cast -= 5; .@dmg += 25; if (.@r>=10) { bonus bIgnoreDefRace,RC_All; } } } if (getskilllv("LG_KINGS_GRACE")>=5) { bonus2 bSkillCooldown,"LG_INSPIRATION",-10000; bonus2 bSkillVariableCast,"LG_INSPIRATION",-2000; } if (getskilllv("LG_MOONSLASHER")>=5) { bonus2 bSkillVariableCast,"LG_OVERBRAND",-1000; } if (getskilllv("LG_FORCEOFVANGUARD")>=5) { .@hp += 10; .@mdef += 15; bonus bMaxSPrate,10; bonus bDef,150; } bonus bMdef,.@mdef; bonus bMaxHPrate,.@hp; bonus2 bSkillAtk,"LG_OVERBRAND",.@dmg; bonus bVariableCastrate,.@cast; - Id: 19344 AegisName: Headband_Of_Power_IL Name: Illusion Hot-blooded Headband Type: Armor Weight: 100 Defense: 3 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true View: 154 Script: | .@r = getrefine(); bonus bStr,2; bonus bBaseAtk,(10*(.@r/2)); if (.@r >= 7) { bonus2 bAddEle,Ele_Water,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bAddEle,Ele_Neutral,10; if (.@r >= 9) { bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Large,15; } } - Id: 19347 AegisName: Clinging_Doram_1 Name: Cuddly Siamese Cat Type: Armor Buy: 20 Defense: 12 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 1594 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMaxHPrate,5+.@r; bonus bMaxSPrate,5+.@r; bonus bAspdRate,10; bonus2 bSubRace,RC_Player_Human,3+.@r; bonus2 bSubRace,RC_Player_Doram,3+.@r; skill "BS_GREED",1; bonus bFixedCastrate,-7*.@r; if (.@r>=8) bonus bDelayrate,-100; if (.@r>=10) autobonus "{ bonus bAllStats,30; }",50,10000,BF_WEAPON|BF_MAGIC; - Id: 19353 AegisName: C_BearBalloon_TW Name: Bear Catches Balloon Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1734 Script: | bonus bMaxHPrate,2; bonus bMaxSPrate,2; bonus bAllStats,1; - Id: 19364 AegisName: Engineer_Cap_K Name: Engineer Cap Type: Armor View: 608 Weight: 200 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); if (.@r>=7) { bonus2 bSubRace,RC_Formless,5; } if (.@r>=9) { bonus2 bAddRace,RC_Formless,10; bonus2 bMagicAddRace,RC_Formless,10; } if (.@r>=11) { bonus bMatkRate,5; bonus bAtkRate,5; bonus2 bAddRace,RC_Formless,min(.@r-10,15); bonus2 bMagicAddRace,RC_Formless,min(.@r-10,15); } - Id: 19366 AegisName: Goibne_Helmet_IL Name: Illusion Goibne Helm Type: Armor Weight: 1000 Defense: 25 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 258 Script: | .@r = getrefine(); .@vit = 3; if (.@r >= 7) { .@vit += 5; if (.@r >= 9) { bonus bDelayrate,-12; } } bonus bVit,.@vit; bonus bMdef,3; - Id: 19367 AegisName: Burst_Flame Name: Burst Flame Type: Armor Buy: 20 Weight: 800 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 451 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,20; bonus2 bSubRace,RC_Player_Human,3+.@r; bonus2 bSubRace,RC_Player_Doram,3+.@r; if (.@r>=7) bonus2 bSubClass,Class_Normal,5; - Id: 19371 AegisName: C_BaphoJ_Parachute_TW Name: Little Buffet Parachute Type: Armor Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1746 Script: | bonus bAspd,1; bonus bDelayrate,-1; - Id: 19373 AegisName: Sparkler_Stick_TH Name: Sparkler Stick Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 130 View: 1747 Script: | bonus2 bAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Undead,20; bonus2 bResEff,Eff_Poison,10000; - Id: 19379 AegisName: Striking_hat Name: Striking Hat Type: Armor Buy: 20 Weight: 400 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1759 Script: | .@r = getrefine(); bonus bDex,5; bonus bAgi,5; bonus bLongAtkRate,5; bonus bAspdRate,10; bonus bPerfectHitAddRate,10; bonus bHit,2*.@r; bonus bDelayrate,-2*.@r; if (.@r>=7) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } if (.@r>=9) { bonus bPerfectHitAddRate,20; bonus bLongAtkRate,10; } - Id: 19380 AegisName: Floating_Ball Name: Floating Ball Type: Armor Buy: 10 Weight: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1760 Script: | bonus bMatk,35; bonus2 bMagicAddClass,Class_Boss,2; if (readparam(bDex)>=90) { bonus bMatk,70; bonus2 bMagicAddClass,Class_Boss,3; } if (readparam(bDex)>=125) { bonus bMatk,140; bonus2 bMagicAddClass,Class_Boss,5; } - Id: 19381 AegisName: Protect_cloth Name: Cloth of Protection Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 90 View: 1761 Script: | bonus bMdef,5; bonus bMaxHPrate,5; - Id: 19382 AegisName: Pop_Popcorn_Hat Name: Pop Popcorn Hat Type: Armor View: 1763 Weight: 500 Defense: 6 Locations: Head_Top: true ArmorLevel: 1 Refineable: true - Id: 19387 AegisName: Exa_Goat_Cap Name: Experimental Goat Cap Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 1768 Script: | .@r = getrefine(); .@sub = 10; .@dmg = 15; if (.@r >= 7) { .@dmg += 15; if (.@r >= 8) { .@sub += 15; if (.@r >= 9) { .@dmg += 20; } } } bonus2 bSubEle,Ele_Earth,.@sub; bonus2 bAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bMagicAddRace2,RC2_WERNER_LAB,.@dmg; bonus2 bSubRace2,RC2_WERNER_LAB,.@dmg; - Id: 19389 AegisName: E_Oxygen_Mask Name: Advanced Oxygen Mask Type: Armor View: 90 Defense: 10 Locations: Head_Low: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 19391 AegisName: Eyes_Of_Illusion Name: Eyes Of Illusion Type: Armor Buy: 20 Weight: 500 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1779 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("GN_ILLUSIONDOPING") == 5) skill "SA_DISPELL",5; if (getskilllv("GN_MANDRAGORA") == 5) bonus2 bFixedCastrate,"GN_MANDRAGORA",-70; - Id: 19393 AegisName: Magic_Star_TW Name: Magic Star Type: Armor Weight: 200 Defense: 20 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bMagicAtkEle,Ele_Neutral,2*(readparam(bStr)/12); bonus2 bMagicAtkEle,Ele_Wind,2*(readparam(bAgi)/12); bonus2 bMagicAtkEle,Ele_Water,2*(readparam(bVit)/12); bonus2 bMagicAtkEle,Ele_Fire,2*(readparam(bInt)/12); bonus2 bMagicAtkEle,Ele_Earth,2*(readparam(bDex)/12); bonus2 bMagicAtkEle,Ele_Holy,2*(readparam(bLuk)/12); hateffect(HAT_EF_Magic_Star_TW,true); UnEquipScript: | hateffect(HAT_EF_Magic_Star_TW,false); - Id: 19396 AegisName: Racing_C_Star Name: Racing Cap (Star Gladiator) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: StarGladiator: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=8) bonus bBaseAtk,5*getskilllv("TK_HPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\"SJ_SOLARBURST\",30; }",1000,10000,"SJ_PROMINENCEKICK"; - Id: 19397 AegisName: Racing_C_Soul Name: Racing Cap (Soul Linker) Type: Armor Buy: 20 Defense: 10 Slots: 1 Jobs: SoulLinker: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1134 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bVariableCastrate,-(.@r/3)*2; if (.@r>=8) bonus bMaxSP,100*getskilllv("TK_SPTIME"); if (.@r>=11) autobonus3 "{ bonus2 bSkillAtk,\"SP_SPA\",30; bonus2 bSkillAtk,\"SP_SWHOO\",30; }",1000,10000,"SL_SMA"; - Id: 19398 AegisName: Falcon_Feather Name: Falcon Feather Type: Armor Weight: 100 Jobs: Hunter: true Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 1143 Script: | bonus bAgi,1; bonus bLuk,1; bonus2 bSkillAtk,"HT_BLITZBEAT",5; - Id: 19399 AegisName: Grand_Peco_Band_Z Name: Grand Peco Hairband Type: Armor Weight: 800 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 473 Script: | .@r = getrefine(); bonus2 bMagicAddRace,RC_DemiHuman,7; bonus2 bMagicAddRace,RC_Brute,7; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; - Id: 19400 AegisName: Sleepr_Hat_Z Name: Sleeper Hat Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 590 Script: | .@r = getrefine(); bonus2 bAddRace,RC_Formless,7; bonus2 bAddRace,RC_Demon,7; if (.@r>=7) bonus bBaseAtk,15; if (.@r>=9) bonus bBaseAtk,20; - Id: 19401 AegisName: Gothic_Heart_Wing_TW Name: Fallen Wing Hairpin Type: Armor Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1787 Script: | .@r = getrefine(); bonus bDelayrate,-3-(3*(.@r/3)); bonus bMaxHPrate,3+(.@r); - Id: 19402 AegisName: Many_StarsJ Name: Many Stars Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 40 View: 1729 Script: | skill "BS_GREED",1; if (BaseClass == Job_Blacksmith) { bonus2 bVariableCastrate,"BS_GREED",-100; bonus bSPGainValue,5; } - Id: 19403 AegisName: Memory_Of_Noodle Name: Costume Memories of Summer Noodles Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1338 - Id: 19404 AegisName: Biting_Off_Rideword Name: Biting Rideword Type: Armor View: 262 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bHPLossRate,10,5000; bonus2 bHPDrainRate,40,2; bonus2 bSPDrainRate,40,2; autobonus "{ bonus2 bHPRegenRate,300,1000; }",40,4000,BF_MAGIC; autobonus "{ bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC; - Id: 19405 AegisName: Autumnal_Flavor Name: Autumn Taste Type: Armor Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1792 - Id: 19406 AegisName: Harvest_Festa_Hat Name: Harvest Festa Hat Type: Armor Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1677 - Id: 19407 AegisName: Work_Cap Name: Work Cap Type: Armor Buy: 200 Weight: 1000 Defense: 18 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1793 Script: | .@r = getrefine(); bonus bMdef,15; bonus bVit,10; bonus2 bSkillAtk,"NC_AXETORNADO",20; bonus2 bVariableCastrate,"BS_GREED",-100; if (getskilllv("NC_MAGICDECOY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("NC_AXEBOOMERANG") >= 5) bonus bBaseAtk,100; if (getskilllv("NC_MAGMA_ERUPTION") >= 5) bonus2 bAddMonsterDropItem,732,10; if (.@r>=7) bonus2 bSkillAtk,"NC_AXETORNADO",30; if (.@r>=9) bonus2 bSkillAtk,"NC_AXETORNADO",50; if (.@r>=10) bonus bIgnoreDefRace,RC_All; - Id: 19408 AegisName: Charm_Of_Misticfrozen Name: Charm of Mystic Frozen Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 80 View: 1262 Script: | bonus2 bMagicAddEle,Ele_Fire,2; - Id: 19409 AegisName: Black_Feather Name: Black Feather Hat Type: Armor Buy: 20 Weight: 1000 Defense: 18 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 731 Script: | .@r = getrefine(); bonus bSPGainValue,50; bonus bLongSPGainValue,50; bonus bMagicSPGainValue,50; bonus bMdef,15; bonus bDex,10; bonus2 bSkillAtk,"SC_FEINTBOMB",10; if (getskilllv("SC_INVISIBILITY") >= 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("SC_MAELSTROM") >= 3) skill "TK_JUMPKICK",7; if (getskilllv("SC_REPRODUCE") >= 10) bonus bUseSPrate,-30; if (.@r>=7) { bonus2 bSkillAtk,"SC_FEINTBOMB",15; bonus bHit,30; } if (.@r>=9) { bonus2 bSkillAtk,"SC_FEINTBOMB",25; bonus bHit,20; } if (.@r>=10) bonus bIgnoreDefRace,RC_All; - Id: 19410 AegisName: Kings_Mini_Melon Name: Royale Grade Mini Melon Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true View: 1758 Script: | .@r = getrefine(); bonus bMdef,10; bonus2 bAddRace,RC_Plant,5; bonus2 bMagicAddRace,RC_Plant,5; bonus2 bSubRace,RC_Plant,2; bonus bSPGainValue,5; if (.@r>=7) { bonus bMdef,5; bonus2 bAddRace,RC_Plant,10; bonus2 bMagicAddRace,RC_Plant,10; bonus2 bSubRace,RC_Plant,3; bonus bSPGainValue,10; } if (.@r>=9) { bonus bMdef,5; bonus2 bAddRace,RC_Plant,10; bonus2 bMagicAddRace,RC_Plant,10; bonus2 bSubRace,RC_Plant,5; bonus bSPGainValue,10; } /* Todo Physical and Magical Damage on Monster Meloring 20%*/ - Id: 19411 AegisName: Floating_Gioia Name: Floating Gioia Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 130 View: 1730 Script: | bonus2 bAddRace,RC_Formless,20; bonus2 bMagicAddRace,RC_Formless,20; bonus2 bResEff,Eff_Fear,10000; - Id: 19412 AegisName: Flame_Bird Name: Flame Bird Type: Armor Weight: 300 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 832 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,20+(.@r*3); if (.@r>=8) skill "MG_FIREWALL",min(10,.@r); - Id: 19415 AegisName: White_Bird_Rose Name: White Bird Rose Decoration Type: Armor View: 1688 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bUseSPrate,-3; bonus bHealPower,3; - Id: 19424 AegisName: C_Master_Cat Name: Costume Master's Head Type: Armor View: 1806 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 - Id: 19425 AegisName: Master_Cat Name: Master's Head Type: Armor View: 1806 Locations: Head_Mid: true Head_Low: true ArmorLevel: 1 - Id: 19426 AegisName: King_Of_Spirit_Circlet Name: King Of Spirit Circlet Type: Armor Buy: 20 Weight: 600 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1118 Script: | .@r = getrefine(); bonus bMdef,15; bonus bFixedCastrate,-7*.@r; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_EARTHGRAVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",10; bonus bVariableCastrate,-6*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_WARMER") >= 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; } if (getskilllv("SO_ELEMENTAL_SHIELD") >= 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus bDelayrate,-5; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; } if (.@r>=10) bonus bIgnoreMdefRace,RC_All; - Id: 19427 AegisName: RabbitFamilyBalloon Name: Lunatic Family Balloon Type: Armor View: 1809 Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 99 Script: | .@vit = readparam(bVit); bonus bVariableCastrate,-.@vit/18; if (.@vit>=120) bonus bDelayrate,-2; if (.@vit>=130) bonus bDelayrate,-3; - Id: 19428 AegisName: Morpheus_Hood_IL Name: Illusion Morpheus's Hood Type: Armor Buy: 20 Weight: 200 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 256 Script: | .@r = getrefine(); bonus bInt,10; bonus bMdef,15; bonus bMaxSPrate,20; bonus bVariableCastrate,-(3*(.@r/2)); if (.@r >= 7) { bonus bMatk,30; if (.@r >= 9) { bonus bNoCastCancel; } } - Id: 19429 AegisName: Zarathustra Name: Zarathustra Type: Armor Locations: Head_Low: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 19433 AegisName: ResonateTaego_TW Name: Ancient Resonance Type: Armor Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 1823 Script: | .@r = getrefine(); bonus bAspd,1; bonus bBaseAtk,20; bonus bMatk,20; if (.@r>=7) { bonus bAspd,1; if (.@r>=9) { bonus bAtkRate,3; bonus bMatkRate,3; if (.@r>=10) { bonus bAtkRate,10+(.@r-10); bonus bMatkRate,10+(.@r-10); if (.@r>=12) { bonus bAspd,1; } } } } hateffect HAT_EF_RESONATETAEGO,true; UnEquipScript: | hateffect HAT_EF_RESONATETAEGO,false; - Id: 19435 AegisName: PoringBeret_TW Name: Poring Beret Type: Armor View: 1825 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; if (getrefine()>=9) skill "BS_GREED",1; - Id: 19436 AegisName: VesperHeadGear Name: Vesper Headgear Type: Armor View: 1827 Weight: 400 Defense: 8 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDex,2; bonus bVariableCastrate,-10; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bVariableCastrate,-10; - Id: 19437 AegisName: LittleGarden Name: Little Garden Type: Armor View: 1830 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bBaseAtk,40; bonus bCritAtkRate,5; if (readparam(bLuk)>=90) { bonus bBaseAtk,60; bonus bCritAtkRate,10; } if (readparam(bLuk)>=125) { bonus bBaseAtk,80; bonus bCritAtkRate,20; } - Id: 19438 AegisName: ZilantNecklace Name: Flame Thunder Witch's Necklace Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 View: 1831 Script: | bonus bSpeedRate,25; bonus bDelayrate,-5; - Id: 19439 AegisName: Subject_Aura Name: Vicious Mind Aura Type: Armor View: 1267 Weight: 100 Defense: 5 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 170 - Id: 19443 AegisName: Star_Eyepatch_JP Name: Star Eyepatch Type: Armor View: 800 Weight: 300 Defense: 200 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bVit,3; bonus2 bResEff,Eff_Stun,3000; - Id: 19444 AegisName: Star_Eyepatch_JP_ Name: Star Eyepatch Type: Armor View: 800 Weight: 300 Defense: 200 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bVit,3; bonus2 bResEff,Eff_Stun,3000; - Id: 19447 AegisName: Leo_Crown_J Name: Leo Crown Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 565 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bStr,10; bonus bBaseAtk,50; bonus bHit,20; bonus2 bAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Monk) { bonus2 bVariableCastrate,"CH_SOULCOLLECT",-50; bonus bHPGainValue,500; bonus bSPGainValue,50; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 19449 AegisName: Cancer_Crown_J Name: Cancer Crown Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 561 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bStr,10; bonus bBaseAtk,50; bonus bHit,20; bonus2 bAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) { bonus bHPGainValue,500; bonus bSPGainValue,50; bonus2 bAddMonsterDropItem,748,20; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 19451 AegisName: Heavenly_Order Name: Heavenly Order Type: Armor Buy: 20 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1093 Script: | skill "MC_IDENTIFY",1; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18); - Id: 19452 AegisName: Heavenly_Order_ Name: Heavenly Order Type: Armor View: 1093 Buy: 20 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | skill "MC_IDENTIFY",1; .@a = readparam(bStr); .@b = readparam(bAgi); .@c = readparam(bVit); .@d = readparam(bInt); .@e = readparam(bDex); .@f = readparam(bLuk); bonus bHit,2*(.@a/18); bonus bMaxHPrate,2*(.@a/18); bonus bFlee,2*(.@b/18); bonus bDelayrate,-2*(.@b/18); bonus bMdef,2*(.@c/18); bonus bVariableCastrate,-2*(.@c/18); bonus bMaxSPrate,2*(.@d/18); bonus bUseSPrate,-2*(.@d/18); bonus bCritical,2*(.@e/18); bonus bAspdRate,2*(.@e/18); bonus bBaseAtk,15*(.@f/18); bonus bMatk,15*(.@f/18); bonus bDef,20*(.@f/18); - Id: 19453 AegisName: Jejecap_JP Name: Jeje Cap Type: Armor Buy: 20 Weight: 1000 Defense: 18 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1011 Script: | .@r = getrefine(); .@dmg = 10; .@delay = -15-6*getskilllv("GN_CRAZYWEED"); bonus bMdef,15; bonus bNoCastCancel; bonus2 bVariableCastrate,"GN_CRAZYWEED",-50; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-50; bonus2 bVariableCastrate,"CR_FULLPROTECTION",-50; if (.@r>=7) { .@dmg += 15; if (.@r>=9) { .@dmg += 25; if (.@r>=10) { bonus bIgnoreMDefRace,RC_All; } } } if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddClass,Class_Boss,50; if (getskilllv("GN_MANDRAGORA") == 5) { .@delay -= 25; bonus2 bSkillCooldown,"GN_CRAZYWEED",-4500; } bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",.@dmg; bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",.@dmg; bonus bDelayrate,.@delay; - Id: 19459 AegisName: C_Luna_On_Shoulder Name: Costume Lunatic on Shoulder Type: Armor View: 1881 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 19460 AegisName: Black_Veil_J Name: Black Veil Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 View: 1173 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Dark,(.@r >= 8 ? 25: 10); .@bonus = 15; if (.@r >= 7) { .@bonus += 15; } if (.@r >= 9) { .@bonus += 20; } bonus2 bAddRace2,RC2_ILLUSION_VAMPIRE,.@bonus; bonus2 bSubRace2,RC2_ILLUSION_VAMPIRE,.@bonus; bonus2 bMagicAddRace2,RC2_ILLUSION_VAMPIRE,.@bonus; - Id: 19462 AegisName: Cat_In_Mouth_J Name: Siam Cat in mouth Type: Armor Buy: 20 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 130 View: 1689 Script: | bonus2 bAddRace,RC_Brute,20; bonus2 bMagicAddRace,RC_Brute,20; bonus2 bResEff,Eff_Bleeding,10000; - Id: 19463 AegisName: Melon_Cap Name: Melon Bread Hat Type: Armor Buy: 20 Weight: 600 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1878 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Earth,5+(.@r*2); bonus2 bAddItemHealRate,11626,5*BaseLevel; if (.@r>=7) { bonus bLongAtkDef,-10; bonus bHealPower2,10; bonus bAddItemHealRate,10; } if (.@r>=9) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bHealPower2,10; bonus bAddItemHealRate,10; } - Id: 19464 AegisName: C_Melon_Cap Name: Costume Melon Bread Hat Type: Armor View: 1878 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 19465 AegisName: Cherry_Blossom_Hat_YL Name: Yellow Cherry Blossom Hat Type: Armor View: 1727 Locations: Head_Top: true ArmorLevel: 1 Refineable: true - Id: 19466 AegisName: C_Small_ocean Name: Costume Small Ocean Type: Armor View: 1883 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 19468 AegisName: Libra_Diadem_J Name: Libra Diadem Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 594 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bStr,10; bonus bBaseAtk,50; bonus bDelayrate,-20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) { bonus2 bSubClass,Class_Boss,20; bonus bHPGainValue,500; bonus bSPGainValue,50; bonus2 bSkillAtk,"RK_STORMBLAST",(.@r>=8?70:(.@r>=6?50:30)); bonus2 bFixedCastrate,"RK_REFRESH",-100; autobonus3 "{ bonus bAtkRate,-50; bonus bMatkRate,-50; bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,10; }",1000,60000,"RK_MILLENNIUMSHIELD"; autobonus3 "{ percentheal 100,100; sc_end UNLUCKY; sc_end IGNORANCE; sc_end WEAKNESS; sc_end ENERVATION; sc_end LAZINESS; }",1000,1000,"RK_REFRESH"; autobonus3 "{ bonus bNoKnockback; }",1000,30000,"RK_CRUSHSTRIKE"; autobonus3 "{ bonus bStr,30; bonus bInt,-30; }",1000,300000,"RK_GIANTGROWTH"; autobonus3 "{ bonus2 bSPRegenRate,40,10000; }",1000,300000,"RK_ABUNDANCE"; autobonus3 "{ bonus bShortWeaponDamageReturn,10; heal -1000,0; }",1000,300000,"RK_STONEHARDSKIN"; autobonus3 "{ bonus2 bHPRegenRate,500,10000; }",1000,300000,"RK_VITALITYACTIVATION"; autobonus3 "{ bonus bBaseAtk,10; bonus bAspdRate,10; }",1000,300000,"RK_FIGHTINGSPIRIT"; if (.@r>=6) autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,20; }",1000,60000,"RK_MILLENNIUMSHIELD"; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,30; }",1000,60000,"RK_MILLENNIUMSHIELD"; } } - Id: 19469 AegisName: Crown_Of_Saint_Jp Name: Sacred Crown Type: Armor Buy: 20 Weight: 600 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1117 Script: | .@r = getrefine(); .@a = 5*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); .@dmg = 20; .@aspd = 10; bonus bMdef,15; bonus2 bSkillUseSP,"AB_JUDEX",15; bonus2 bSkillUseSP,"AB_ADORAMUS",15; bonus2 bVariableCastrate,"AB_JUDEX",-5*getskilllv("AB_ORATIO"); bonus2 bVariableCastrate,"AB_ADORAMUS",-5*getskilllv("AB_ORATIO"); if (getskilllv("AB_CLEARANCE") >= 5) { bonus2 bMagicAddClass,Class_Boss,25; } bonus2 bMagicAddEle,Ele_Undead,.@a; bonus2 bMagicAddEle,Ele_Ghost,.@a; bonus2 bMagicAddEle,Ele_Earth,.@a; bonus2 bMagicAddEle,Ele_Neutral,.@a; bonus2 bMagicAddRace,RC_DemiHuman,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; if (.@r >= 7) { .@dmg += 30; .@aspd += 5; if (.@r >= 9) { .@dmg += 50; .@aspd += 5; if (.@r >= 10) { bonus bNoGemStone; } } } bonus bAspdRate,.@aspd; bonus2 bSkillAtk,"AB_JUDEX",.@dmg; bonus2 bSkillAtk,"AB_ADORAMUS",.@dmg; - Id: 19471 AegisName: Scorpio_Crown_J Name: Scorpio Crown Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 605 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bStr,10; bonus bBaseAtk,50; bonus bHit,20; bonus2 bAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { bonus bFlee,50; bonus bHPGainValue,500; bonus bSPGainValue,50; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 19472 AegisName: C_S_Circlet_Of_Time Name: Costume Temporal Circlet Type: Armor View: 1891 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 19473 AegisName: Taurus_Diadem_J Name: Taurus Diadem Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 535 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bStr,10; bonus bBaseAtk,50; bonus bHit,20; bonus2 bAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { skill "BS_GREED",1; bonus bHPGainValue,500; bonus bSPGainValue,50; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 19474 AegisName: S_Circlet_Of_Time_RK Name: Temporal Circlet (Rune Knight) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHP,250*(.@r/2); bonus bMaxSPrate,2*(.@r/3); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15*(.@r/3); bonus2 bSkillAtk,"RK_DRAGONBREATH",15*(.@r/3); bonus bLongAtkRate,5*(.@r/4); if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19475 AegisName: S_Circlet_Of_Time_LG Name: Temporal Circlet (Royal Guard) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"LG_BANISHINGPOINT",15*(.@r/3); bonus2 bSkillAtk,"LG_CANNONSPEAR",15*(.@r/3); bonus bLongAtkRate,5*(.@r/4); if (.@r>=11) { bonus bAtkRate,5; } - Id: 19476 AegisName: S_Circlet_Of_Time_NC Name: Temporal Circlet (Mechanic) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",10*(.@r/3); bonus2 bSkillAtk,"NC_ARMSCANNON",10*(.@r/3); bonus bLongAtkRate,5*(.@r/4); if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19477 AegisName: S_Circlet_Of_Time_GN Name: Temporal Circlet (Genetic) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20*(.@r/3); bonus2 bSkillAtk,"GN_CART_TORNADO",20*(.@r/3); bonus2 bAddSize,Size_All,2*(.@r/4); if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19478 AegisName: S_Circlet_Of_Time_GC Name: Temporal Circlet (Guillotine Cross) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"GC_COUNTERSLASH",20*(.@r/3); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20*(.@r/3); bonus bAtkRate,2*(.@r/4); if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19479 AegisName: S_Circlet_Of_Time_SC Name: Temporal Circlet (Shadow Chaser) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"SC_FATALMENACE",30*(.@r/3); bonus2 bSkillAtk,"SC_FEINTBOMB",30*(.@r/3); bonus bAtkRate,2*(.@r/4); if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19480 AegisName: S_Circlet_Of_Time_AB Name: Temporal Circlet (Archbishop) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bVariableCastrate,-3*(.@r/3); bonus2 bSkillAtk,"AB_ADORAMUS",20*(.@r/3); bonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4); if (.@r>=11) { bonus bMatkRate,5; } - Id: 19481 AegisName: S_Circlet_Of_Time_SR Name: Temporal Circlet (Sura) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bMaxHPrate,2*(.@r/3); bonus2 bSkillAtk,"SR_KNUCKLEARROW",20*(.@r/3); bonus2 bSkillAtk,"SR_TIGERCANNON",10*(.@r/3); bonus bLongAtkRate,5*(.@r/4); if (.@r>=11) { bonus bAtkRate,5; } - Id: 19482 AegisName: S_Circlet_Of_Time_WL Name: Temporal Circlet (Warlock) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bVariableCastrate,-3*(.@r/3); bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",20*(.@r/3); bonus2 bSkillAtk,"WL_JACKFROST",20*(.@r/3); bonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4); bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4); if (.@r>=11) { bonus bMatkRate,5; } - Id: 19483 AegisName: S_Circlet_Of_Time_SO Name: Temporal Circlet (Sorcerer) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bVariableCastrate,-3*(.@r/3); bonus2 bSkillAtk,"SO_DIAMONDDUST",20*(.@r/3); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,5*(.@r/4); bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4); if (.@r>=11) { bonus bMatkRate,5; } - Id: 19484 AegisName: S_Circlet_Of_Time_RA Name: Temporal Circlet (Ranger) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bCritAtkRate,5*(.@r/3); bonus2 bSkillAtk,"RA_ARROWSTORM",20*(.@r/3); bonus2 bSkillAtk,"RA_AIMEDBOLT",20*(.@r/3); bonus bLongAtkRate,5*(.@r/4); if (.@r>=11) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-1000; } - Id: 19485 AegisName: S_Circlet_Of_Time_WM Name: Temporal Circlet (Wanderer & Minstrel) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bVariableCastrate,-5*(.@r/3); bonus2 bSkillAtk,"WM_METALICSOUND",20*(.@r/3); bonus2 bSkillAtk,"WM_REVERBERATION",20*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); if (.@r>=11) { bonus bMatkRate,5; } - Id: 19486 AegisName: S_Circlet_Of_Time_SJ Name: Temporal Circlet (Star Emperor) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",30*(.@r/3); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",30*(.@r/3); bonus2 bAddSize,Size_All,2*(.@r/4); bonus bAspdRate,(.@r/3)*2; if (.@r>=11) { bonus bAtkRate,5; } - Id: 19487 AegisName: S_Circlet_Of_Time_SP Name: Temporal Circlet (Soul Reaper) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bVariableCastrate,-5*(.@r/3); bonus2 bSkillAtk,"SP_CURSEEXPLOSION",20*(.@r/3); bonus2 bSkillAtk,"SP_SWHOO",20*(.@r/3); bonus2 bMagicAtkEle,Ele_Dark,7*(.@r/4); if (.@r>=11) { bonus bMatkRate,5; } - Id: 19488 AegisName: S_Circlet_Of_Time_RL Name: Temporal Circlet (Rebellion) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Rebellion: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20*(.@r/3); bonus2 bSkillAtk,"RL_R_TRIP",20*(.@r/3); bonus bLongAtkRate,5*(.@r/4); if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19489 AegisName: S_Circlet_Of_Time_OB Name: Temporal Circlet (Oboro) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: KagerouOboro: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"NJ_HYOUSENSOU",30*(.@r/3); bonus2 bSkillAtk,"NJ_HUUJIN",30*(.@r/3); bonus2 bMagicAtkEle,Ele_Wind,5*(.@r/4); bonus2 bMagicAtkEle,Ele_Water,5*(.@r/4); if (.@r>=11) { bonus bMatkRate,5; } - Id: 19490 AegisName: S_Circlet_Of_Time_KG Name: Temporal Circlet (Kagerou) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: KagerouOboro: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"KO_BAKURETSU",20*(.@r/3); bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20*(.@r/3); bonus2 bAddSize,Size_All,2*(.@r/4); if (.@r>=11) { bonus bAtkRate,5; } - Id: 19491 AegisName: S_Circlet_Of_Time_NV Name: Temporal Circlet (Super Novice) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,4*(.@r/3); bonus bVariableCastrate,-4*(.@r/3); bonus2 bMagicAtkEle,Ele_All,5*(.@r/4); bonus bCritAtkRate,5*(.@r/4); if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19492 AegisName: S_Circlet_Of_Time_SU Name: Temporal Circlet (Summoner) Type: Armor View: 1892 Defense: 10 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); bonus2 bSkillAtk,"SU_CN_METEOR",20*(.@r/3); bonus2 bSkillAtk,"SU_PICKYPECK",20*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); bonus bLongAtkRate,(.@r/4)*5; if (.@r>=11) { bonus bDelayrate,-5; } - Id: 19495 AegisName: Diabolus_Wing Name: Diabolus Wing Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 680 Script: | bonus bAllStats,10; /*bonus2 bAddRace2,RC2_TEMPLE_DEMON,30; bonus2 bMagicAddRace2,RC2_TEMPLE_DEMON,30;*/ - Id: 19496 AegisName: Aquarius_Crown_J Name: Aquarius Crown Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 510 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bInt,10; bonus bMatk,50; bonus bDelayrate,-20; bonus2 bMagicAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 19497 AegisName: Phantom_Of_Masquerade Name: Phantom of Masquerade Type: Armor Weight: 500 Defense: 12 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bStr,5; bonus bAgi,5; bonus2 bAddRace,RC_All,10; bonus2 bResEff,Eff_Stone,5000; if (.@r>=7) { bonus2 bAddRace,RC_All,15; bonus bDelayrate,-20; } if (.@r>=9) bonus bDefRatioAtkClass,Class_All; - Id: 19498 AegisName: CitrusRibbon Name: Citrus Ribbon Type: Armor View: 1900 Weight: 500 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMdef,3; bonus bPerfectHitAddRate,20; bonus2 bAddClass,Class_Boss,7; - Id: 19499 AegisName: FortunetellinSealed Name: Fortunetelling Sealed Type: Armor View: 1901 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 Script: | .@a = (readparam(bInt)+readparam(bDex))/50; bonus bAspdRate,2*.@a; bonus2 bMagicAddSize,Size_All,4*.@a; - 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 ArmorLevel: 1 View: 137 - Id: 19502 AegisName: T_Goggle Name: T Goggle Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 1 Script: | bonus2 bExpAddRace,RC_All,30; - Id: 19503 AegisName: T_Munak_Hat Name: T Munak Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 51 - 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 View: 300 - Id: 19507 AegisName: Clear_Sun Name: Clear Sun Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 654 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19508 AegisName: T_Gemmed_Sallet Name: T Gemmed Sallet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 Script: | bonus bUnbreakableHelm; - Id: 19509 AegisName: Butterfly_Wing_Ear Name: Butterfly Wing Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 695 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19510 AegisName: Nut_On_Head Name: Screw Stuck in Head Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 696 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19511 AegisName: Heart_Eye_Patch1 Name: Heart Eye Patch 1 Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 697 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19512 AegisName: Heart_Eye_Patch2 Name: Heart Eye Patch 2 Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 698 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19513 AegisName: Chicken_Beak Name: Chicken Bill Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 699 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19514 AegisName: Charlie_Beard Name: Charlies Beard Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 700 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19515 AegisName: Yellow_Hat Name: Yellow Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 701 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19516 AegisName: Singing_Bird Name: Singing Bird Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 702 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19517 AegisName: Cocks_Comb Name: Chicken Crest Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 703 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19518 AegisName: Rainbow Name: Rainbow Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 704 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19519 AegisName: Lightning_Cloud Name: Thunderstorm Cloud Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 688 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19520 AegisName: Rain_Cloud Name: Rain Cloud Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 705 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19521 AegisName: Charlie_Hat Name: Charlies Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 706 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19522 AegisName: Mini_Crown1 Name: Mini Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 707 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19523 AegisName: Donation_Ribbon Name: Green Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 244 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableHelm; - Id: 19524 AegisName: C_Green_Feeler Name: Costume Green Feeler Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 85 Script: | bonus bUnbreakableHelm; - Id: 19525 AegisName: C_Jack_A_Dandy Name: Costume Jack A Dandy Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 58 Script: | bonus bUnbreakableHelm; - Id: 19526 AegisName: C_Helm Name: Costume Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 40 Script: | bonus bUnbreakableHelm; - Id: 19527 AegisName: C_Sharp_Gear Name: Costume Spiky Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 43 Script: | bonus bUnbreakableHelm; - Id: 19528 AegisName: C_Iron_Cane Name: Costume Iron Cain Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 53 Script: | bonus bUnbreakableHelm; - Id: 19529 AegisName: C_Angelic_Chain Name: Costume Angel Wing Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 38 Script: | bonus bUnbreakableHelm; bonus bVit,1; bonus bAgi,1; - Id: 19530 AegisName: C_Wild_Rose Name: Costume Wild Rose Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 541 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; bonus bBaseAtk,2; bonus bMatk,2; - Id: 19531 AegisName: C_Cube_Mask Name: Costume Cube Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 472 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableHelm; bonus bFlee,1; - Id: 19532 AegisName: C_Red_Bunny_Band Name: Red Bunny Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 640 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableHelm; bonus bDex,1; - Id: 19533 AegisName: C_Spore_Hat Name: Costume Spore Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 114 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; bonus bVit,1; bonus2 bExpAddRace,RC_All,1; - Id: 19534 AegisName: C_Tha_Despero_Mask Name: Costume Thanatos Despero Mask Type: Armor Buy: 20 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 693 Trade: NoDrop: true Script: | bonus2 bAddClass,Class_All,1; bonus bMatkRate,1; bonus bHealPower,1; - Id: 19535 AegisName: C_Sinsuncho_Hat Name: Costume Sinsuncho Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 730 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; bonus bStr,1; bonus2 bExpAddRace,RC_All,1; - Id: 19536 AegisName: C_Rose_Corsage Name: Costume Rose Corsage Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 533 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; bonus2 bExpAddRace,RC_All,1; bonus bInt,1; - Id: 19537 AegisName: C_Gryphon_Hat Name: Costume Gryphon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 591 Script: | bonus bUnbreakableHelm; - Id: 19538 AegisName: Full_Moon Name: Full Moon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 780 Script: | autobonus "{ bonus bBaseAtk,50; }",10,5000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }"; autobonus "{ bonus bMatk,50; }",5,5000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; }"; - Id: 19539 AegisName: C_Reginleif_Hairband Name: Costume Hairband Of Reginleif Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 468 Script: | bonus bAllStats,1; - Id: 19540 AegisName: C_Rabbit_Earplug Name: Costume Rabbit Earplugs Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 515 Script: | bonus bAgi,1; bonus bFlee,2; - Id: 19541 AegisName: C_Romantic_White_Flower Name: Costume Romantic White Flower Type: Armor Buy: 20 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 259 Script: | bonus bUnbreakableHelm; bonus bHit,1; - Id: 19542 AegisName: C_Devil_Whisper Name: Costume Devil Whisper Type: Armor Buy: 20 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 712 Script: | bonus bUnbreakableHelm; bonus2 bSubRace,RC_Angel,1; bonus2 bSubRace,RC_Demon,1; bonus3 bAddMonsterDropItem,523,RC_Angel,400; bonus3 bAddMonsterDropItem,12020,RC_Demon,400; - Id: 19543 AegisName: Oliver_Wolf_Hood Name: Oliver Wolf Hood Type: Armor Buy: 20 Weight: 300 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 View: 849 Script: | bonus bUnbreakableHelm; - Id: 19544 AegisName: C_Tare_Neko_Cru Name: Costume Tare Neko Cru Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 692 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19545 AegisName: C_Boys_Cap Name: Costume Boy's Cap Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 102 Script: | bonus bUnbreakableHelm; - Id: 19546 AegisName: C_Valkyrie_Helm Name: Costume Valkyrie Helm Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 225 Script: | bonus bUnbreakableHelm; - Id: 19547 AegisName: C_Deviruchi_Cap Name: Costume Deviruchi Cap Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 123 Script: | bonus bUnbreakableHelm; - Id: 19548 AegisName: C_Frog_Cap Name: Costume Frog Cap Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 448 EquipScript: | bonus bUnbreakableHelm; - Id: 19549 AegisName: C_Magestic_Goat Name: Costume Magestic Goat Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 41 Script: | bonus bUnbreakableHelm; - Id: 19550 AegisName: C_Blush Name: Costume Blush Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 125 Script: | bonus bUnbreakableHelm; - Id: 19551 AegisName: C_Elven_Ears Name: Costume Elven Ears Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 73 Script: | bonus bUnbreakableHelm; - Id: 19552 AegisName: C_Centimental_Flower Name: Costume Centimental Flower Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 56 Script: | bonus bUnbreakableHelm; - Id: 19553 AegisName: C_Assassin_Mask_ Name: Costume Assassin Mask Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 180 Script: | bonus bUnbreakableHelm; - Id: 19554 AegisName: C_Hahoe_Mask Name: Costume Hahoe Mask Type: Armor Buy: 20 Weight: 100 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 230 Script: | bonus bUnbreakableHelm; - Id: 19555 AegisName: C_Crescent_Helm Name: Costume Crescent Moon Helm Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 213 Trade: NoDrop: true Script: | bonus bVit,1; - Id: 19556 AegisName: C_Kabuki_Mask Name: Costume Kabuki Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 214 Trade: NoDrop: true Script: | bonus bInt,1; - Id: 19557 AegisName: C_Ayothaya_Hat Name: Costume Ayothaya Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 334 Trade: NoDrop: true Script: | bonus bStr,1; - Id: 19558 AegisName: C_Raven_Cap Name: Costume Crow Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 524 Trade: NoDrop: true Script: | bonus bVit,1; - Id: 19559 AegisName: C_B_Dragon_Hat Name: Costume Baby Dragon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 525 Trade: NoDrop: true Script: | bonus bAgi,1; - Id: 19560 AegisName: C_Quati_Hat Name: Costume Coati Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 527 Trade: NoDrop: true Script: | bonus bDex,1; - Id: 19561 AegisName: C_Tucan_Hat Name: Costume Tucan Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 528 Trade: NoDrop: true Script: | bonus bDex,1; - Id: 19562 AegisName: C_Jaguar_Hat Name: Costume Jaguar Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 530 Trade: NoDrop: true Script: | bonus bStr,1; - Id: 19563 AegisName: C_Dragon_Arhat_Mask Name: Costume Dragon Arhat Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 545 Trade: NoDrop: true - Id: 19564 AegisName: C_Tiger_Arhat_Mask Name: Costume Tiger Arhat Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 546 Trade: NoDrop: true - Id: 19565 AegisName: C_Chung_Hairband Name: Costume Chung Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 583 Trade: NoDrop: true Script: | bonus bInt,1; - Id: 19566 AegisName: C_Samurai_Mask Name: Costume Samurai Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 644 Trade: NoDrop: true - Id: 19567 AegisName: C_Hattah_Black Name: Costume Hatta Black Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 676 Trade: NoDrop: true Script: | bonus bVit,1; - Id: 19568 AegisName: C_Horn_Of_Ancient Name: Costume Ancient Horns Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 757 Trade: NoDrop: true Script: | bonus bStr,1; - Id: 19569 AegisName: C_Sprout_Hat Name: Costume Sprout Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 758 Trade: NoDrop: true Script: | bonus bInt,1; - Id: 19570 AegisName: C_Mercury_Helm Name: Costume Mercury Riser Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 759 Trade: NoDrop: true Script: | bonus bLuk,1; - Id: 19571 AegisName: C_White_Musang_Hat Name: Costume White Musang Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 770 Trade: NoDrop: true Script: | bonus bStr,1; - Id: 19572 AegisName: C_Black_Musang_Hat Name: Costume Black Musang Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 771 Trade: NoDrop: true Script: | bonus bInt,1; - Id: 19573 AegisName: C_Heart_Wing_Hairband Name: Costume Heart Wing Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 733 Trade: NoDrop: true - Id: 19574 AegisName: C_Lord_of_Death Name: Costume Lord of Death Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 742 Trade: NoDrop: true Script: | bonus bUnbreakableHelm; - Id: 19575 AegisName: C_Rising_Black_Dragon Name: Costume Ascension Black Dragon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 863 - Id: 19576 AegisName: C_Tare_Pope Name: Costume Tare Pope Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 817 Trade: NoDrop: true - Id: 19577 AegisName: 10th_Anni_Poring_Hat Name: 10th Anni Poring Hat Type: Armor Buy: 10 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 874 - Id: 19578 AegisName: C_Goggle Name: Costume Googles Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1 - Id: 19579 AegisName: C_Red_Wing_Hat Name: Costume Red Wind Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 613 Script: | bonus bHPrecovRate,20; bonus bSPrecovRate,20; - Id: 19580 AegisName: C_Sphinx_Helm Name: Costume Sphinx Helm Type: Armor Locations: Costume_Head_Top: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 137 - Id: 19581 AegisName: C_Brabery_Hat Name: Costume Adventurer's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 891 Script: | bonus2 bAddMonsterDropItem,6614,50; - Id: 19582 AegisName: C_Cowboy_Hat Name: Costume Cowboy Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 411 - Id: 19583 AegisName: C_Gangster_Patch Name: Costume Zorro Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 50 - Id: 19584 AegisName: C_Pirate_Dagger Name: Costume Dagger In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 327 - Id: 19585 AegisName: C_Feather_Beret Name: Costume Feather Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 224 - Id: 19586 AegisName: C_Pink_Bunny_Band_J Name: Costume Pink Bunny Hair Band Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 898 Trade: NoDrop: true - Id: 19587 AegisName: C_King_Poring_Hat Name: Costume King Poring Hat Type: Armor Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 905 Script: | bonus bUnbreakableHelm; - Id: 19588 AegisName: C_Cat_Hat_J Name: Costume Cat Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 182 Script: | bonus bAllStats,3; bonus2 bExpAddClass,Class_All,30; - Id: 19589 AegisName: C_Fallen_Angel_Lost_J Name: Costume Fallen Angel Lost Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 907 - Id: 19590 AegisName: C_Twin_Ribbon_J Name: Costume Maiden's Twin Ribbon Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 239 - Id: 19591 AegisName: C_Red_Ribbon_J Name: Costume Red Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 246 - Id: 19592 AegisName: C_Hibiscus_J Name: Costume Hibiscus Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 210 - Id: 19593 AegisName: C_Laurel_Wreath_J Name: Costume Laurel Wreath Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 237 - Id: 19594 AegisName: C_Geographer_J Name: Costume Decorative Geographer Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 238 - Id: 19595 AegisName: C_Dress_Hat_J Name: Costume April's Fool Day Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 265 - Id: 19596 AegisName: C_Flying_Angel_J Name: Costume Flapping Angel Wing Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 264 - Id: 19597 AegisName: C_Magic_Eyes_J Name: Costume Magic Eyes Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 209 - Id: 19598 AegisName: C_Wondering_Wolf_Helm Name: Costume Wandering Wolf Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 490 Trade: NoDrop: true - Id: 19599 AegisName: C_Imp_Hat Name: Costume Imp Hat Type: Armor Buy: 20 Weight: 400 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 589 Trade: NoDrop: true Script: | bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5; - Id: 19600 AegisName: Drooping_Kiehl Name: Costume Drooping Kiehl Type: Armor Weight: 40 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 909 - Id: 19601 AegisName: Drooping_Aliot Name: Costume Drooping Aliot Type: Armor Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 910 - Id: 19602 AegisName: C_Invisible_Cap Name: Costume Invisible Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 19603 AegisName: C_Invisible_Sunglasses Name: Costume Invisible Sunglasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 19604 AegisName: C_Invisible_Mask Name: Costume Invisible Flu Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 19605 AegisName: C_Gang_Scarf Name: Costume Gang Scarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 369 - Id: 19606 AegisName: C_Ninja_Scroll Name: Costume Ninja Scroll Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 370 - Id: 19607 AegisName: C_Love_Chick_Hat Name: Costume Love Chick Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 500 - Id: 19608 AegisName: C_Chick_Hat Name: Costume Baby Chick Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 311 - Id: 19609 AegisName: C_Red_Glasses Name: Costume Red Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 316 - Id: 19610 AegisName: C_Whisper_Mask Name: Costume Whisper Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 321 - Id: 19611 AegisName: C_Pecopeco_Wing_Ears Name: Costume Peco Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 366 - Id: 19612 AegisName: C_Headset_OST Name: Costume Note Headphone Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 220 - Id: 19613 AegisName: C_Valkyrie_Feather_Band Name: Costume Valkyrie Feather Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 300 - Id: 19614 AegisName: C_Super_Novice_Hat Name: Costume Super Novice Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 193 - Id: 19615 AegisName: C_Loki_Mask Name: Costume Loki Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 346 - Id: 19616 AegisName: C_Ear_Of_Black_Cat Name: Costume Wickebine's Black Cat Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 368 - Id: 19617 AegisName: C_Ear_Of_Puppy Name: Costume Puppy Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 199 - Id: 19618 AegisName: C_Mask_Of_Fox Name: Costume Kitsune Mask Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 153 - Id: 19619 AegisName: C_Corsair Name: Costume Corsair Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 105 Script: | bonus bVit,1; - Id: 19620 AegisName: C_Detective_Hat Name: Costume Detective Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 189 - Id: 19621 AegisName: C_Ear_Of_Devils_Wing Name: Costume Evil Wing Ear Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 152 - Id: 19622 AegisName: C_First_Moon_Hair_Pin Name: Costume Crescent Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 132 - Id: 19623 AegisName: C_Bizofnil_Wing_Deco Name: Costume Bijofnil Wings Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 477 - Id: 19624 AegisName: C_Round_Eyes Name: Costume Blank Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 185 - Id: 19625 AegisName: C_Bunny_Band Name: Costume Bunny Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 View: 15 - Id: 19626 AegisName: C_Chullos Name: Costume Earmuff Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 287 - Id: 19627 AegisName: C_Satellite_Hairband Name: Costume Satellite Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 266 Script: | bonus2 bExpAddRace,RC_All,30; - Id: 19628 AegisName: C_Headset Name: Costume Headset Type: Armor View: 87 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 20 - Id: 19629 AegisName: C_Tiara Name: Costume Tiara Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 19 - Id: 19630 AegisName: C_Crown Name: Costume Crown Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 45 - Id: 19631 AegisName: C_Boss_Hat Name: Costume Poring Fedora Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 919 - Id: 19632 AegisName: C_Hat Name: Costume Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 16 - Id: 19633 AegisName: C_Flower_Hairband Name: Costume Flower Band Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 5 - Id: 19634 AegisName: C_Flu_Mask Name: Costume Flu Mask Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 8 - Id: 19635 AegisName: C_Mini_Propeller Name: Costume Mini Propeller Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 46 - Id: 19636 AegisName: C_Pierrot_Nose Name: Costume Clown Nose Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 49 - Id: 19637 AegisName: C_Nurse_Cap Name: Costume Nurse Cap Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 64 - Id: 19638 AegisName: C_Mr_Smile Name: Costume Mr. Smile Type: Armor Buy: 10 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 65 - Id: 19639 AegisName: C_Sahkkat Name: Costume Sakkat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 67 - Id: 19640 AegisName: C_Charming_Ribbon Name: Costume Charming Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 211 - Id: 19641 AegisName: C_Helm_Of_Darkness Name: Costume Helm of Darkness Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 233 - Id: 19642 AegisName: C_Moonlight_Flower_Hat Name: Costume Moonlight Flower Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 268 - Id: 19643 AegisName: C_Whikebain_Ears Name: Costume Wickebine Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 368 - Id: 19644 AegisName: C_Takius_Blindfold Name: Costume Takius Blindfold Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 184 - Id: 19645 AegisName: C_Chinese_Crown Name: Costume Phoenix Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 221 - Id: 19646 AegisName: C_Ramen_Hat Name: Costume Ramen Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 320 - Id: 19647 AegisName: C_Red_Deviruchi_Cap Name: Costume Red Deviruchi Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 271 - Id: 19648 AegisName: C_Fallen_Leaves Name: Costume Autumn Leaves Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 241 - Id: 19649 AegisName: C_White_Baby_Cat_Ears Name: Costume White Baby Cat Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 926 - Id: 19650 AegisName: C_Rainbow_Feather_Deco Name: Costume Rainbow Feather Deco Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 934 Trade: NoDrop: true - Id: 19651 AegisName: C_RWC_Shouting_Mouth Name: Costume RWC Shouting Mouth Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 194 Script: | skill "BS_MAXIMIZE",5; - Id: 19652 AegisName: C_Rabbit_Magic_Hat Name: Costume Rabbit Magic Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 497 - Id: 19653 AegisName: C_Marcher_Hat Name: Costume Marcher Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 269 - Id: 19654 AegisName: C_J_Captain_Hat Name: Costume Ship Captain Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 367 - Id: 19655 AegisName: C_Tiraya_Bonnet Name: Costume Tiraya Bonnet Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 398 - Id: 19656 AegisName: C_Minstrel_Hat Name: Wandering Minstrel Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 240 - Id: 19657 AegisName: C_Captain_Hat Name: Costume Captain Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 236 - Id: 19658 AegisName: C_Vacation_Hat Name: Costume Vacation Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 315 - Id: 19659 AegisName: C_Gray_Fur_Hat Name: Costume Brown Beanie Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 279 - Id: 19660 AegisName: C_Coppola Name: Costume Coppola Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 252 - Id: 19661 AegisName: C_Sweet_Bonnet Name: Costume Sweet Bonnet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 938 - Id: 19662 AegisName: C_Magician_Hat Name: Costume Magician Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 130 - Id: 19663 AegisName: Wishing_Sky_Lantern Name: Costume Wish Lamp Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 947 - Id: 19664 AegisName: C_Campus_Festival Name: Costume Campus Festival Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 721 - Id: 19665 AegisName: C_Poring_Cake_Cap Name: Costume Poring Cake Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 417 - Id: 19666 AegisName: C_Cookie_Hat Name: Costume Cookie Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 217 Script: | bonus2 bAddItemHealRate,513,1100; - Id: 19667 AegisName: C_Helm_Of_Dragoon Name: Costume Dragon Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 464 - Id: 19668 AegisName: C_Wind_Milestone Name: Costume Wind Milestone Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 463 - Id: 19669 AegisName: C_Reginleif_Wings_J Name: Costume Reginleif Hairband Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 468 - Id: 19670 AegisName: C_Southern_Cross Name: Costume Southern Cross Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 601 - Id: 19671 AegisName: C_Pig_Moneybox Name: Costume Piggie Bank Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 603 - Id: 19672 AegisName: C_Poring_Letter Name: Costume Poring Letter Type: Armor Buy: 20 Locations: Costume_Head_Low: true ArmorLevel: 1 View: 604 - Id: 19673 AegisName: C_Love_Guard Name: Costume Love Guard Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 716 - Id: 19674 AegisName: C_Evil_Mask Name: Costume Evil Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 714 - Id: 19675 AegisName: C_Jumping_Poring Name: Costume Jumping Poring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 349 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 19676 AegisName: C_Rainbow_Poring_Hat Name: Costume Rainbow Poring Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 900 - Id: 19677 AegisName: C_Soulless_Wing Name: Costume Soulless Wing Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 301 - Id: 19678 AegisName: C_Bell_Ribbon Name: Costume Bell Ribbon Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 388 - Id: 19679 AegisName: C_Round_Eyes_J Name: Costume Blank Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 185 - Id: 19680 AegisName: C_Tongue_Mask Name: Costume Tongue Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 253 - Id: 19681 AegisName: C_Silver_Tiara Name: Costume Silver Tiara Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 218 - Id: 19682 AegisName: C_Santa_Poring_Hat Name: Costume SantaPoring Cap Type: Armor Buy: 10 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 387 - Id: 19683 AegisName: C_Sweet_Candy Name: Costume Sweet Candy Type: Armor View: 414 Locations: Costume_Head_Low: true ArmorLevel: 1 Script: | bonus2 bExpAddRace,RC_All,5; - Id: 19684 AegisName: C_Happy_Wig Name: Costume Happy Wig Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 305 - Id: 19685 AegisName: C_ShineSantaPoring Name: Costume Shining Santa Poring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 961 - Id: 19686 AegisName: C_SantaHairband Name: Costume Santa Hairband Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 964 Script: | autobonus "{ bonus bFlee,10; }",30,5000,BF_WEAPON|BF_MAGIC,"{ active_transform 1247,5000; specialeffect2 EF_POISONHIT; showscript \"Khehehe-! Chaos! Destruction! Petrifaction!\"; }"; - Id: 19687 AegisName: C_Lush_Rose Name: Costume Lush Rose Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 963 - Id: 19688 AegisName: C_RJC_Katusa Name: Costume Katusa Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 533 - Id: 19689 AegisName: C_Ati_Atihan_Hat Name: Costume Ati Atihan Type: Armor Buy: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 303 - Id: 19690 AegisName: C_Dark_Snake_Lord_Hat_J Name: Costume Dark Snake Lord Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 372 - Id: 19691 AegisName: C_Blue_Ribbon Name: Costume Blue Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 407 - Id: 19692 AegisName: C_Antique_Pipe_J Name: Costume Peace Pipe Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 383 - Id: 19693 AegisName: C_Triple_Poring_Hat Name: Costume Triple Poring Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 299 - Id: 19694 AegisName: C_Vane_Hairpin Name: Costume Vane Hairpin Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 313 - Id: 19695 AegisName: C_Kettle_Hat Name: Costume Kettle Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 318 - Id: 19696 AegisName: C_Friend_Mochiring_Hat Name: Costume Friend Mochiring Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 965 - Id: 19697 AegisName: C_Rudolph_Santa_Hat Name: Costume Rudolph Santa Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 619 - Id: 19698 AegisName: C_Bf_Recruiter_Hat Name: Costume Boyfriend Recruitment Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 352 - Id: 19699 AegisName: C_Gf_Recruiter_Hat Name: Costume Girlfriend Recruitment Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 360 - Id: 19700 AegisName: RWC12_ChampCrown_J Name: Costume RWC2012 Crown of Victory Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 903 - Id: 19701 AegisName: C_Red_Bonnet Name: Costume Red Bonnet Type: Armor Buy: 10 Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 190 - Id: 19702 AegisName: C_Santa_Hat_1 Name: Costume Twin Pompom By JB Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 390 - Id: 19703 AegisName: C_Afro_Wig_Black Name: Costume Black Afro Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 969 - Id: 19704 AegisName: C_Afro_Wig_Red Name: Costume Red Afro Wig Type: Armor View: 970 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 19705 AegisName: C_Afro_Wig_Yellow Name: Costume Yellow Afro Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 971 - Id: 19706 AegisName: C_Red_Dress_Hat Name: Costume Red Dress Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 670 - Id: 19707 AegisName: C_Polar_Bear_Cap Name: Costume Polar Bear Cap Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 966 Script: | bonus bUnbreakableHelm; - Id: 19708 AegisName: Elizabeth Name: Costume White Snake Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 413 - Id: 19709 AegisName: C_Yellow_Ribbon Name: Costume Yellow Ribbon Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 310 - Id: 19710 AegisName: C_Wings_Of_Victory Name: Costume Wings Of Victory Type: Armor Buy: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 365 Trade: NoDrop: true - Id: 19711 AegisName: C_Kafra_Band Name: Costume Wings Kafra Hair Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 106 - Id: 19712 AegisName: C_Little_Angel_Doll Name: Costume Little Angel Doll Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 344 - Id: 19713 AegisName: C_Lucky_Clover Name: Costume Lucky Clover Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 571 - Id: 19714 AegisName: C_Lady_Tanee_Doll Name: Costume Lady Tanee Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 520 - Id: 19715 AegisName: C_Scarf Name: Costume Scarf Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 343 - Id: 19716 AegisName: C_Alice_Doll Name: Costume Alice Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 208 - Id: 19717 AegisName: C_Ribbon_Pink Name: Costume Pink Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 245 - Id: 19718 AegisName: C_Gothic_Head_Dress Name: Costume Gothic Headdress Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 978 - Id: 19719 AegisName: C_Coronet Name: Costume Coronet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 33 - Id: 19720 AegisName: C_Oldman's_Romance Name: Costume Romantic Gent Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 31 - Id: 19721 AegisName: C_Darkness_Helm Name: Costume Darkness Helm Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 586 - Id: 19722 AegisName: C_Black_Glasses Name: Costume Black Glasses Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 404 - Id: 19723 AegisName: C_Sacred_Torch_Coronet Name: Costume Sacred Torch Coronet Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 431 - Id: 19724 AegisName: C_Deprotai_Doll_Hat Name: Costume Deprote Doll Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 354 - Id: 19725 AegisName: C_Bread_Bag2 Name: Costume Bread Bag Type: Armor Buy: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 412 - Id: 19726 AegisName: C_Scarlet_Rose Name: Costume Scarlet Rose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 534 - Id: 19727 AegisName: C_Deviling_Hat Name: Costume Devilring Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 298 - Id: 19728 AegisName: C_Tare_Zonda Name: Costume Tare Zonda Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 985 - Id: 19729 AegisName: C_Neko_Mimi_Kafra Name: Costume Neko Mimi Kafra Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 392 - Id: 19730 AegisName: C_Snake_Hat Name: Costume Snake Hat Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 986 - Id: 19731 AegisName: C_Satanic_Chain Name: Costume Evolved Evil Wing Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 39 Script: | bonus bStr,1; bonus bAgi,1; bonus bFlee,3; bonus2 bSubRace,RC_Angel,3; - Id: 19732 AegisName: C_Goblin_Mask_04 Name: Costume Goblin Leader Mask Type: Armor Buy: 10 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 174 - Id: 19733 AegisName: C_Panda_Cap Name: Costume Panda Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 115 Script: | bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; - Id: 19734 AegisName: C_Binoculars Name: Costume Binoculars Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 83 Script: | bonus bDex,1; - Id: 19735 AegisName: C_Fin_Helm Name: Costume Fin Helm Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 100 - Id: 19736 AegisName: C_Gas_Mask Name: Costume Gas Mask Type: Armor Buy: 10 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 91 Script: | bonus2 bResEff,Eff_Poison,3000; - Id: 19737 AegisName: C_Corsair_K Name: Costume Refined Corsair Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 105 Script: | bonus bVit,3; bonus bInt,3; - Id: 19738 AegisName: C_Detective_Hat_K Name: Costume Renown Detective's Cap Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 189 - Id: 19739 AegisName: C_Sleeping_Kitty_Cat Name: Costume Sleeping Kitty Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 838 Script: | bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; - Id: 19740 AegisName: C_Guildsman_Recruiter Name: Costume Guild Member Recruitment Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 350 - Id: 19741 AegisName: C_Majestic_Evil_Horn Name: Costume Majestic Devil Horns Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 562 - Id: 19742 AegisName: Little_Golden_Wing Name: Costume Small Golden Wings Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 724 Script: | bonus2 bExpAddRace,RC_All,1; - Id: 19743 AegisName: C_Anubis_Helm_J Name: Costume Anubis Helm Type: Armor Buy: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 485 - Id: 19744 AegisName: C_Black_Tail_Ribbon Name: Costume Black Tail Ribbon Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 642 - Id: 19745 AegisName: C_Holy_Marching_Hat_J Name: Costume Holy Marching Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 587 - Id: 19746 AegisName: C_Cap_Of_Blindness Name: Costume Executioner Hood Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 326 - Id: 19747 AegisName: C_Tha_Despero_Mask_J Name: Costume Tha Despero Mask Type: Armor Buy: 20 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 693 - Id: 19748 AegisName: C_Diadem Name: Costume Diadem Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 335 - Id: 19749 AegisName: C_Gold_Spirit_Chain Name: Costume Gold Spirit Chain Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 260 - Id: 19750 AegisName: C_Saint_Frill_Ribbon Name: Costume Saint Frill Ribbon Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 987 - Id: 19751 AegisName: C_Light_Darkness_Crown Name: Costume Light Darkness Crown Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 988 - Id: 19752 AegisName: C_Shelter_Wing_Ears Name: Costume Shelter Wing Ears Type: Armor Buy: 10 Weight: 300 Defense: 3 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 990 - Id: 19753 AegisName: C_Celestial_Hat Name: Costume Celestial Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 462 - Id: 19754 AegisName: C_Good_Wedding_Veil Name: Costume Good Wedding Veil Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 489 - Id: 19755 AegisName: C_YinYang_Earring Name: Costume YinYang Earring Type: Armor Buy: 10 Weight: 300 Defense: 3 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 744 - Id: 19756 AegisName: C_Holy_Mom_Love Name: Costume Holy Mom Love Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 610 - Id: 19757 AegisName: C_Water_Lily_Crown Name: Costume Water Lily Crown Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 312 - Id: 19758 AegisName: C_King_Frog_Hat Name: Costume Frog King Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 522 - Id: 19759 AegisName: C_Umbrella_Hat Name: Costume Umbrella Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 338 - Id: 19760 AegisName: C_Rainbow_Veil Name: Costume Rainbow Veil Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 992 - Id: 19761 AegisName: C_White_Lily Name: Costume White Lily Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 993 - Id: 19762 AegisName: C_Happy_Peace_Proof Name: Costume Happy Peace Proof Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 994 - Id: 19763 AegisName: C_Leaf_Cat_Hat Name: Costume Leaf Cat Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 539 - Id: 19764 AegisName: C_Card_In_The_Mouth Name: Costume Monster Card Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 View: 526 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 19765 AegisName: C_Ear_Of_Angel's_Wing Name: Costume Wing Angels Ears Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 158 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 19766 AegisName: C_Yggdrasil_Hat Name: Costume Yggdrasil Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 997 - Id: 19767 AegisName: C_Home_Cherry_Blossom Name: Costume Home Cherry Blossom Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 602 - Id: 19768 AegisName: C_Sakura_Coronet Name: Costume Sakura Coronet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 645 - Id: 19769 AegisName: C_Mischievous_Fairy Name: Costume Elf Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 405 - Id: 19770 AegisName: C_Japan_Winecup Name: Costume Sake Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 557 - Id: 19771 AegisName: C_Butterfly_Hairpin Name: Costume Buterfly Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 723 - Id: 19772 AegisName: C_Honeybee_Hat Name: Costume Honeybee Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 709 - Id: 19773 AegisName: C_Angeling_Hairpin Name: Costume Angeling Pin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 222 - Id: 19774 AegisName: C_Emperor_Wreath_J Name: Costume Laurel Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 261 - Id: 19775 AegisName: C_Marvelous_Wig Name: Costume Dokebi Hat Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 307 - Id: 19776 AegisName: C_Tomboy_Fairy Name: Costume Tomboy Fairy Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 998 - Id: 19777 AegisName: C_Twinkle_Little_Star Name: Costume Shiny Small Star Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1005 - Id: 19778 AegisName: C_King_Berry Name: Costume King Berry Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 968 - Id: 19779 AegisName: C_Persika Name: Costume Persika Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 659 Script: | bonus bAllStats,1; bonus2 bExpAddClass,Class_All,10; - Id: 19780 AegisName: C_Rabbit_Ear_Knit_Hat Name: Costume Knit Rabbit Ears Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 867 Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; - Id: 19781 AegisName: C_Ear_Of_Angel's_Wing_ Name: Costume Angel Wing Ears Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 158 - Id: 19782 AegisName: C_Drooping_Kitty Name: Costume Refined Drooping Cat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 142 - Id: 19783 AegisName: C_Granpa_Beard Name: Costume Grampa Beard Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 25 - Id: 19784 AegisName: C_Morrigane's_Helm Name: Costume Morrigane's Helm Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 257 - Id: 19785 AegisName: C_Well_Baked_Toast Name: Costume Crunch Toast Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 188 - Id: 19786 AegisName: C_Mistress_Crown Name: Costume Crown of Mistress Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 165 - Id: 19787 AegisName: C_Devoted_Eyes Name: Costume Devoted Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1021 - Id: 19788 AegisName: C_Heart_Eyepatch Name: Costume Heart Eyebandage Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 779 - Id: 19789 AegisName: C_Sweet_Gents Name: Costume Sweet Gent Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 29 - Id: 19790 AegisName: C_Wedding_Veil Name: Costume Wedding Veil Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 44 - Id: 19791 AegisName: C_Alarm_Mask Name: Costume Alarm Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 170 - Id: 19792 AegisName: C_Goblin_Mask_01 Name: Costume Poker Face Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 171 - Id: 19793 AegisName: C_Goblin_Mask_02 Name: Costume Surprised Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 172 - Id: 19794 AegisName: C_Goblin_Mask_03 Name: Costume Annoyed Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 173 - Id: 19795 AegisName: C_Lord_Circlet Name: Costume Grand Circlet Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 93 - Id: 19796 AegisName: C_Bone_Helm Name: Costume Bone Helm Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 103 - Id: 19797 AegisName: C_Apple_Of_Archer Name: Costume Apple of Archer Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 72 - Id: 19798 AegisName: C_Angry_Mouth Name: Costume Angry Snarl Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 194 - Id: 19799 AegisName: C_Golden_Gear Name: Costume Golden Gear Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 30 - Id: 19800 AegisName: C_Carnation_Hairband Name: Costume Carnation Headband Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 878 - Id: 19801 AegisName: C_Fox_Hat_J Name: Costume Foxhat Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 403 - Id: 19802 AegisName: C_Drooping_Nine_Tail Name: Costume Lazy Ninetail Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 296 - Id: 19803 AegisName: C_Pinwheel_Cap Name: Costume Windtoy Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 456 - Id: 19804 AegisName: C_Red_Vane_Hairpin Name: Costume Red Vane Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1044 - Id: 19805 AegisName: C_Taboo_Curse_Scroll Name: Costume Curse Scroll Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1045 - Id: 19806 AegisName: C_Full_Bloom_Hairpin Name: Costume Bloom Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1046 - Id: 19807 AegisName: C_Majestic_Helmet Name: Costume Majestihelm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1047 - Id: 19808 AegisName: C_Blazing_Sun Name: Costume Blazing Sun Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 654 - Id: 19809 AegisName: C_Cowboy_Hat_J Name: Costume Purple Cowboy Hat Type: Armor View: 411 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 19810 AegisName: C_Ifrit's_Ear Name: Costume Ifrit Ear Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 422 - Id: 19811 AegisName: C_Beer_Cap Name: Costume Beer Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 418 - Id: 19812 AegisName: C_Large_Hibiscus Name: Costume Big Hibiscus Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 333 - Id: 19813 AegisName: C_Icecream_Hat Name: Costume Icecream Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 488 - Id: 19814 AegisName: C_Shiny_Wig Name: Costume Bright Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 306 - Id: 19815 AegisName: C_Lolita_Ten_Gallon_Hat Name: Costume Lolita Ten Gallon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1048 - Id: 19816 AegisName: C_Pecopeco_Cap Name: Costume Pecopeco Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1049 - Id: 19817 AegisName: C_Ifrits_Breath Name: Costume Ifrits Breath Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1050 - Id: 19818 AegisName: C_Droop_Morocc_Minion Name: Costume Drooping Morooc Minion Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 600 - Id: 19819 AegisName: C_Necromencer_Hood Name: Costume Gang Doogun Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 491 - Id: 19820 AegisName: C_Bone_Hat Name: Costume Bone Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 732 - Id: 19821 AegisName: C_Hyegun_Hat Name: Costume Yao Jun Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 375 - Id: 19822 AegisName: C_Yellow_Bandana Name: Costume Yellow Doogun Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 309 - Id: 19823 AegisName: C_White_Cat_Hood Name: Costume White Cat Hood Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1052 - Id: 19824 AegisName: C_Evil_Druid_Hat Name: Costume Evil Druid Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1053 - Id: 19825 AegisName: C_Vicious_Stop_Bandage Name: Costume Vicious Stop Bandage Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1054 - Id: 19826 AegisName: C_Ice_Wing_Ear Name: Costume Ice Wing Ear Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 584 - Id: 19827 AegisName: C_Amistr_Cap Name: Costume Amistr Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 643 - Id: 19828 AegisName: C_Fedora Name: Costume Bucket Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 195 - Id: 19829 AegisName: C_Straw_Hat Name: Costume Straw Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 146 - Id: 19830 AegisName: C_Sunglasses Name: Costume Sunglasses Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 12 - Id: 19831 AegisName: C_Filir_Hat Name: Costume Filir Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 408 - Id: 19832 AegisName: C_Poring_Hat Name: Costume Poring Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 120 - Id: 19833 AegisName: C_Fillet Name: Costume Fillet Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 34 - Id: 19834 AegisName: C_Baseball_Cap Name: Costume Baseball Cap Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 216 - Id: 19835 AegisName: C_Lif_Doll_Hat Name: Costume Lif Doll Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 297 - Id: 19836 AegisName: C_L_Magestic_Goat Name: Costume Majestic Goat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 380 - Id: 19837 AegisName: C_Asara_Fairy_Hat Name: Costume Asara Fairy Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 492 - Id: 19838 AegisName: C_Fox_Hat Name: Costume Fox Hat Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 403 - Id: 19839 AegisName: C_Vanilmirth_Hat Name: Costume Vanilmirth Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 317 - Id: 19840 AegisName: C_Helm_Of_Sun Name: Costume Hat of the Sun God Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 138 - Id: 19841 AegisName: C_Dragonhelm_Copper Name: Costume Dragon Helm Copper Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 454 - Id: 19842 AegisName: C_Puppy_Hat Name: Costume Puppy Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 234 - Id: 19843 AegisName: C_Cat_Hairband Name: Costume Kitty Band Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 2 - Id: 19844 AegisName: C_Turban Name: Costume Turban Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 7 - Id: 19845 AegisName: C_Hair_Protector Name: Costume Bao Bao Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 127 - Id: 19846 AegisName: C_Opera_Ghost_Mask Name: Costume Opera Masque Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 128 - Id: 19847 AegisName: C_Big_Sis_Ribbon Name: Costume Big Ribbon Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 28 - Id: 19848 AegisName: C_Angeling_Hat Name: Costume Angeling Hat Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 204 - Id: 19849 AegisName: C_Munak_Turban Name: Costume Munak Hat Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 51 - Id: 19850 AegisName: C_Bongun_Hat Name: Costume Bongun Hat Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 139 - Id: 19851 AegisName: C_Brown_Bear_Cap Name: Costume Teddybear Hat Type: Armor Buy: 20 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 143 - Id: 19852 AegisName: C_Galapago_Cap Name: Costume Galapago Cap Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 192 - Id: 19853 AegisName: C_Filir_Wing_Ears Name: Costume Filir Wings Type: Armor Buy: 20 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 595 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,5; bonus bAspd,1; bonus bUseSPrate,-5; - Id: 19854 AegisName: C_Ear_Of_Black_Cat_ Name: Costume Black Cat Ears Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 141 - Id: 19855 AegisName: C_Happy_Summer_Wig Name: Costume Happy Summer Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1059 - Id: 19856 AegisName: C_Iceflake_Hat Name: Costume Snow Cone Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1080 Script: | bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; bonus2 bAddMonsterDropItem,11589,5; - Id: 19857 AegisName: C_King_Prawn_Hat Name: Costume Crayfish Hat Type: Armor Buy: 10 Weight: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 728 - Id: 19858 AegisName: C_Leaf_Headgear Name: Costume Smokie Leaf Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 148 - Id: 19859 AegisName: C_Flying_Angel Name: Costume Flying Angel Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 264 - Id: 19860 AegisName: C_Cryptura_Hair_Cap Name: Costume School Criatura Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 872 - Id: 19861 AegisName: C_Heart_Hair_Pin Name: Costume Heart Hairpin Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 126 - Id: 19862 AegisName: C_Horn_Of_Succubus Name: Costume Succubus Horn Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 150 - Id: 19863 AegisName: C_Inccubus_Horn Name: Costume Incubus Horn Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 156 - Id: 19864 AegisName: C_Afro_Wig Name: Costume Dokebi's Wig Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 302 - Id: 19865 AegisName: C_Joker_Jester Name: Costume Joker Jester Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 89 - Id: 19866 AegisName: C_Blue_Pajamas_Hat Name: Costume Blue Pajamas Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 501 - Id: 19867 AegisName: C_Pink_Pajamas_Hat Name: Costume Pink Pajama Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 502 - Id: 19868 AegisName: aegis_19868 Name: Costume Showy High Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 830 - Id: 19869 AegisName: C_Ancient_Civil_Man Name: Costume Ancient Civil Man Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 846 - Id: 19870 AegisName: C_Black_Rabbit_Hat Name: Costume Black Rabbit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 923 - Id: 19871 AegisName: C_Music_Decoration Name: Costume Decoration of Music Type: Armor Buy: 20 Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1074 EquipScript: | sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; UnEquipScript: | sc_end SC_DECORATION_OF_MUSIC; - Id: 19872 AegisName: C_Phantom_Of_Opera Name: Costume Phantom Of Opera Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 68 - Id: 19873 AegisName: C_Carnival_Hat Name: Costume Carnival Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 502 - Id: 19874 AegisName: C_Carnival_Circlet Name: Costume Carnival Circlet Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 506 - Id: 19875 AegisName: C_Love_Rabbit_Hood Name: Costume Love Rabbit Hood Type: Armor View: 549 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 - Id: 19876 AegisName: C_Rabbit_Ear_Hat Name: Costume Bunny Top Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 384 - Id: 19877 AegisName: C_Eyes_Of_Darkness Name: "Costume: Eyes Of Darkness" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 467 - Id: 19878 AegisName: C_Drooping_Bunny Name: Costume Evolved Drooping Bunny Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 249 - Id: 19879 AegisName: C_Black_Bunny_Band Name: Costume Black Bunny Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 267 - Id: 19880 AegisName: C_Gold_Tiara Name: Costume Gold Tiara Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 232 - Id: 19881 AegisName: C_Pretty_Rabbit_Hood Name: Costume Pretty Rabbit Hood Type: Armor View: 1085 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 - Id: 19882 AegisName: C_Flowerpot_Mask Name: Costume Flowerpot Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1086 - Id: 19883 AegisName: C_Piamette_Hood Name: Costume Piamette Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1087 - Id: 19884 AegisName: C_Vanargandr_Helm Name: Costume Vanargand Helm Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 804 - Id: 19885 AegisName: C_Blinker Name: Costume Blinker Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 82 - Id: 19886 AegisName: C_Luxury_Sunglasses Name: Costume Purple Glasses Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 26 - Id: 19887 AegisName: C_One_Eyed_Glass Name: Costume Cyclops Glasses Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 23 - Id: 19888 AegisName: C_Glasses Name: Costume Glasses Type: Armor Buy: 10 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 3 - Id: 19889 AegisName: C_Pair_Of_Red_Ribbon Name: Costume Small Ribbons Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 169 - Id: 19890 AegisName: C_Wizardry_Hat Name: Costume Wizardry Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 112 - Id: 19891 AegisName: C_Fried_Egg_Hat Name: Costume Fried Egg Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 373 - Id: 19892 AegisName: C_Night_Sparrow_Hat Name: Costume Night Sparrow Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 913 - Id: 19893 AegisName: C_Black_Mage_Hat Name: Costume Ordinary Black Magician Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 912 - Id: 19894 AegisName: C_Shrine_Maiden_Hat Name: Costume Shrine Maiden Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 908 - Id: 19895 AegisName: C_Sorc_Night_Cap Name: Costume Magician's Night Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 911 - Id: 19896 AegisName: C_Ph_Ro_10th_Cap Name: Costume pRO 10th Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1094 - Id: 19897 AegisName: RPC13_1ST_Wreath Name: Costume RPC 1ST Wreath Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 261 Script: | bonus bAllStats,3; bonus bMdef,3; - Id: 19898 AegisName: RPC13_2ND_Wreath Name: Costume RPC 2ND Wreath Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 261 Script: | bonus bAllStats,2; bonus bMdef,2; - Id: 19899 AegisName: RPC13_3RD_Wreath Name: Costume RPC 3RD Wreath Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 261 Script: | bonus bAllStats,1; bonus bMdef,1; - Id: 19900 AegisName: Special_Eyepatch Name: Cool Pirate Eyepatch Type: Armor Weight: 100 Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1094 Script: | bonus2 bAddMonsterDropItem,22660,50; - Id: 19901 AegisName: C_Viking_Helm Name: Costume Orc Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 86 - Id: 19902 AegisName: C_Cigar Name: Costume Cigarette Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 54 - Id: 19903 AegisName: C_Witchs_Hat Name: Costume Witch's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 717 - Id: 19904 AegisName: C_Skull_Cap Name: Costume Skull cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 713 - Id: 19905 AegisName: C_Secret_Society_Hood Name: Costume Secret Bandana Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 806 - Id: 19906 AegisName: C_24_Bolt Name: Costume 24 Bolt Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 696 - Id: 19907 AegisName: C_Fancy_Phantom_Mask Name: Costume Beautiful Phantom Mask Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 710 - Id: 19908 AegisName: C_Joker_Jester_ Name: Costume National flag hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 219 - Id: 19909 AegisName: C_White_Deviruchi_Cap Name: Costume White Baby demom hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 272 - Id: 19910 AegisName: C_Halloween_Hat Name: Costume Halloween Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1098 - Id: 19911 AegisName: C_Triangular_Roof_Hat Name: Costume Triangle roof hat Type: Armor View: 1099 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 19912 AegisName: C_Cat_Eye Name: "Costume: Cat eye" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1100 - Id: 19913 AegisName: C_Poo_Poo_Hat Name: Costume Poo Poo Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 76 - Id: 19914 AegisName: Felock_Cap Name: Felrock's Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1101 - Id: 19915 AegisName: C_Little_Devil_S_Horn Name: Costume Little Devil's Horn Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1103 - Id: 19916 AegisName: C_Black_Cat_Hat Name: Costume Black Cat Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1105 - Id: 19917 AegisName: C_Gloomy_Pumpkin_Hat Name: Costume Pumpkin Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 691 Script: | bonus bSpeedRate,25; - Id: 19918 AegisName: C_Lude_Mask Name: Costume Lude Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 802 Script: | bonus bAddItemHealRate,20; - Id: 19919 AegisName: C_Cube_Mask_ Name: Costume Quve Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 472 Script: | bonus bAspdRate,10; - Id: 19920 AegisName: C_Adv_Whisper_Mask Name: Costume Evolved Whisper Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 458 Script: | bonus bFlee,20; - Id: 19921 AegisName: C_Drooping_Wild_Rose Name: Costume Wild Rose Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 541 - Id: 19922 AegisName: C_Noah_Hat Name: Costume Noah's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 636 - Id: 19923 AegisName: C_Dark_Age Name: Costume Dark Age Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 766 - Id: 19924 AegisName: C_Odin_Mask Name: Costume Odin Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 480 - Id: 19925 AegisName: C_One_Eyed_Glasses Name: Costume Monocle Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 807 - Id: 19926 AegisName: C_Ribbon_Black Name: Costume Ribbon Black Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 242 - Id: 19927 AegisName: C_Gray_Drooping_Kitty Name: Costume Drooping Gray Kitty Type: Armor View: 275 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 19928 AegisName: C_Gothic_Heart_Wing Name: Costume Gothic Heart Wing Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1111 - Id: 19929 AegisName: C_Classical_Ribbon Name: Costume Classical Ribbon Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1112 - Id: 19930 AegisName: C_Angel_Mini_Silk_Hat Name: Costume Angel Mini Silk Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1113 - Id: 19931 AegisName: C_Lazy_Raccoon Name: Costume Lazy Smokie Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 168 - Id: 19932 AegisName: C_Cap_Of_Concentration Name: Costume Model Training Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 157 - Id: 19933 AegisName: C_711_Headphone Name: Costume 711 Headphone # !todo check english name Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1131 - Id: 19934 AegisName: C_10Gallon_Hat_Of_Flame Name: Costume Alive Ten Gallon Hat Of Flame Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1075 - Id: 19935 AegisName: C_Hunting_Cap_Of_Gust Name: Costume Hunting Cap Of Gust Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1076 - Id: 19936 AegisName: C_Knit_Cap_Of_Water Name: Costume Knit Cap Of Water Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1077 - Id: 19937 AegisName: C_Silk_Hat_Of_Earth Name: Costume Silk Hat of Earth Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1078 - Id: 19938 AegisName: LI_C_Love_Rabbit_Hood Name: Costume Love Rabbit Hood Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 549 Trade: NoDrop: true - Id: 19939 AegisName: C_Antler Name: Costume Antlers Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 71 - Id: 19940 AegisName: C_Event_Pierrot_Nose Name: Costume Clown Nose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 49 - Id: 19941 AegisName: C_Ear_Mufs Name: Costume Ear Muffs Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 70 - Id: 19942 AegisName: C_Orchid_Hairband Name: Costume Orchid Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 376 - Id: 19943 AegisName: C_Hat_Of_Judge Name: Costume Judge Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 377 - Id: 19944 AegisName: C_RTC_Third_Best Name: Costume Goddess of Victory(Purple) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 579 - Id: 19945 AegisName: C_RTC_Third Name: Costume Winner Helmet(Copper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 685 - Id: 19946 AegisName: C_Rocket_Helm_RWC Name: Costume Shuttle to Apex(Blue) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 769 - Id: 19947 AegisName: C_Rainbow_Scarf Name: Costume Rainbow Scarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 460 - Id: 19948 AegisName: C_Globe_Hat Name: Costume Globe Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1135 - Id: 19949 AegisName: C_RWC_2013_Hat Name: Costume RWC2013 Japan Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1136 - Id: 19950 AegisName: C_RWC_Champ_Crown Name: Costume Princess Tiara Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 914 - Id: 19951 AegisName: C_Solo_Play_Box2 Name: Costume Cardboard Box Type: Armor View: 450 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 - Id: 19952 AegisName: C_Bubble_Gum_In_Mouth Name: Costume Bubble Gum in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 572 - Id: 19953 AegisName: C_Parade_Cap Name: Costume Parade Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 465 - Id: 19954 AegisName: C_3D_Glasses Name: Costume 3D Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 661 - Id: 19955 AegisName: C_Mini_Tree_J Name: Costume Mini Tree J Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 727 - Id: 19956 AegisName: C_Soldier_Hat Name: Costume Soldier Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 420 - Id: 19957 AegisName: C_Scooter_Hat_J Name: Costume Scooter Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 588 - Id: 19958 AegisName: C_Choir_Hat Name: Costume Choir Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1137 - Id: 19959 AegisName: C_Drooping_Argiope Name: Costume Drooping Argiope Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1138 - Id: 19960 AegisName: C_Chain_Puppet Name: Costume Chain Puppet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1139 - Id: 19961 AegisName: C_Rune_Circlet Name: Costume Rune Circlet Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 623 - Id: 19962 AegisName: C_Mitra Name: Costume Mitra Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 624 - Id: 19963 AegisName: C_Driver_Band_R Name: Costume Driver Band(Red) Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 626 - Id: 19964 AegisName: C_Driver_Band_Y Name: Costume Driver Band(Yellow) Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 637 - Id: 19965 AegisName: C_Shadow_Handicraft Name: Costume Shadow Handicraft Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 627 - Id: 19966 AegisName: C_Minstrel_Song_Hat Name: Costume Minstrel Song's Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 628 - Id: 19967 AegisName: C_Midas_Whisper Name: Costume Midas Whisper Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 629 - Id: 19968 AegisName: C_Magic_Stone_Hat Name: Costume Magic Stone Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 630 - Id: 19969 AegisName: C_Blazing_Soul Name: Costume Blazing Soul Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 631 - Id: 19970 AegisName: C_Wind_Whisper Name: Costume Wind Whisper Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 633 - Id: 19971 AegisName: C_Dying_Swan Name: Costume Dying Swan Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 635 - Id: 19972 AegisName: C_Protect_Of_Crown Name: Costume Protect Of Crown Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1140 - Id: 19973 AegisName: C_Circlet_Of_Bone Name: Costume Circlet Of Bones Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1141 - Id: 19974 AegisName: C_Camouflage_RabbitHood Name: Costume Camouflage Rabbit Hood Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1142 - Id: 19975 AegisName: C_Boss_Beret Name: Costume Beret BOSS hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1134 - Id: 19976 AegisName: C_Cat_Santa_Hat Name: Cat Santa Hat Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1144 Script: | bonus bAspdRate,10; bonus bSpeedRate,25; - Id: 19977 AegisName: C_Golden_Exclamation Name: Costume Golden Exclamation Mark Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1145 - Id: 19978 AegisName: C_Silver_Exclamation Name: Costume Silver Exclamation Mark Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1146 - Id: 19979 AegisName: C_Golden_Question Name: Costume Golden Question Mark Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1147 - Id: 19980 AegisName: C_Silver_Question Name: Costume Silver Question Mark Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1148 - Id: 19981 AegisName: C_Santa_Beard Name: Costume Santa's Beard Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 25 - Id: 19982 AegisName: C_Santa's_Hat Name: Costume Santa Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 20 Script: | if (gettime(DT_MONTH) == 12) { bonus bMaxHP,1000; bonus bMaxSP,100; bonus bAspd,3; bonus2 bAddClass,Class_All,10; bonus bMatkRate,10; bonus bHealPower,10; } - Id: 19983 AegisName: C_Flower_Hairpin Name: Costume Flower Hairpin Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 145 - Id: 19984 AegisName: C_Winter_Hat Name: Costume Fashion Winter Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 196 - Id: 19985 AegisName: C_Aura_Quartz_Crown Name: Costume Aura Quartz Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 866 - Id: 19986 AegisName: C_Lunatic_Hat Name: Costume Lunatic Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 521 - Id: 19987 AegisName: C_Blue_Fur_Hat Name: Costume Blue Fur Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 280 - Id: 19988 AegisName: C_Elder_Crown Name: Costume Elder Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 933 - Id: 19989 AegisName: C_Mouton_Life Name: Costume Mouton Life Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1156 - Id: 19990 AegisName: C_Snow_Rabbit_Knit_Hat Name: Costume Rabbit Knit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1157 - Id: 19991 AegisName: C_Galanthus_Guard Name: Costume Galanthus Guard Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1158 - Id: 19992 AegisName: C_Chilly_Breath Name: Costume Chilly Breath Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 885 - Id: 19993 AegisName: C_Onigiri_In_Mouth Name: Costume Onigiri Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 774 - Id: 19994 AegisName: C_saLUsalo_Cap Name: Costume saLUsalo Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1171 - Id: 19995 AegisName: Flower_Blossom Name: Costume Flower Blossom Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1176 - Id: 19996 AegisName: Horse_King Name: Horse King Type: Armor Buy: 10 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1189 - Id: 19997 AegisName: C_Bomb_Hat Name: Costume Bomb Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1191 - Id: 19998 AegisName: C_Dragon_Turtle_Hat Name: Costume Dragon Turtle Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1192 - Id: 19999 AegisName: C_Mouse_Hat1 Name: Costume Mouse Hat 1 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1193 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20000 AegisName: C_Mouse_Hat2 Name: Costume Mouse Hat 2 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1194 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20001 AegisName: C_Mouse_Hat3 Name: Costume Mouse Hat 3 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1195 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20002 AegisName: C_Mouse_Hat4 Name: Costume Mouse Hat 4 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1196 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20003 AegisName: C_Mouse_Hat5 Name: Costume Mouse Hat 5 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1197 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20004 AegisName: C_Big_Golden_Bell Name: Costume Big Golden Bell Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 175 - Id: 20005 AegisName: C_Pegasus_Wing_Ears Name: Costume Sigrun Wing Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 568 - Id: 20006 AegisName: C_Dark_Knight_Mask Name: Costume Dark Knight Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 479 - Id: 20007 AegisName: C_Bullock_Helm_J Name: Costume Horned Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 322 - Id: 20008 AegisName: C_General_Helmet Name: Costume Dragon General Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 729 - Id: 20009 AegisName: C_Dragon_Skull Name: Costume Dragon Skull Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 319 - Id: 20010 AegisName: C_Rainbow_Wing_Ears Name: Costume Rainbow Wing Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1198 - Id: 20011 AegisName: C_Lightning_Speed Name: Costume Lightning Speed Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1199 - Id: 20012 AegisName: C_Double_Horn_Helm Name: Costume Double Horn Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1200 - Id: 20013 AegisName: C_Hat_Of_Cook Name: Costume Chef Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 111 - Id: 20014 AegisName: Lincoln_Hat Name: Costume Lincoln Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1204 - Id: 20015 AegisName: Lincoln_Beard Name: Costume Lincoln Beard Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1205 - Id: 20016 AegisName: Lobster_Hat Name: Costume Cool Dinner Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1206 - Id: 20017 AegisName: C_Marionette_Doll Name: Costume Marionette Doll Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 212 - Id: 20018 AegisName: Horo_Ears Name: Costume Holo Ear Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1208 - Id: 20019 AegisName: Beret_Of_Artist Name: Costume Beret Of Artist Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1209 - Id: 20020 AegisName: C_Zaha_Doll_Hat_J Name: Costume Zaha Doll Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 461 - Id: 20021 AegisName: C_Heart_Ribbon_Band Name: Costume Heart Ribbon Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 708 - Id: 20022 AegisName: C_Love_Piece Name: Costume Love Fragment Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 734 - Id: 20023 AegisName: C_Red_Beret Name: Costume Red Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 559 - Id: 20024 AegisName: C_Ribbon_Orange Name: Costume Orange Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 247 - Id: 20025 AegisName: C_Cow_Hat1 Name: Costume Cow Hat 1 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1211 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; - Id: 20026 AegisName: C_Cow_Hat2 Name: Costume Cow Hat 2 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1212 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; - Id: 20027 AegisName: C_Cow_Hat3 Name: Costume Cow Hat 3 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1213 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; - Id: 20028 AegisName: C_Cow_Hat4 Name: Costume Cow Hat 4 Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1214 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; bonus2 bAddMonsterDropItem,519,100; - Id: 20029 AegisName: C_Donut_In_Mouth_J Name: Costume Donut in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 569 - Id: 20030 AegisName: C_Choco_Donut_In_Mouth Name: Costume Choco Donut in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 653 - Id: 20031 AegisName: C_Bunny_Head_Dress Name: Costume Bunny Headress Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1215 - Id: 20032 AegisName: C_Firinto_Scarf Name: Costume Firinto Scarf Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1216 - Id: 20033 AegisName: C_Buddhist_Priest_Crown Name: Costume Monk Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1217 - Id: 20034 AegisName: C_Jack_Castle_Bat Name: Costume Jack Castle Bat Type: Armor Buy: 10 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1041 - Id: 20035 AegisName: C_Miracle_Blue_Rose Name: Costume Miracle Blue Rose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1064 - Id: 20036 AegisName: C_Sword_Master_Crown Name: Costume Sword Master Crown Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 981 - Id: 20037 AegisName: C_Owlduke_Silk_Hat Name: Costume Owlduke Silk Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 982 - Id: 20038 AegisName: Alphonse_Helmet Name: Costume Haunted Armor Helm Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1207 - Id: 20039 AegisName: C_Butterfly_Wing_Ear_J Name: Costume Butterfly Wing Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 695 - Id: 20040 AegisName: C_Rose_Crown Name: Costume Chung Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 583 - Id: 20041 AegisName: C_Earth_Goddess_Flower Name: Costume Rose Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 864 - Id: 20042 AegisName: C_Hermose_Cap Name: Costume Hermos Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 478 - Id: 20043 AegisName: C_Red_Cherry_Blossom Name: Costume Cherryblossom in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 823 - Id: 20044 AegisName: C_Carmen_Miranda_Hat Name: Costume Carmen Miranda's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 329 - Id: 20045 AegisName: C_Samambaia Name: Costume Samambaia Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 508 - Id: 20046 AegisName: C_Decoration_bluerose Name: Costume Blue Ribbon Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1222 - Id: 20047 AegisName: C_Pray_Cherry_Blossom Name: Costume Prayer Cherry Blossom Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1223 - Id: 20048 AegisName: C_Wind_Of_The_Prairie Name: Costume Wind Prairie Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1224 - Id: 20049 AegisName: C_Plaster Name: Costume Giant Band Aid Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 147 - Id: 20050 AegisName: C_Ph.D_Hat Name: Costume Ph.D Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 98 - Id: 20051 AegisName: C_Stop_Post Name: Costume Stop Post Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 59 - Id: 20052 AegisName: C_Notice_Board Name: Costume AFK Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 471 - Id: 20053 AegisName: C_White_Tiger_Hat Name: Costume White King Tiger Doll Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 973 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20054 AegisName: C_Baby_Pacifier Name: Costume Baby Pacifier Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 191 - Id: 20055 AegisName: C_Ghost_Bandana Name: Costume Ghost Bandana Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 61 - Id: 20056 AegisName: C_Bride_Corolla Name: Costume Bride's Corolla Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 437 - Id: 20057 AegisName: C_Feather_Bonnet Name: Costume Feather Bonnet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 104 - Id: 20058 AegisName: C_Headband_Of_Power Name: Costume Hot Blood Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 154 - Id: 20059 AegisName: C_Welding_Mask Name: Costume Welding Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 79 - Id: 20060 AegisName: C_Safety_Helmet Name: Costume Construction Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 95 - Id: 20061 AegisName: C_Ganster_Mask Name: Costume Demo Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 52 - Id: 20062 AegisName: C_Angel_Stairs Name: Costume Angel Stair Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true EquipScript: | sc_start SC_HAT_EFFECT,INFINITE_TICK,0; UnEquipScript: | sc_end SC_HAT_EFFECT; - Id: 20063 AegisName: Yellow_Brain_Hat Name: Costume Yellow Brain Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1228 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20064 AegisName: Blue_Brain_Hat Name: Costume Blue Brain Hat Type: Armor Buy: 10 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1229 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20065 AegisName: C_Hairband_Of_Grandpeco Name: Costume Grand Peco Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 473 - Id: 20066 AegisName: C_Pecopeco_Hairband Name: Costume Pecopeco Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 314 - Id: 20067 AegisName: C_Whrabbit_Hband Name: Costume White Rabbit Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 719 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20068 AegisName: C_Blrabbit_Hband Name: Costume Black Rabbit Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 718 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20069 AegisName: C_Gryphon_Hairband Name: Costume Gryphon Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1233 - Id: 20070 AegisName: C_Alpaca_Hood Name: Costume Alpaca Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1234 - Id: 20071 AegisName: C_Worg_In_Mouth Name: Costume Worg In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1235 - Id: 20072 AegisName: C_Deviruchi_Cap_ Name: Costume Deviruchi Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 123 - Id: 20073 AegisName: C_Hair_Band Name: Costume Hair Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 9 - Id: 20074 AegisName: C_Biretta Name: Costume Biretta Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 11 - Id: 20075 AegisName: C_Little_Fhat Name: Costume Little Feather Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 715 - Id: 20076 AegisName: C_Idun_Wing_Ears Name: Costume Idun Feather Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 724 - Id: 20077 AegisName: C_Wing_Form_Spectacle Name: Costume Wing Frame Sunglasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 925 - Id: 20078 AegisName: C_White_Feather Name: Costume White Feather Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 741 - Id: 20079 AegisName: C_Love_Daddy_2013 Name: Costume Forgotten Angel Wing Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1104 - Id: 20080 AegisName: C_Shaman's_Hair_Orna Name: Costume Shaman Hair Ornament Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 476 - Id: 20081 AegisName: MetalDragon_Helm Name: Costume Metal Dragon Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1242 - Id: 20082 AegisName: MetalDragon_Hat Name: Costume Metal Dragon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1243 - Id: 20083 AegisName: Mythlit_Hat Name: Costume Mythlit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1244 - Id: 20084 AegisName: C_Clover_Coronet Name: Costume Ceremonial Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 325 - Id: 20085 AegisName: C_Clover_Silkhat Name: Costume St Patrick's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 735 - Id: 20086 AegisName: C_DragonCintamani_Hat1 Name: Costume Dragon Cintamani Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1245 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20087 AegisName: C_DragonCintamani_Hat2 Name: Costume Dragon Cintamani Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1246 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20088 AegisName: C_DragonCintamani_Hat3 Name: Costume Dragon Cintamani Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1247 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20089 AegisName: C_DragonCintamani_Hat4 Name: Costume Dragon Cintamani Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1248 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20090 AegisName: C_Egg_Shell Name: Costume Egg Shell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 101 - Id: 20091 AegisName: C_Smoking_Pipe Name: Costume Pipe Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 55 - Id: 20092 AegisName: C_Sales_Signboard Name: Costume Sales Banner Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 183 - Id: 20093 AegisName: C_Star_Sparkling Name: Costume Wizard Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 36 - Id: 20094 AegisName: C_Fillet_Green Name: Costume Green Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 439 - Id: 20095 AegisName: C_Fillet_Red Name: Costume Red Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 440 - Id: 20096 AegisName: C_Fillet_Blue Name: Costume Blue Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 441 - Id: 20097 AegisName: C_Fillet_White Name: Costume White Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 442 - Id: 20098 AegisName: C_Vampire_Hairband Name: Costume Vampire Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1238 - Id: 20099 AegisName: C_Ljosalfar Name: Flying Ljosalfar Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1239 EquipScript: | sc_start SC_LJOSALFAR,INFINITE_TICK,0; UnEquipScript: | sc_end SC_LJOSALFAR; - Id: 20100 AegisName: C_Volume_Fhat Name: Costume Volume Fhat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1240 - Id: 20101 AegisName: C_Bragi_Wing_Ears Name: Costume Bragi Wing Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1241 - Id: 20102 AegisName: C_Horse_King Name: Costume Horse King J Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1189 - Id: 20103 AegisName: C_Drooping_Panda Name: Costume Drooping Panda Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1029 - Id: 20104 AegisName: C_Picky_Egg_Shell Name: Costume Picky Egg Shell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1001 - Id: 20105 AegisName: C_Fish_Head_Hat Name: Costume Fish Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 386 - Id: 20106 AegisName: C_Classic_Hat Name: Costume Classic Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 475 - Id: 20107 AegisName: C_Fish_In_Mouth Name: Costume Fish In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 406 - Id: 20108 AegisName: C_Blind_Glasses Name: Costume Blind Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 813 - Id: 20109 AegisName: C_Jolly_Roger Name: Costume Jolly Roger Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 962 - Id: 20110 AegisName: C_Coiledup_Snake_Hat1 Name: Costume Coiledup Snake Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1258 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20111 AegisName: C_Coiledup_Snake_Hat2 Name: Costume Coiledup Snake Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1259 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20112 AegisName: C_Aqua_Ten_Gallon_Hat Name: Costume Aqua Ten Gallon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1256 - Id: 20113 AegisName: C_Star_Reading_Hat Name: Costume Star Reading Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1253 - Id: 20114 AegisName: C_Funeral_Costume Name: Costume Funeral Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 77 - Id: 20115 AegisName: C_Under_Rim_Glasses Name: Under Rim Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1255 - Id: 20116 AegisName: C_Mermaid_Headphone Name: Mermaid Headphone Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1254 - Id: 20117 AegisName: C_Raspberry_Mousse_Hat Name: Raspberry Mousse Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1257 - Id: 20118 AegisName: C_Hat_Of_Cake Name: Costume Cake Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 109 - Id: 20119 AegisName: C_Fur_Hat Name: Costume Beanie Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 160 - Id: 20120 AegisName: C_Antenna Name: Costume Aerial Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 97 - Id: 20121 AegisName: C_Lotus_Flower_Hat Name: Costume Flower Lily Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 324 - Id: 20122 AegisName: Happy_Summer_Ribbon Name: Costume Happy Summer Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1260 - Id: 20123 AegisName: C_Eagle_Eyes Name: Costume Eagle Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 63 - Id: 20124 AegisName: C_Masquerade Name: Costume Masquerade Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 78 - Id: 20125 AegisName: C_Mini_Glasses Name: Costume Mini Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 47 - Id: 20126 AegisName: C_Thanatos_Mal_Mask Name: Costume Odium Thanatos Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 667 - Id: 20127 AegisName: C_Helm_Of_Abyss Name: Costume Abysmal Knight Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 371 - Id: 20128 AegisName: C_Remover_Hat Name: Costume Remover Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 655 - Id: 20129 AegisName: C_Poporing_Cap Name: Costume Poporing Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 361 - Id: 20130 AegisName: C_Whisper_Tall_Hat Name: Costume Whisper Tall Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1265 - Id: 20131 AegisName: C_C_Tower_Manager_Incom Name: Costume Clock Tower Manager Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1266 - Id: 20132 AegisName: C_Subject_Aura Name: Costume Aura Vicious Mind Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1267 - Id: 20133 AegisName: C_Poring_Mascot_Costume Name: Costume Poring Mascot Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1268 - Id: 20134 AegisName: C_Helm_Of_Abyss_White Name: Costume White Helm Of Abyss Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1269 - Id: 20135 AegisName: C12th_Crown Name: Costume 12 Anniversary Crown of Saint Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1117 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20136 AegisName: C12th_ElvenEars Name: Costume 12 Anniversary Elf Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 875 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20137 AegisName: C_Bomb_Wick Name: Costume Bomb Wick Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 66 - Id: 20138 AegisName: C_Sea_Otter_Cap Name: Costume Sea Otter Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 162 - Id: 20139 AegisName: C_Horse_Hairpin1 Name: Costume Horse Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1271 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20140 AegisName: C_Horse_Hairpin2 Name: Costume Horse Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1272 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20141 AegisName: C_Observer Name: Costume Observer Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 337 - Id: 20142 AegisName: C_Machoman_Glasses Name: Costume Machoman Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 92 - Id: 20143 AegisName: C_Candy_Cane_In_Mouth Name: Costume Candy Cane In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 665 - Id: 20144 AegisName: C_Ancient_Elven_Ear Name: Costume Ancient Elven Ear Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 665 - Id: 20145 AegisName: C_Robo_Eye Name: Costume Robo Eye Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 345 - Id: 20146 AegisName: C_Angel_Spirit Name: Costume Angel of Ghost Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 394 - Id: 20147 AegisName: C_Bell_Pigeon Name: Costume Bell of Piegon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1034 - Id: 20148 AegisName: C_Noble_Hat Name: Costume Musketeer Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 466 - Id: 20149 AegisName: C_Hexagon_Spectacles Name: Costume Hexagon Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 822 - Id: 20150 AegisName: C_GodOfWinds_Fan Name: Costume Wind Fan Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1051 - Id: 20151 AegisName: C_Poison_Spore_Hat Name: Costume Poison Spore Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 899 - Id: 20152 AegisName: C_Straw_Rice_Bag Name: Costume Straw Rice Bag Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1273 - Id: 20153 AegisName: C_Monochrome_Cap Name: Costume Monochrome Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1274 - Id: 20154 AegisName: C_Maple_Which_Falls Name: Costume Maple Which Falls Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1275 EquipScript: | sc_start SC_MAPLE_FALLS,INFINITE_TICK,0; UnEquipScript: | sc_end SC_MAPLE_FALLS; - Id: 20155 AegisName: C_Ladys_Feather_Hat Name: Costume Lady's Feather Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1276 - Id: 20156 AegisName: C_Fan_In_Mouth Name: Costume Fan in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 857 - Id: 20157 AegisName: C_Fish_On_Head Name: Costume Evolved Blue Fish Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 149 - Id: 20158 AegisName: C_Circlet Name: Costume Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 18 - Id: 20159 AegisName: C_Blue_Hair_Band Name: Costume Blue Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 136 - Id: 20160 AegisName: C_Fried_Egg Name: Costume Magnolia Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 373 - Id: 20161 AegisName: C_Prontera_Army_Cap Name: Costume Army Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 48 - Id: 20162 AegisName: C_Lamb_Hat1 Name: Costume Fleece Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1277 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20163 AegisName: C_Lamb_Hat2 Name: Costume Fleece Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1278 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20164 AegisName: C_Duneyrr_Helm Name: Costume Duneyrr Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 639 - Id: 20165 AegisName: C_Tendrilion_Hat Name: Costume Tendrilion Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 658 - Id: 20166 AegisName: C_Hockey_Mask Name: Costume Hockey Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 336 - Id: 20167 AegisName: C_Devi_Headphone Name: Costume Deviruchi Headphone Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 805 - Id: 20168 AegisName: C_Skull_Jhood Name: Costume Skull Hood Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 598 - Id: 20169 AegisName: C_Long_Tongue Name: Costume Long Tongue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 773 - Id: 20170 AegisName: C_Gray_Deviruchi_Cap Name: Costume Brown Deviruchi Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 273 - Id: 20171 AegisName: C_Sepia_Cap Name: Costume Sepia Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1280 - Id: 20172 AegisName: C_Pumpkin_Head Name: Costume Pumpkin Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1281 - Id: 20173 AegisName: C_Lude_Hood Name: Costume Lude Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1282 - Id: 20174 AegisName: C_Halloween_Hat_Orange Name: Costume Orange Halloween Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1283 - Id: 20175 AegisName: C_Diabolic_Headphone Name: Costume Diabolic Headphone Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1284 - Id: 20176 AegisName: Happy_Pierrot_Mask Name: Costume Happy Pierrot Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1288 - Id: 20177 AegisName: C_Drooping_Dorasuke Name: Costume Drooping Dorasuke Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1290 - Id: 20178 AegisName: C_Puppy_Love Name: Costume Puppy Love Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 94 - Id: 20179 AegisName: C_Monkey_On_Fur_Hat Name: Costume Monkey Coat Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 858 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20180 AegisName: C_Westren_Grace Name: Costume Western Grace Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 32 - Id: 20181 AegisName: C_Mistic_Rose Name: Costume Mystic Rose Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 198 - Id: 20182 AegisName: C_Mottled_Egg_Shell Name: Costume Rainbow Eggshell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 124 - Id: 20183 AegisName: C_There_Is_Something Name: Costume There's..Something.. Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1091 - Id: 20184 AegisName: C_Party_Hat Name: Costume Party Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 144 - Id: 20185 AegisName: C_Fashion_Sunglass Name: Costume Fashionable Glasses Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 131 - Id: 20186 AegisName: C_Magni_Cap Name: Costume Magni's Cap Type: Armor Buy: 20 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 250 - Id: 20187 AegisName: C_Fricca_Circlet Name: Costume Fricca's Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 251 - Id: 20188 AegisName: C_Morpheus_Hood Name: Costume Morpheus's Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 256 - Id: 20189 AegisName: C_Goibne_Helmet Name: Costume Goibne's Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 258 - Id: 20190 AegisName: C_Chicken_Hat Name: Costume Chick Hat J Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 432 - Id: 20191 AegisName: C_Black_Cat_Ears_Beret Name: Costume Black Cat Ears Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1071 - Id: 20192 AegisName: C_Green_Foxtail Name: Costume Green Foxtail Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1058 - Id: 20193 AegisName: C_Foxtail Name: Costume Foxtail Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 711 - Id: 20194 AegisName: C_Lion_Mask Name: Costume Lion Mask Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 202 - Id: 20195 AegisName: C_Scratching_Cat Name: Costume Scratching Cat Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1292 - Id: 20196 AegisName: C_Leopard_Ear_Hat Name: Costume Leopard Ear Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1293 - Id: 20197 AegisName: C_Amistr_Beret Name: Costume Amistr Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1294 - Id: 20198 AegisName: C_Misty_Ears Name: Costume Misty Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1295 - Id: 20199 AegisName: C_Evil_Marcher_Hat Name: Costume Evil Marcher Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 687 - Id: 20200 AegisName: C_Rabbit_Head_Dress Name: Costume Rabbit Head Dress Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1095 - Id: 20201 AegisName: C_Banshee_Master_Kiss Name: Costume Banshee Master Kiss Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 959 - Id: 20202 AegisName: C_Deviruchi_Balloon Name: Costume Deviruchi Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1082 - Id: 20203 AegisName: C_Bandana Name: Costume Bandana Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 6 - Id: 20204 AegisName: C_Hunting_Cap Name: Costume Hunter Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 389 - Id: 20205 AegisName: C_Fancy_Flower Name: Costume Fancy Flower Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 4 - Id: 20206 AegisName: C_Cock_Hat1 Name: Costume Chicken Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1296 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20207 AegisName: C_Stripe_Band Name: Costume Striped Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 133 - Id: 20208 AegisName: C_Necktie Name: Costume Neck Tie Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 443 - Id: 20209 AegisName: C_Mermaid_Longing Name: Costume Mermaid Bubbles Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1299 EquipScript: | sc_start SC_MERMAID_LONGING,INFINITE_TICK,0; UnEquipScript: | sc_end SC_MERMAID_LONGING; - Id: 20210 AegisName: C_Cock_Hat2 Name: Costume Chicken Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1297 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20211 AegisName: C_Cock_Hat3 Name: Costume Chicken Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1298 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20212 AegisName: C_Loki_Nidhogg_Hat Name: Costume Loki & Nidhoggur's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1304 - Id: 20213 AegisName: C_Sirt_Evil_Eye Name: Costume Robot Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 345 - Id: 20214 AegisName: C_Evil_Marcher_Hat_J Name: Costume Evil Marcher Hat J Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1002 - Id: 20215 AegisName: C_Black_Devil_Mask Name: Costume Black Devil Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 760 - Id: 20216 AegisName: C_Rideword_Hat Name: Costume Rideword Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 890 - Id: 20217 AegisName: C_Arabian_Veil Name: Costume Arabian Veil Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1300 - Id: 20218 AegisName: C_Spell_Circuit Name: Costume Spell Circuit Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1301 - Id: 20219 AegisName: C_Angel_Marcher_Hat Name: Costume Angel Marcher Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1302 - Id: 20220 AegisName: C_Dark_Night_Veil Name: Costume Dark Night Veil Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1303 - Id: 20221 AegisName: C_Eyes_Of_Ifrit Name: C Eyes Of Ifrit Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 886 - Id: 20222 AegisName: C_Santa_Hat_2 Name: Costume Blue Sheep Santa Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 395 - Id: 20223 AegisName: C_Centimental_Leaf Name: Costume Romantic Leaf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 57 - Id: 20224 AegisName: C_Red_Tailed_Ribbon Name: Costume Red Tailed Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 167 - Id: 20225 AegisName: C_Pumpkin_Hat Name: Costume Pumpkin-Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 206 - Id: 20226 AegisName: C_Hair_Brush Name: Costume Red Comb Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 445 - Id: 20227 AegisName: C_Puppy_Hat2 Name: Costume Husky Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1016 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20228 AegisName: C_Pig_Moneybox2 Name: Costume Pig MoneyBox Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 603 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20229 AegisName: C_New_Year_Hairpin Name: Costume New Year Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1155 - Id: 20230 AegisName: C_Mask_Of_Bankrupt Name: Costume Bankruptcy Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 936 - Id: 20231 AegisName: C_Snowman_Hat Name: Costume Snowman Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 616 - Id: 20232 AegisName: C_Celines_Ribbon Name: Costume Celine Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 967 - Id: 20233 AegisName: C_Gold_Angel_Sculpture Name: Costume Golden Angel Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 646 - Id: 20234 AegisName: C_Baphomet_Hat Name: Costume Baphomet Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1311 - Id: 20235 AegisName: C_Frozen_Land_Rose Name: Costume Frozen Rose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1025 - Id: 20236 AegisName: C_Hellomother_Hat Name: Costume Arc Angeling Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 341 - Id: 20237 AegisName: C_Pink_Fur_Hat Name: Costume Pink Beanie Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 281 - Id: 20238 AegisName: C_Blue_Drooping_Kitty Name: Costume Drooping Blue Cat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 277 - Id: 20239 AegisName: C_Large_Ribbon_Muffler Name: Costume Large Ribbon Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1312 - Id: 20240 AegisName: C_Gift_Of_Snow Name: Costume Gift of Snow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect HAT_EF_GIFT_OF_SNOW,true; UnEquipScript: | hateffect HAT_EF_GIFT_OF_SNOW,false; - Id: 20241 AegisName: C_Eclipse_Hat Name: Costume Eclipse Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 922 - Id: 20242 AegisName: C_Snownow_Hat Name: Costume Snownow Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1313 - Id: 20243 AegisName: C_Choco_Mint_Bonnet Name: Costume Choco Mint Bonnet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1314 - Id: 20244 AegisName: C_Zherlthsh_Mask Name: Costume Zealotus Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 200 - Id: 20245 AegisName: C_Cat_Foot_Hairpin Name: Costume Cat Paw Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 447 - Id: 20246 AegisName: C_Time_Accessory Name: Costume Decoration Time Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1309 EquipScript: | sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; UnEquipScript: | sc_end SC_TIME_ACCESSORY; - Id: 20247 AegisName: C_Blackhand_Of_Fate Name: Costume Fate Of Black Hand Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1310 - Id: 20248 AegisName: C_Black_Strong_Hair Name: Costume Black Strong Hair Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1315 - Id: 20249 AegisName: C_Red_Strong_Hair Name: Costume Red Strong Hair Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1316 - Id: 20250 AegisName: C_White_Strong_Hair Name: Costume White Strong Hair Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1317 - Id: 20251 AegisName: C_Rose_Cascade Name: Costume Rose Cascade Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 920 - Id: 20252 AegisName: C_Accessory_of_Ascetic Name: Costume Mage Decoration Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1150 - Id: 20253 AegisName: C_Droopy_Alice_Doll Name: Costume Drooping Alicel Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 784 - Id: 20254 AegisName: C_Ribbon_Yellow Name: Costume Yellow Ribbonn Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 243 - Id: 20255 AegisName: C_Love_Cheek Name: Costume Love Cheeks Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1318 - Id: 20256 AegisName: C_Honey_Pancakes Name: Costume Honey Pancake Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1319 - Id: 20257 AegisName: C_Black_Rabbit_Bonnet Name: Costume Black Rabbit Bonnet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1320 - Id: 20258 AegisName: C_Blue_Head_Dress Name: Costume Blue Headdress Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1321 - Id: 20259 AegisName: C_Pink_Clover Name: Costume Pink Clover Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1322 - Id: 20260 AegisName: C_Star_Dust Name: Costume Stardust Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 81 - Id: 20261 AegisName: C_Cross_Band Name: Costume Cross Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 121 - Id: 20262 AegisName: C_Fox_Ears_Bell_Ribbon Name: Costume Fox Ears Drop Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1070 - Id: 20263 AegisName: C_Hat_Of_Drowsy_Cat Name: Costume Sleeping Cat Hat J Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 838 - Id: 20264 AegisName: C_Blood_Sucker Name: Costume Blood Sucker Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 893 - Id: 20265 AegisName: C_Bird_Nest_Hat Name: Costume Bird Nest Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 235 - Id: 20266 AegisName: C_Secret_Zipper Name: Costume Secret Zipper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1324 - Id: 20267 AegisName: C_Penguin_Cap Name: Costume Penguin Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1325 - Id: 20268 AegisName: C_Sleep_Eclipse_Family Name: Costume Sleep Eclipse Family Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1326 - Id: 20269 AegisName: C_White_Fox_Ear_Ribbon Name: Costume White Fox Ear Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1327 - Id: 20270 AegisName: C_Gryphon_Wing_Ears Name: Costume Gryphon Wing Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1328 - Id: 20271 AegisName: C_Sunflower Name: Costume Sunflower Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 37 - Id: 20272 AegisName: C_Snowy_Horn Name: Costume Unicorn Horn Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 42 - Id: 20273 AegisName: C_Soft_Sheep_Hat Name: Costume Soft Sheep Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 738 - Id: 20274 AegisName: C_White_Choco_Bear Name: Costume Polar Bear Cap J Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 966 - Id: 20275 AegisName: C_Light_Bulb_Band Name: Costume Light Bulb Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 119 - Id: 20276 AegisName: C_Mushroom_Band Name: Costume Mushroom Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 166 - Id: 20277 AegisName: C_Balloon_Hat Name: Costume Balloon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 385 - Id: 20278 AegisName: C_Man_Medal Name: Costume Man's Pride Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 775 - Id: 20279 AegisName: C_Cheering_Whistle_J Name: Costume Cheering Whistle Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 952 - Id: 20280 AegisName: C_Pencil_In_Mouth Name: Costume Well-Chewed Pencil Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 555 - Id: 20281 AegisName: C_Preschool_Hat Name: Costume Kindergarten Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 977 - Id: 20282 AegisName: C_White_Boys_Hat Name: Costume White Student Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 877 - Id: 20283 AegisName: C_Over_Protector Name: Costume Over Protector Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1329 - Id: 20284 AegisName: C_Cherry_Blossom_Hat Name: Costume Sakura Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1330 - Id: 20285 AegisName: C_Blossom_Fluttering Name: Costume Dancing Fallen Sakura Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1331 Trade: NoDrop: true Script: | hateffect HAT_EF_BLOSSOM_FLUTTERING,true; UnEquipScript: | hateffect HAT_EF_BLOSSOM_FLUTTERING,false; - Id: 20286 AegisName: C_Under_Rim_Glasses_Red Name: Costume Under Rim Glasses Red Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1332 - Id: 20287 AegisName: C_Man_Medal_Gold Name: Costume Man's Medal(Gold) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1333 - Id: 20288 AegisName: C_BIJOUHAT Name: Costume Bijou Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1334 - Id: 20289 AegisName: C_Wing_Ear_Black Name: Costume Black Wings Protector Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1336 - Id: 20290 AegisName: C_Evil_Druid_Hat_Black Name: Costume Black Evil Druid Hat Type: Armor View: 1337 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 20291 AegisName: C_Thoth_Mask Name: Costume Helm of Thoth Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 860 - Id: 20292 AegisName: C_Sara_Ramen_Hat Name: Costume Black Ramen Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1338 - Id: 20293 AegisName: C_Sleepr_Hat Name: Costume Sleeper Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 590 - Id: 20294 AegisName: C_Savage_Baby_Hat_Jp Name: Costume Savage Babe Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 553 - Id: 20295 AegisName: C_Poring_Sunglasses_J Name: Costume Poring Sunglasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 954 - Id: 20296 AegisName: C_Yoyo_Hat Name: Costume Yoyo Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 391 - Id: 20297 AegisName: C_Cactus_Hat Name: Costume Cactus Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 615 - Id: 20298 AegisName: C_Happy_Lunatic_Ear Name: Costume Happy Lunatic Hanging Ear Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1340 - Id: 20299 AegisName: C_Face_Crusher Name: Costume Face Crusher Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1341 - Id: 20300 AegisName: C_Hill_Wind_Mask Name: Costume Hill Wind Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1342 - Id: 20301 AegisName: C_Golden_Savage_Hat Name: Costume Golden Savage Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 648 - Id: 20302 AegisName: C_Beelzebub_Crown Name: Costume Beelzebub Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1343 - Id: 20303 AegisName: C_Mandragora_Cap Name: Costume Mandragora Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 402 - Id: 20304 AegisName: C_Smokie_Hat Name: Costume Raccoon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 118 - Id: 20305 AegisName: C_NettyHeart_BalloonGum Name: Costume Nettie Heart Bubble Gum Type: Armor Buy: 20 Locations: Costume_Head_Low: true ArmorLevel: 1 View: 720 - Id: 20306 AegisName: C_Artist_Hat Name: Costume Artist's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1344 - Id: 20307 AegisName: C_BeginnerMark Name: Costume Beginner Cap Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1348 - Id: 20308 AegisName: C_Koneko_Hat Name: Costume Koneko Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 378 - Id: 20309 AegisName: C_Dip_Schmitz Name: Costume Dip Schmidt Helm Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 634 - Id: 20310 AegisName: C_Cute_Parrot Name: Costume Cute Parrot Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1116 - Id: 20311 AegisName: C_Magical_Booster Name: Costume Magical Booster Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 873 - Id: 20312 AegisName: C_Baron_Evil_Eye Name: Costume Baron's Evil Eye Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 989 - Id: 20313 AegisName: C_CD_In_Mouth Name: Costume CD in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 815 - Id: 20314 AegisName: C_New_Wave_Sunglass Name: Costume New Wave Sunglasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 856 - Id: 20315 AegisName: C_Analyze_Eye Name: Costume Analyze Eye Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1351 - Id: 20316 AegisName: C_Seraph_Wing_Helm Name: Costume Seraph Wing Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1352 - Id: 20317 AegisName: C_CatEars_Cyber_HeadP Name: Costume Nekomimi Cyber Headphone Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1353 - Id: 20318 AegisName: C_Charleston_Antenna Name: Costume Charleston Antenna Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1354 - Id: 20319 AegisName: C_Crimson_Booster Name: Costume Crimson Booster Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1355 - Id: 20320 AegisName: C_Red_Bandana Name: Costume Red Bandana Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 62 - Id: 20321 AegisName: C_37_Sculpt Name: Costume Pterios Fins Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1009 - Id: 20322 AegisName: C_Otter_Hat Name: Costume Seal Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 540 - Id: 20323 AegisName: C_Music_Decoration_J Name: Costume Sparkling Sound Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1074 EquipScript: | sc_start SC_DECORATION_OF_MUSIC,INFINITE_TICK,0; UnEquipScript: | sc_end SC_DECORATION_OF_MUSIC; - Id: 20324 AegisName: C_Pigeon_Hat Name: Costume Pigeon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1362 - Id: 20325 AegisName: C_Little_Aquarium Name: Costume Little Aquarium Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1363 - Id: 20326 AegisName: C_Sailor_Collar Name: Costume Sailor Collar Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1364 - Id: 20327 AegisName: C_Marine_Cap Name: Costume Marine Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1365 - Id: 20328 AegisName: C_Golden_Fish Name: Costume Mackerel Pike Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1081 - Id: 20329 AegisName: C_Tare_HSchool_Doll_Hat Name: Costume Very Cute Doll Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1084 - Id: 20330 AegisName: C_Sombrero Name: Costume Sombrero Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 151 - Id: 20331 AegisName: C_Desert_Prince Name: Costume Desert Prince Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 567 - Id: 20332 AegisName: C_Ribbon_Of_Lady Name: Costume Pure White Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1175 - Id: 20333 AegisName: C_Family_Hat Name: Costume Family Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 650 - Id: 20334 AegisName: C_Joystick_Hat Name: Costume Joystick Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1305 - Id: 20335 AegisName: C_Teardrop Name: Costume Watery Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 828 - Id: 20336 AegisName: C_Sugared_Fruit_S Name: Classic Underneath Cyclone 2 Week Rental Box Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 855 - Id: 20337 AegisName: C_Mahican Name: Costume Mohegan Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 331 - Id: 20338 AegisName: C_Rainbow_L_Octopus Name: Costume Colorful Dancing Octopus Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1007 - Id: 20339 AegisName: C_Flower_Summer_Hat Name: Costume Flower Summer Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1369 - Id: 20340 AegisName: C_Straight_Pony_BL Name: Costume Straight Pony Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1371 - Id: 20341 AegisName: C_Cowlick_BL Name: Costume Bouncing Hair Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1372 - Id: 20342 AegisName: C_Loose_Wave_Twin_BL Name: Costume Loose Wave Twin Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1373 - Id: 20343 AegisName: C_Melon_Helmet Name: Costume Melon Flavour Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 1374 - Id: 20344 AegisName: C_Happy_Balloon_J Name: "Costume: Happy Balloon" Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1289 - Id: 20345 AegisName: C_Guard_Of_Neptune_ Name: Costume Seagod Protector Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 960 - Id: 20346 AegisName: C_Drooping_Permeter Name: Costume Drooping Permeter Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 694 - Id: 20347 AegisName: C_Poring_Pirate Name: Costume Poring Pirate Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 726 - Id: 20348 AegisName: C_Picnic_Hat Name: Costume Sunday Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 117 - Id: 20349 AegisName: C_FlyingGalapago Name: Costume Flying Galapago Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1358 - Id: 20350 AegisName: C_Cowlick_YL Name: Costume Bouncing Hair Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1382 - Id: 20351 AegisName: C_Cowlick_GN Name: Costume Bouncing Hair Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1383 - Id: 20352 AegisName: C_Cowlick_PP Name: Costume Bouncing Hair Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1384 - Id: 20353 AegisName: C_Cowlick_RD Name: Costume Bouncing Hair Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1385 - Id: 20354 AegisName: C_Cowlick_OM Name: Costume Bouncing Hair Crimson Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1386 - Id: 20355 AegisName: C_Cowlick_BU Name: Costume Bouncing Hair Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1387 - Id: 20356 AegisName: C_Cowlick_WH Name: Costume Bouncing Hair White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1388 - Id: 20357 AegisName: C_Straight_Pony_YL Name: Costume Straight Pony Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1389 - Id: 20358 AegisName: C_Straight_Pony_GN Name: Costume Straight Pony Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1390 - Id: 20359 AegisName: C_Straight_Pony_PP Name: Costume Straight Pony Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1391 - Id: 20360 AegisName: C_Straight_Pony_RD Name: Costume Straight Pony Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1392 - Id: 20361 AegisName: C_Straight_Pony_OM Name: Costume Straight Pony Crimson Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1393 - Id: 20362 AegisName: C_Straight_Pony_BU Name: Costume Straight Pony Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1394 - Id: 20363 AegisName: C_Straight_Pony_WH Name: Costume Straight Pony White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1395 - Id: 20364 AegisName: C_Loose_Wave_Twin_YL Name: Costume Loose Wave Twin Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1396 - Id: 20365 AegisName: C_Loose_Wave_Twin_GN Name: Costume Loose Wave Twin Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1397 - Id: 20366 AegisName: C_Loose_Wave_Twin_PP Name: Costume Loose Wave Twin Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1398 - Id: 20367 AegisName: C_Loose_Wave_Twin_RD Name: Costume Loose Wave Twin Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1399 - Id: 20368 AegisName: C_Loose_Wave_Twin_OM Name: Costume Loose Wave Twin Crimson Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1400 - Id: 20369 AegisName: C_Loose_Wave_Twin_BU Name: Costume Loose Wave Twin Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1401 - Id: 20370 AegisName: C_Loose_Wave_Twin_WH Name: Costume Loose Wave Twin White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1402 - Id: 20371 AegisName: C_Special_Kapra_Hat Name: Costume Special Kafra Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 581 - Id: 20372 AegisName: C_Hat_Of_Girl Name: Costume Ribbon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 956 - Id: 20373 AegisName: C_Watermelon_Hat Name: Costume Watermelon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 690 - Id: 20374 AegisName: C_Mechanical_Plant_Hat Name: Costume Mechanical Plant Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1069 - Id: 20375 AegisName: C_Ignis_Cap Name: Costume Ignis Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 803 - Id: 20376 AegisName: C_Memories_Of_Lovers Name: Costume Memory of Lovers Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1072 - Id: 20377 AegisName: C_Flying_Helmet Name: Costume Flight Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 820 - Id: 20378 AegisName: C_Sky_Helm Name: Costume Sky Met Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 868 - Id: 20379 AegisName: C_PocketWatch_Hair_Orna Name: Costume Pocketwatch Hair Ornament Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1404 - Id: 20380 AegisName: C_Mech_Feather_Hairband Name: Costume Mechanical Feather Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1405 - Id: 20381 AegisName: C_Steampunk_Hat Name: Costume Steampunk Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1406 - Id: 20382 AegisName: C_Silversniper_Doll Name: Costume Silver Sniper Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1407 - Id: 20383 AegisName: C_Magicdecoy_Doll Name: Costume Magic Decoy Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1408 - Id: 20384 AegisName: C_PurpleCrystal_Tiara Name: Costume Douce Tiara Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1410 - Id: 20385 AegisName: C_Orc_Hero_Helm Name: Costume Orc Hero Helmet Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 178 - Id: 20386 AegisName: C_Victory_Wing_Helm Name: Costume Victory Wing Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 677 - Id: 20387 AegisName: C_Crossed_Hair_Band Name: Costume X-Shaped Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 163 - Id: 20388 AegisName: C_Ayam Name: Costume Ayam Type: Armor View: 228 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 20389 AegisName: C_Censor_Bar Name: Costume Mosaic Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 229 - Id: 20390 AegisName: C_Goblini_Mask Name: Costume Goblin Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 84 - Id: 20391 AegisName: C_Silent_Executer Name: Costume Silent Executor Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 632 - Id: 20392 AegisName: C_Sniper_Goggle Name: Costume Sniper Google Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 625 - Id: 20393 AegisName: C_Schmidt_Helm Name: Costume Schmitz Helm Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 634 - Id: 20394 AegisName: C_Pumpkin_Cock_Hat Name: Costume Pumpkin Toque Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1411 - Id: 20395 AegisName: C_Black_Witch_Hat Name: Costume Black Witch Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1006 - Id: 20396 AegisName: C_Woodie_Hat Name: Costume Green Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 939 - Id: 20397 AegisName: C_Jakk Name: Costume Jakk Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1415 Script: | autobonus2 "{}",31,10000,BF_WEAPON|BF_MAGIC,"{ active_transform 1130,10000; showscript \"Yikes!!! That hurts!!!\"; }"; - Id: 20398 AegisName: C_Niflheim_Bunny_Hat Name: Costume Niffleheim Bunny Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1285 - Id: 20399 AegisName: C_Crow_Tengu_Mask Name: Costume Crow Tengu Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1287 - Id: 20400 AegisName: C_Holy_Rosario Name: Costume Ichthys Rosario Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1028 - Id: 20401 AegisName: C_Angel_Spirit_Guides Name: Costume Angel Guidance Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1188 - Id: 20402 AegisName: C_Holy_Klobuk Name: Costume Holy Klobuk Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 895 - Id: 20403 AegisName: C_Dolor_Hat Name: Costume Dolor Thanatos Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 547 - Id: 20404 AegisName: C_Blessing_Of_Angels Name: Costume Blessing of Angel Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1425 Script: | hateffect(HAT_EF_BLESSING_OF_ANGELS,true); UnEquipScript: | hateffect(HAT_EF_BLESSING_OF_ANGELS,false); - Id: 20405 AegisName: C_Eremes_Scarf Name: Costume Eremes Scarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1416 - Id: 20406 AegisName: C_Commandments_Of_Chain Name: Costume Chain of Commandments Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1417 - Id: 20407 AegisName: C_Subject_Aura_Red Name: Costume Vicious Mind Aura Crimson Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1418 - Id: 20408 AegisName: C_Bldy_Light_Dark_Crown Name: Costume Requiem Crown of Light and Dark Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1419 - Id: 20409 AegisName: C_There_Is_Something_JP Name: Costume There is Something Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1091 - Id: 20410 AegisName: C_Bone_Head Name: Costume Bone Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 401 - Id: 20411 AegisName: C_Claris_Doll_Hat Name: Costume Glaris Doll Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 355 - Id: 20412 AegisName: C_Tayelin_Doll_Hat Name: Costume Tayelin Doll Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 357 - Id: 20413 AegisName: C_Isabella_Brown_Ear Name: C Piamette Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1031 - Id: 20414 AegisName: C_Crown_Of_Deceit Name: Costume Crown Of Deceit Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 544 - Id: 20415 AegisName: C_RTC_Winner_Only Name: Costume Goddess of Victory(Blue) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 577 - Id: 20416 AegisName: C_1Grade_Balloon Name: Costume Grade 1 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1426 - Id: 20417 AegisName: C_2Grade_Balloon Name: Costume Grade 2 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1427 - Id: 20418 AegisName: C_3Grade_Balloon Name: Costume Grade 3 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1428 - Id: 20419 AegisName: C_4Grade_Balloon Name: Costume Grade 4 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1429 - Id: 20420 AegisName: C_5Grade_Balloon Name: Costume Grade 5 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1430 - Id: 20421 AegisName: C_6Grade_Balloon Name: Costume Grade 6 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1431 - Id: 20422 AegisName: C_7Grade_Balloon Name: Costume Grade 7 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1432 - Id: 20423 AegisName: C_8Grade_Balloon Name: Costume Grade 8 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1433 - Id: 20424 AegisName: C_9Grade_Balloon Name: Costume Grade 9 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1434 - Id: 20425 AegisName: C_10Grade_Balloon Name: Costume Grade 10 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1435 - Id: 20426 AegisName: C_11Grade_Balloon Name: Costume Grade 11 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1436 - Id: 20427 AegisName: C_12Grade_Balloon Name: Costume Grade 12 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1437 - Id: 20428 AegisName: C_13Grade_Balloon Name: Costume Grade 13 Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1438 - Id: 20429 AegisName: C_Piamette_BowTie Name: Costume Piamette Bowtie Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1439 - Id: 20430 AegisName: C_Morocc_Kid_Servant Name: Costume Loyal Servant of Devil Morocc Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1440 - Id: 20431 AegisName: C_Maggi_Head_Dress Name: Costume Magician Headdress Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1441 - Id: 20432 AegisName: C_Khalitzburg_KN_Helm Name: Costume Khalitzburg Knight Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1442 - Id: 20433 AegisName: C_Louise_Red_Hat Name: Costume Louise Red Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1443 - Id: 20434 AegisName: C_Droop_Gunslinger Name: Costume Drooping Gunslinger Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1444 - Id: 20435 AegisName: C_Camellia_Hair_Pin Name: Costume Camellia Hair Pin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1203 Script: | hateffect(HAT_EF_CAMELLIA_HAIR_PIN,true); UnEquipScript: | hateffect(HAT_EF_CAMELLIA_HAIR_PIN,false); - Id: 20436 AegisName: C_Angeling_KnitCap Name: Costume Angelring Furhat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 953 - Id: 20437 AegisName: C_Sakura_Hairband Name: Costume Sakura Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 949 - Id: 20438 AegisName: C_Abacus_In_Mouth Name: Costume Abacus In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 825 - Id: 20439 AegisName: C_Glow_Of_New_Year Name: Costume New Year Shine Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_GLOW_OF_NEW_YEAR,true); UnEquipScript: | hateffect(HAT_EF_GLOW_OF_NEW_YEAR,false); - Id: 20440 AegisName: C_Tone_Of_Gold Name: Costume Tone of Gold Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1447 - Id: 20441 AegisName: C_L_RibbonMuff_Red Name: Costume Large Ribbon Muffler Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1448 - Id: 20442 AegisName: C_RW_Mochiring_Hat Name: Costume Red and White Mochiring Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1449 - Id: 20443 AegisName: C_Unicorn_Helm Name: Costume Unicorn Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1375 - Id: 20444 AegisName: C_Aniv_Star_Hat Name: Costume Anniversary Star Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 599 - Id: 20445 AegisName: C_Candle Name: Costume Candle Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 113 - Id: 20446 AegisName: C_Rabbit_Ear_Eggshell Name: Costume Bunny Eggshell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1339 - Id: 20447 AegisName: C_Small_Poring_Band Name: Costume Small Porings Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 955 - Id: 20448 AegisName: C_Cons_Of_Water Name: Costume Water Spellcaster Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1451 - Id: 20449 AegisName: C_White_Black_Temp Name: Costume White and Black Temptation Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1452 - Id: 20450 AegisName: C_Gram_Peony Name: Costume Gram Peony Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1453 - Id: 20451 AegisName: C_Sky_Of_Memory Name: Costume Sky of Memory Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1454 - Id: 20452 AegisName: C_berry_Prince_Crown Name: Costume Crown of Strawberry Prince Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1455 - Id: 20453 AegisName: C_Hat_Of_Bundle Name: Costume Wrapping Cloth Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 108 - Id: 20454 AegisName: C_Headgear_Of_Queen Name: Costume Crown of Ancient Queen Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 164 - Id: 20455 AegisName: C_Republic_Hat Name: Costume Republic Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1458 - Id: 20456 AegisName: C_Combat_Vestige Name: Costume Combat Vestige Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1460 - Id: 20457 AegisName: C_Feather_Fluttering Name: Costume Fluttering Feathers Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1461 Script: | hateffect(HAT_EF_FEATHER_FLUTTERING,true); UnEquipScript: | hateffect(HAT_EF_FEATHER_FLUTTERING,false); - Id: 20458 AegisName: C_Wild_Poring_Rider Name: Costume Wild Poring Rider Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1422 - Id: 20459 AegisName: C_Valhalla_Idol Name: Costume Valhalla Idol Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1423 Script: | hateffect(HAT_EF_VALHALLA_IDOL,true); UnEquipScript: | hateffect(HAT_EF_VALHALLA_IDOL,false); - Id: 20460 AegisName: C_Thornbush_Hairband Name: Costume Thornbush Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 921 - Id: 20461 AegisName: C_93_BloodyWing Name: Costume 93 Style Bloody Wings Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1037 - Id: 20462 AegisName: C_Cat_Ears_Cape Name: Costume Cat Ears Cape Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1464 - Id: 20463 AegisName: C_Two_Tone_Beret Name: Costume Two Tone Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1465 - Id: 20464 AegisName: C_Monochrome_RibbonHat Name: Costume Monochrome Ribbon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1466 - Id: 20465 AegisName: C_Glasses_Without_Lens Name: Costume Glasses Without Lens Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1467 - Id: 20466 AegisName: C_Crimson_Ribbon Name: Costume Crimson Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1468 - Id: 20467 AegisName: C_Elemental_Crown Name: Costume Elemental Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1219 - Id: 20468 AegisName: C_Youinone_Mask Name: You in ONE Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1462 - Id: 20469 AegisName: C_Bogy_Horn Name: Costume Bogy Horn Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 554 - Id: 20470 AegisName: C_SweetChocolate_Hat Name: Costume Sweet Chocolate Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1469 - Id: 20471 AegisName: C_Tulip_Hairpin Name: Costume Tulip Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 161 - Id: 20472 AegisName: C_Helm_Of_Angel Name: Costume Helm of Angel Type: Armor View: 110 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 20473 AegisName: C_Mine_Helm Name: Costume Mine Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 116 - Id: 20474 AegisName: C_Banana_Hat Name: Costume Banana Flavour Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 197 - Id: 20475 AegisName: C_Bridal_Ribbon Name: Costume Ribbon of Bride Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 790 - Id: 20476 AegisName: C_Costume01_L Name: Rental Costume Tipsy Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1724 - Id: 20477 AegisName: C_Costume02_L Name: Rental Costume Wrapping Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1599 - Id: 20478 AegisName: C_Costume03_L Name: Rental Costume Royal Rabbit Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1600 - Id: 20479 AegisName: C_Costume04_L Name: Rental Costume Fairy Feathers Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1723 - Id: 20480 AegisName: C_Costume05_L Name: Rental Costume Dog Officer Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1601 - Id: 20481 AegisName: C_Mask_of_Ifrit Name: Costume Mask of Ifrit Type: Armor Buy: 20 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 421 - Id: 20482 AegisName: C_Heaven_Cage Name: Costume Heaven Cage Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1286 - Id: 20483 AegisName: C_Butterfly_Barrettes Name: Costume Butterfly Barrettes Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1027 - Id: 20484 AegisName: C_Sunflower_Hairpin Name: Costume Sunflower Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 186 - Id: 20485 AegisName: C_Maneater_Flower_Hp Name: Costume Maneater Flower HP Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 852 - Id: 20486 AegisName: C_Twin_Margaret Name: Costume Twin Margaret Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1472 - Id: 20487 AegisName: C_Floral_Waltz Name: Costume Floral Waltz Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1473 Script: | hateffect(HAT_EF_FLORAL_WALTZ,true); UnEquipScript: | hateffect(HAT_EF_FLORAL_WALTZ,false); - Id: 20488 AegisName: C_Pope_Ribbon Name: Costume Pope Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1474 - Id: 20489 AegisName: C_Pope_Crown Name: Costume Pope Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1475 - Id: 20490 AegisName: C_Full_Bloom_Hp_Blue Name: Costume Full Blossom Sakura Hairpin Blue Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1476 - Id: 20491 AegisName: C_Laser_Of_Eagle Name: Costume Laser of Eagle Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1424 - Id: 20492 AegisName: C_Whistle Name: Costume Unidentified Flying Poring Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1017 - Id: 20493 AegisName: C_Wing_Headphone Name: Costume Wing Headphone Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1347 - Id: 20494 AegisName: C_Ufo_Poring_Hat Name: Costume Unidentified Flying Poring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1017 - Id: 20495 AegisName: C_Quati_Hat_J Name: Costume Quati Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 527 - Id: 20496 AegisName: C_Black_Shiba_Inu_Hat Name: Costume Black Shiba Inu Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 894 - Id: 20497 AegisName: C_Umbala_Spirit Name: Costume Umbala Spirit Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 675 - Id: 20498 AegisName: C_Elephant_Hat Name: Costume Elephant Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 215 - Id: 20499 AegisName: C_Cat_Ear_Hat Name: Costume Cat Ears Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1479 - Id: 20500 AegisName: T_Archangel_Wing Name: Archangel Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 1 - Id: 20501 AegisName: C_Mechanic_Wing Name: Costume Mechanic Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 11 - Id: 20502 AegisName: C_Devil_Wing Name: Costume Little Devil Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 12 - Id: 20503 AegisName: C_Bag_Of_Antonio Name: Costume Candy Pouch Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 13 - Id: 20504 AegisName: C_Cupid_Wing_Pink Name: Costume Cupid's Pink Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 14 - Id: 20505 AegisName: C_Cupid_Wing_Skyblue Name: Costume Cupid Wing Skyblue Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 15 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoAuction: true - Id: 20506 AegisName: C_Invisible_Manteau Name: Invisible Manteau Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 20507 AegisName: C_Poring_Bag Name: Costume Poring Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 16 - Id: 20508 AegisName: C_Poster_Girl_Hat Name: Costume Poster Girl Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1446 - Id: 20509 AegisName: C_Wings_of_Uriel Name: Costume Wings of Uriel Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 17 - Id: 20510 AegisName: C_SwordWing Name: Costume Sword Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 19 - Id: 20511 AegisName: C_Blue_Fairy_Wing Name: Blue Wings of Fairy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 21 - Id: 20512 AegisName: C_Bravery_Bag Name: Costume Adventurer's Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 2 - Id: 20513 AegisName: C_EXE_Backpack Name: Costume EXE Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 22 - Id: 20514 AegisName: C_Thanatos_Sword Name: Costume Thanatos Sword Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 23 - Id: 20515 AegisName: C_Magic_Circle Name: Costume Magic Circle Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_MAGICCIRCLE,true); UnEquipScript: | hateffect(HAT_EF_MAGICCIRCLE,false); - Id: 20516 AegisName: C_Wings_of_Michael Name: Costume Wings of Michael Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 24 - Id: 20517 AegisName: C_GiantCatBag_TW Name: Costume Giant Cat Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 25 - Id: 20518 AegisName: C_Gerhard_Von_Devi_Bag Name: Costume Gerhard Von Devi Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 27 - Id: 20519 AegisName: C_Full_BloomCherry_Tree Name: Costume Full Bloom Cherry Tree Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true); UnEquipScript: | hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false); - Id: 20520 AegisName: C_Costume07_L Name: Rental Costume Full Bloom Cherry Tree Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true); UnEquipScript: | hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false); - Id: 20521 AegisName: C_BlackCatBag_TW Name: Costume Black Cat Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 26 - Id: 20522 AegisName: C_Blessings_Of_Soul Name: Costume Blessings Of Soul Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,true); UnEquipScript: | hateffect(HAT_EF_C_BLESSINGS_OF_SOUL,false); - Id: 20523 AegisName: C_2018_RTC_Cape_TW Name: "Costume: 2018 RTC Memorial Cloak" Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 28 - Id: 20524 AegisName: C_Shining_Angel_Wing Name: Costume Shining Angel Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_C_SHINING_ANGEL_WING,true); UnEquipScript: | hateffect(HAT_EF_C_SHINING_ANGEL_WING,false); - Id: 20525 AegisName: C_Bloody_Wing Name: Costume Crimson Wings Type: Armor View: 33 Jobs: All: true Novice: false Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20526 AegisName: C_BlueAngeling_Wing Name: Costume Brilliant Blue Angel Wings Type: Armor View: 34 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20527 AegisName: C_PinkButterfly_Wing Name: Costume Pink Butterfly Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 35 - Id: 20528 AegisName: C_GoldButterfly_Wing Name: Costume Golden Butterfly Wings Type: Armor View: 36 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20529 AegisName: C_2018_RTC_Cape_ROS Name: Costume 2018 RTC Memorial Cloak Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 28 - Id: 20530 AegisName: C_Wings_of_Gabriel Name: Costume Wings of Gabriel Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 37 - Id: 20531 AegisName: C_Invisible_Manteau_TW Name: Costume Invisible Manteau Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20532 AegisName: C_Exploding_Wave_Sca_V Name: Costume Flaming Burst Wave(Garment) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_DOUBLEGUMGANG,true); UnEquipScript: | hateffect(HAT_EF_DOUBLEGUMGANG,false); - Id: 20533 AegisName: C_PinkButterfly_Wing_T Name: Costume Pink Butterfly Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 38 - Id: 20534 AegisName: C_GiantCatBag_JP Name: Costume Big White Cat Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 25 - Id: 20535 AegisName: C_Digital_Space Name: Costume Digital Space Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_DIGITAL_SPACE,true); UnEquipScript: | hateffect(HAT_EF_DIGITAL_SPACE,false); - Id: 20536 AegisName: C_Violet_Halo Name: Costume Violet Halo Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 39 - Id: 20537 AegisName: C_Maple_Which_Falls_Rd Name: Costume Falling Red Foliage Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true); UnEquipScript: | hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false); - Id: 20538 AegisName: C_Magic_Circle_Rainbow Name: Costume Magic Circle Rainbow Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_MAGICCIRCLERAINBOW,true); UnEquipScript: | hateffect(HAT_EF_MAGICCIRCLERAINBOW,false); - Id: 20539 AegisName: C_CherryFesRibbon_TW Name: Costume Sakura Festival Ribbon Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 40 - Id: 20540 AegisName: C_SnackParty_TW Name: Costume Cookie Party Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,true); UnEquipScript: | hateffect(HAT_EF_FULL_BLOOMCHERRY_TREE,false); - Id: 20541 AegisName: C_AngelRibbonWing_TW Name: Costume Angel's Ribboned Wings Type: Armor View: 42 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20542 AegisName: C_BlackBearBackpack_TW Name: Costume Black Bear Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 43 - Id: 20543 AegisName: C_Halloween_Poring_Bag Name: Costume Halloween Poring Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 44 - Id: 20544 AegisName: C_Gold_Shower_J Name: Costume Golden Shower Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_GOLD_SHOWER,true); UnEquipScript: | hateffect(HAT_EF_GOLD_SHOWER,false); - Id: 20545 AegisName: C_Chrismas_Tree Name: Costume Christmas Guardian Tree Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 45 - Id: 20546 AegisName: C_Backside_Ribbon_Bell Name: Costume Giant Ribbon Bell Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 46 - Id: 20547 AegisName: C_Ghost_Effect Name: Costume Ghost Effect Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_C_GHOST_EFFECT,true); UnEquipScript: | hateffect(HAT_EF_C_GHOST_EFFECT,false); - Id: 20548 AegisName: C_Popping_Poring_Aura Name: Costume Popping Poring Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_C_POPPING_PORING_AURA,true); UnEquipScript: | hateffect(HAT_EF_C_POPPING_PORING_AURA,false); - Id: 20549 AegisName: C_99LV_Royal_Guard_Blue Name: Costume Aura of the Sea Glow Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Royal_Guard_Blue,true); UnEquipScript: | hateffect(HAT_EF_99LV_Royal_Guard_Blue,false); - Id: 20550 AegisName: C_99LV_Warlock_Violet Name: Costume Violet Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Warlock_Violet,true); UnEquipScript: | hateffect(HAT_EF_99LV_Warlock_Violet,false); - Id: 20551 AegisName: C_99LV_Sorcerer_LBlue Name: Costume Light Blue Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Sorcerer_LBlue,true); UnEquipScript: | hateffect(HAT_EF_99LV_Sorcerer_LBlue,false); - Id: 20552 AegisName: C_99LV_Ranger_Green Name: Costume Green Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Ranger_Green,true); UnEquipScript: | hateffect(HAT_EF_99LV_Ranger_Green,false); - Id: 20553 AegisName: C_99LV_Minstrel_Pink Name: Costume Pink Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Minstrel_Pink,true); UnEquipScript: | hateffect(HAT_EF_99LV_Minstrel_Pink,false); - Id: 20554 AegisName: C_99LV_Archbishop_White Name: Costume Aura of Sanctity Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Archbishop_White,true); UnEquipScript: | hateffect(HAT_EF_99LV_Archbishop_White,false); - Id: 20555 AegisName: C_99LV_Guill_Silver Name: Costume Silver Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Guill_Silver,true); UnEquipScript: | hateffect(HAT_EF_99LV_Guill_Silver,false); - Id: 20556 AegisName: C_99LV_ShadowC_Black Name: Costume Aura of Night Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_ShadowC_Black,true); UnEquipScript: | hateffect(HAT_EF_99LV_ShadowC_Black,false); - Id: 20557 AegisName: C_99LV_Mechanic_Gold Name: Costume Gold Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Mechanic_Gold,true); UnEquipScript: | hateffect(HAT_EF_99LV_Mechanic_Gold,false); - Id: 20558 AegisName: C_99LV_Genetic_YGreen Name: Costume Yellow Green Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_99LV_Genetic_YGreen,true); UnEquipScript: | hateffect(HAT_EF_99LV_Genetic_YGreen,false); - Id: 20559 AegisName: C_160LV_Rune_Red Name: Costume Red Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_RUNE_RED,true); UnEquipScript: | hateffect(HAT_EF_160LV_RUNE_RED,false); - Id: 20560 AegisName: C_160LV_Royal_G_Blue Name: Costume Aura of the Depths Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Royal_G_Blue,true); UnEquipScript: | hateffect(HAT_EF_160LV_Royal_G_Blue,false); - Id: 20561 AegisName: C_160LV_Warlock_Violet Name: Costume Violet Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Warlock_Violet,true); UnEquipScript: | hateffect(HAT_EF_160LV_Warlock_Violet,false); - Id: 20562 AegisName: C_160LV_Sorcerer_LBlue Name: Costume Light Blue Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Sorcerer_LBlue,true); UnEquipScript: | hateffect(HAT_EF_160LV_Sorcerer_LBlue,false); - Id: 20563 AegisName: C_160LV_Ranger_Green Name: Costume Green Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Ranger_Green,true); UnEquipScript: | hateffect(HAT_EF_160LV_Ranger_Green,false); - Id: 20564 AegisName: C_160LV_Minstrel_Pink Name: Costume Pink Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Minstrel_Pink,true); UnEquipScript: | hateffect(HAT_EF_160LV_Minstrel_Pink,false); - Id: 20565 AegisName: C_160LV_Archb_White Name: Costume Aura Thunder Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Archb_White,true); UnEquipScript: | hateffect(HAT_EF_160LV_Archb_White,false); - Id: 20566 AegisName: C_160LV_Guill_Silver Name: Costume Silver Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Guill_Silver,true); UnEquipScript: | hateffect(HAT_EF_160LV_Guill_Silver,false); - Id: 20567 AegisName: C_160LV_ShadowC_Black Name: Costume Aura of Darkness Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_ShadowC_Black,true); UnEquipScript: | hateffect(HAT_EF_160LV_ShadowC_Black,false); - Id: 20568 AegisName: C_160LV_Mechanic_Gold Name: Costume Gold Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_MECHANIC_GOLD,true); UnEquipScript: | hateffect(HAT_EF_160LV_MECHANIC_GOLD,false); - Id: 20569 AegisName: C_160LV_Genetic_YGreen Name: Costume Yellow Green Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_160LV_Genetic_YGreen,true); UnEquipScript: | hateffect(HAT_EF_160LV_Genetic_YGreen,false); - Id: 20570 AegisName: C_HeartChocoBag Name: Costume HeartChocoBag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 47 - Id: 20571 AegisName: C_Valkyrie_Wing Name: Costume Valkyrie Wings Type: Armor View: 48 Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect HAT_EF_C_VALKYRIE_WING,true; UnEquipScript: | hateffect HAT_EF_C_VALKYRIE_WING,false; - Id: 20572 AegisName: C_WingOfHeart Name: Costume WingOfHeart Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 50 - Id: 20573 AegisName: C_VioletHalo Name: Costume Violet High Row Type: Armor View: 39 Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 20574 AegisName: C_School_Bag_RD Name: Costume Backpack (Red) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 51 - Id: 20575 AegisName: C_School_Bag_BL Name: Costume Backpack (Black) Type: Armor View: 52 Locations: Costume_Garment: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20576 AegisName: C_Cat_Fork Name: Costume Cat Fork Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 53 - Id: 20577 AegisName: C_Balloon_Wing Name: Costume Balloon Wing Type: Armor View: 54 Jobs: All: true Novice: false Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20578 AegisName: C_Wings_Of_Raguel Name: Costume Raguel's Wings Type: Armor View: 56 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20579 AegisName: C_Wings_Of_Raphael Name: Costume Raphael's Wings Type: Armor View: 57 Jobs: All: true Novice: false Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20580 AegisName: C_Heart_Wing_Backpack Name: Costume Heart Wing Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 58 - Id: 20581 AegisName: C_Soldier_Backpack Name: Costume Soldier Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 59 - Id: 20582 AegisName: C_T_Bear_Bag Name: Costume Bear Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 60 - Id: 20583 AegisName: C_Magic_Star_TW Name: Costume Illusion Crystal Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_MAGIC_STAR_TW,true); UnEquipScript: | hateffect(HAT_EF_MAGIC_STAR_TW,false); - Id: 20584 AegisName: C_Big_Foxtail Name: Costume Fox Tail Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 62 - Id: 20585 AegisName: C_Ru_Bear_Bag Name: Costume Angry Bear Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 63 - Id: 20586 AegisName: C_Loli_Ruri_Moon Name: "Costume: Loli Ruri's Crescent" Type: Armor View: 64 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20587 AegisName: C_Light_Darkness_Wing Name: Wings of Light and Darkness Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 20 - Id: 20588 AegisName: C_Nifl_Bloom Name: Costume Broom of Witch Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 65 - Id: 20589 AegisName: C_Gimmick_One_Feather Name: Costume One Wing Type: Armor View: 66 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20590 AegisName: C_Evil_Druid_Cross Name: Costume Evil Druid Cross Type: Armor View: 67 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20591 AegisName: C_Bow_On_the_Back Name: Costume Bow on Back Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 68 - Id: 20592 AegisName: C_Santa_Backpack Name: Costume Santa's Pocket Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 70 - Id: 20593 AegisName: C_Ice_Wing Name: "Costume: Ice Wings" Type: Armor View: 71 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20594 AegisName: C_Big_Ribbon_Cloak Name: Costume Big Ribbon Manteau Type: Armor View: 76 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20595 AegisName: C_School_Bag_RD_E Name: Costume Novice Red Backpack Type: Armor View: 51 Locations: Costume_Garment: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20596 AegisName: C_BlackBear_Back_TW Name: "Costume: Black Bear Backpack" Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 81 - Id: 20597 AegisName: C_Evil_Scythe Name: "Costume: Evil Scythe" Type: Armor View: 79 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20598 AegisName: C_GiantCatBag_JP_BL Name: Costume Giant Cat Bag Type: Armor View: 80 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20599 AegisName: C_Sakura_Wing Name: "Costume: Sakura Wings" Type: Armor View: 83 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20600 AegisName: Fantastic_Aura Name: Fantastic Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Script: | /*TODO: View ID*/ bonus bUnbreakableHelm; - Id: 20601 AegisName: C_99LV_Rune_Red Name: Costume Red Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_99LV_Rune_Red,true); UnEquipScript: | hateffect(HAT_EF_99LV_Rune_Red,false); - Id: 20602 AegisName: C_Seraphim_Wing_TW Name: "Costume: Ace of Angel Wing (Sweet)" Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 84 - Id: 20603 AegisName: C_P_Ulysses_Feather Name: Costume Ulysses Wings Type: Armor View: 85 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20604 AegisName: C_Blessed_Veil Name: "Costume: Blessed Veil" Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 86 - Id: 20605 AegisName: C_Leaf_Umbrella Name: Costume Leaf Umbrella Type: Armor View: 87 Locations: Costume_Garment: true ArmorLevel: 1 - Id: 20606 AegisName: C_Golden_Angel_Wing Name: Costume Golden Angel Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 5 - Id: 20607 AegisName: C_Baldr_Wing_TW Name: Costume Baldr Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 91 - Id: 20608 AegisName: C_99LV_Star_E_MBlue Name: Costume Midnight Blue Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_99LV_STAR_E_MBLUE,true); UnEquipScript: | hateffect(HAT_EF_99LV_STAR_E_MBLUE,false); - Id: 20609 AegisName: C_160LV_Star_E_MBlue Name: Costume Midnight Blue Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_160LV_STAR_E_MBLUE,true); UnEquipScript: | hateffect(HAT_EF_160LV_STAR_E_MBLUE,false); - Id: 20610 AegisName: C_99LV_Soul_R_Gray Name: Costume Gray Energy Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_99LV_SOUL_R_GRAY,true); UnEquipScript: | hateffect(HAT_EF_99LV_SOUL_R_GRAY,false); - Id: 20611 AegisName: C_160LV_Soul_R_Gray Name: Costume Gray Aura Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_160LV_SOUL_R_GRAY,true); UnEquipScript: | hateffect(HAT_EF_160LV_SOUL_R_GRAY,false); - Id: 20612 AegisName: C_Ten_G_Shield_TW Name: Costume Ten Guardian's Shield # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 90 - Id: 20613 AegisName: C_Wing_Of_Spider Name: Costume Spider Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 101 - Id: 20614 AegisName: C_Kyel_hyre_Ulti_TW Name: Costume Ultimate Kiel Hyre's Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 102 - Id: 20615 AegisName: C_School_Bag_BU Name: Costume Beginner Blue Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 105 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20616 AegisName: C_School_Bag_PU Name: Costume Beginner Purple Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 119 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20617 AegisName: C_Wing_Of_Eutaxy Name: Costume Wing of Eutaxy # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 120 - Id: 20618 AegisName: C_Big_B_Rabbit Name: Costume Big Black Rabbit # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 133 - Id: 20619 AegisName: aegis_20619 Name: Costume Phaya Ploeng Suriyan Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 150 - Id: 20620 AegisName: aegis_20620 Name: Costume Songkran Water Gun Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 174 - Id: 20621 AegisName: aegis_20621 Name: Costume Dark Lord Manteau Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 175 Script: | hateffect HAT_EF_C_DARK_LORD_MANTEAU,true; UnEquipScript: | hateffect HAT_EF_C_DARK_LORD_MANTEAU,false; - Id: 20622 AegisName: aegis_20622 Name: Costume Winner of ROS 2023 Type: Armor Locations: Costume_Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 181 - Id: 20623 AegisName: aegis_20623 Name: Costume Runner Up of ROS 2023 Type: Armor Locations: Costume_Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 182 - Id: 20624 AegisName: aegis_20624 Name: Costume Second Runner-Up of ROS 2023 Type: Armor Locations: Costume_Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 183 - Id: 20626 AegisName: C_ROS2023_Cape_2 Name: 2023 ROS Winning Prize Manteau Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 198 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 20700 AegisName: Egir_Manteau Name: Egir Manteau Type: Armor Buy: 200000 Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 110 Refineable: true Script: | bonus bUnbreakableGarment; .@r = getrefine(); if (.@r > 10) .@r = 10; if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) { bonus bFlee2,5+(.@r*2); } else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) { bonus bShortWeaponDamageReturn,5+(.@r*2); } - Id: 20701 AegisName: Sol_Manteau Name: Sol Manteau Type: Armor Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Earth,5; bonus2 bSubRace,RC_Fish,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 20702 AegisName: TE_Woe_Muffler Name: TE Woe Muffler Type: Armor Defense: 5 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMdef,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Freeze,2500; - Id: 20703 AegisName: TE_Woe_Manteau Name: TE Woe Manteau Type: Armor Defense: 10 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bResEff,Eff_Freeze,2500; - Id: 20704 AegisName: TE_Woe_Magic_Manteau Name: TE Woe Magic Manteau Type: Armor Defense: 5 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus2 bResEff,Eff_Freeze,2500; bonus bMdef,5; - Id: 20705 AegisName: Lumiere_Manteau Name: Lumiere Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Holy,5; bonus2 bSubRace,RC_Dragon,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 20706 AegisName: Amistr_Bag Name: Amistr Bag Type: Armor Buy: 10 Weight: 500 Defense: 18 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 4 Script: | bonus bAllStats,1; bonus2 bSubEle,Ele_All,5; - Id: 20707 AegisName: Kirin_Wing Name: Kirin Wing Type: Armor Buy: 20 Defense: 18 Locations: Garment: true ArmorLevel: 1 Refineable: true View: 6 Script: | bonus bAllStats,1; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; - Id: 20708 AegisName: Poison_Manteau Name: Poison Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Poison,5; bonus2 bSubRace,RC_Plant,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 20709 AegisName: Mana_Manteau Name: Mana Manteau Type: Armor Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 EquipLevelMax: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 20710 AegisName: Impr_Angel's_Warmth Name: Advanced Angelic Cardigan Type: Armor Buy: 10000 Weight: 400 Defense: 6 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bHPrecovRate,50; - Id: 20711 AegisName: Manteau_Of_Diego Name: Diego Shawl Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bInt,1; bonus bDex,1; bonus bMdef,3; bonus2 bSubSize,Size_Medium,5; - Id: 20712 AegisName: Valkyrie_Cape Name: Valkyrie Cape Type: Armor Buy: 10 Weight: 500 Defense: 10 Slots: 1 Jobs: Acolyte: true Alchemist: true Archer: true Assassin: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Mage: true Merchant: true Monk: true Priest: true Rebellion: true Rogue: true Sage: true Swordman: true Thief: true Wizard: true Classes: Upper: true All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@val = 2 * (min(10,getrefine())/2); if (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte) bonus bFlee2,(5+.@val); else if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief) bonus bShortWeaponDamageReturn,(5+.@val); - Id: 20713 AegisName: Manteau_Of_Torrent Name: Torrent Manteau Type: Armor Buy: 20 Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Water,2; - Id: 20714 AegisName: Assassin_Muffler Name: Assassin's Muffler Type: Armor Buy: 20 Weight: 100 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); if (.@r>5) { bonus bAgi,(.@r-5)*2; } - Id: 20715 AegisName: Earthquake_Manteau Name: Earthquake Manteau Type: Armor Buy: 20 Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Earth,2; - Id: 20716 AegisName: Esprit_Manteau Name: Esprit Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubRace,RC_Angel,-5; - Id: 20717 AegisName: FaceWorm_Skin Name: Gigant Snake Skin Type: Armor Buy: 10 Weight: 400 Defense: 38 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMdef,10; - Id: 20718 AegisName: FaceWorm_Skin_ Name: Gigant Snake Skin Type: Armor Buy: 10 Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMdef,10; - Id: 20719 AegisName: BF_Hood Name: Battle Cape Type: Armor Defense: 25 Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMaxHPrate,3; bonus bMagicDamageReturn,3; bonus2 bSubEle,Ele_All,.@r/2; - Id: 20720 AegisName: Manteau_Of_Storm Name: Storm Manteau Type: Armor Buy: 10 Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Wind,2; bonus2 bMagicAddEle,Ele_Wind,2; - Id: 20721 AegisName: Cloak_Of_Gray Name: Cloak of Gray Type: Armor Buy: 20 Weight: 600 Defense: 45 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: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | bonus2 bSubEle,Ele_Holy,5+getrefine()/2; - Id: 20722 AegisName: Soul_Of_Tree Name: Tree Spirit Shawl Type: Armor Weight: 400 Defense: 6 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,5+(.@r*2); bonus bMatk,5+(.@r*2); if (.@r>=12) bonus bAspd,1; - Id: 20723 AegisName: Manteau_Of_Hunter Name: Hunter's Manteau Type: Armor Buy: 20 Weight: 500 Defense: 7 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bHit,1+max(1,(.@r-5)); - Id: 20724 AegisName: Love_Dad_Wings_2012 Name: Love Dad Wings 2012 Type: Armor Weight: 100 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 5 Script: | .@r = getrefine(); if (readparam(bStr)>89) { bonus bAllStats,1; bonus bStr,.@r; bonus bMaxHPrate,1; bonus bMaxSPrate,1; } if (readparam(bAgi)>89) { bonus bAllStats,1; bonus bAgi,.@r; bonus bMaxHPrate,1; bonus bMaxSPrate,1; } if (readparam(bVit)>89) { bonus bAllStats,1; bonus bVit,.@r; bonus bMaxHPrate,1; bonus bMaxSPrate,1; } if (readparam(bInt)>89) { bonus bAllStats,1; bonus bInt,.@r; bonus bMaxHPrate,1; bonus bMaxSPrate,1; } if (readparam(bDex)>89) { bonus bAllStats,1; bonus bDex,.@r; bonus bMaxHPrate,1; bonus bMaxSPrate,1; } if (readparam(bLuk)>89) { bonus bAllStats,1; bonus bLuk,.@r; bonus bMaxHPrate,1; bonus bMaxSPrate,1; } - Id: 20725 AegisName: Ribbon_Piamat Name: Ribbon Piamat Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true View: 7 Script: | bonus bMatk,10; bonus bInt,1; bonus bDex,1; - Id: 20726 AegisName: Fire_Dragon_Coat Name: Fire Dragon's Coat Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Fire,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Fire,3; } bonus2 bMagicAtkEle,Ele_Water,-10; - Id: 20727 AegisName: Brilliant_Golden_Wings Name: Brilliant Golden Wings Type: Armor Buy: 10 Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 5 Trade: NoDrop: true - Id: 20728 AegisName: Water_Dragon_Coat Name: Water Dragon Coat Type: Armor Buy: 10 Weight: 300 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Water,2; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_Water,3; } bonus2 bMagicAtkEle,Ele_Wind,-10; - Id: 20729 AegisName: Wind_Dragon_Coat Name: Wind Dragon Coat Type: Armor Weight: 300 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableGarment; bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Wind,2; bonus2 bMagicAtkEle,Ele_Earth,-10; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Wind,3; - Id: 20730 AegisName: Loyalists_Hood Name: Loyalists Hood Type: Armor Buy: 10 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bStr,2; bonus bMaxHPrate,10; bonus bNoKnockback; bonus2 bSubEle,Ele_All,-20; - Id: 20731 AegisName: Ground_Dragon_Coat Name: Earth Dragon's Coat Type: Armor Weight: 300 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Fire,-10; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Earth,3; - Id: 20732 AegisName: Supplement_Part_Con Name: Supplement Part Con Type: Armor Buy: 25000 Weight: 500 Defense: 20 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,6+(.@r/2); if (.@r>=9) { bonus bHPrecovRate,50; } - Id: 20733 AegisName: Upgrade_Part_Engine Name: Reinforced Parts - Engine Type: Armor Buy: 10 Weight: 1500 Defense: 25 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bDelayrate,-10; .@r = getrefine(); if (.@r>=7) { bonus2 bSubEle,Ele_Neutral,10; } if (.@r>=9) { bonus bDelayrate,-10; } - Id: 20734 AegisName: Manteau_Of_Leafwind Name: Manteau of Leafwind Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,-10; bonus bLongAtkDef,5+getrefine(); bonus bUnbreakableGarment; - Id: 20735 AegisName: Manteau_Of_Flame_Heart Name: Manteau of Flame Heart Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,-10; bonus bShortWeaponDamageReturn,10+(getrefine()*2); bonus bUnbreakableGarment; - Id: 20737 AegisName: C_Kirin_Wing Name: Costume Kirin Wing Type: Armor Buy: 10 Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 6 - Id: 20743 AegisName: Airship_Cape Name: Airship's Cloak Type: Armor Buy: 10 Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 125 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-20; - Id: 20744 AegisName: Felock_Cape Name: Felrock's Cloak Type: Armor Buy: 10 Weight: 400 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Script: | bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,20; bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r>=7) { bonus bVariableCastrate,-10; } if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=12) { bonus bVariableCastrate,-5; } - Id: 20745 AegisName: Manteau_Of_Mistic_Froz Name: Manteau of Mystic Frozen Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,-10; if (.@r>=6) .@val = .@r*100; if (.@r>=10) .@val += 1000; bonus2 bAddEffWhenHit,Eff_Freeze,500+.@val; bonus bUnbreakableGarment; - Id: 20746 AegisName: C_Rudra_Wing Name: Costume Rudra Wings Type: Armor Buy: 10 Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 8 - Id: 20747 AegisName: Manteau_Great_Nature Name: Manteau of Great Nature Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,-10; if (.@r>=5) .@val = .@r; bonus5 bAutoSpell,"NPC_WIDESTONE",2,5+.@val,BF_SHORT,0; bonus bUnbreakableGarment; - Id: 20748 AegisName: Manteau_Of_Fallen Name: Fallen Warrior Manteau Type: Armor Buy: 10 Weight: 600 Defense: 20 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAgi,5; bonus bFlee,10; if (readparam(bStr)>=90) bonus bBaseAtk,10+(.@r*2); if (readparam(bInt)>=90) bonus bMatk,20+(.@r*3); if (readparam(bVit)>=90) bonus2 bSubEle,Ele_Neutral,3+((.@r>=8)?3:0)+((.@r>=10)?4:0); if (readparam(bAgi)>=90) { bonus bAspdRate,3+(.@r/2); bonus bAspd,((.@r>=10)?1:0); } if (readparam(bDex)>=90) bonus bLongAtkRate,3+(.@r/2); if (readparam(bLuk)>=90) bonus bCritAtkRate,5+.@r; - Id: 20749 AegisName: Manteau_Of_Fallen_ Name: Fallen Warrior Manteau Type: Armor Buy: 10 Weight: 600 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bAgi,5; bonus bFlee,10; if (readparam(bStr)>=90) bonus bBaseAtk,10+(.@r*2); if (readparam(bInt)>=90) bonus bMatk,20+(.@r*3); if (readparam(bVit)>=90) bonus2 bSubEle,Ele_Neutral,3+((.@r>=8)?3:0)+((.@r>=10)?4:0); if (readparam(bAgi)>=90) { bonus bAspdRate,3+(.@r/2); bonus bAspd,((.@r>=10)?1:0); } if (readparam(bDex)>=90) bonus bLongAtkRate,3+(.@r/2); if (readparam(bLuk)>=90) bonus bCritAtkRate,5+.@r; - Id: 20750 AegisName: Rouban_Manteau Name: Levain Manteau Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Wind,5; bonus2 bSubRace,RC_Insect,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 20753 AegisName: Lian_Robe Name: Lian Robe Type: Armor Weight: 700 Defense: 20 Range: 1 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Formless,-5; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bFlee,20; } - Id: 20756 AegisName: Egir_Manteau_K Name: Aegir Cloak Type: Armor Buy: 10 Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bUnbreakableGarment; bonus bMaxHP,500; bonus bMaxSP,50; - Id: 20761 AegisName: C_Wing_Of_Happiness Name: Costume Happiness Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 9 - Id: 20762 AegisName: C_GreatDevilWing Name: Costume Great Devil Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 10 - Id: 20763 AegisName: C_Amistr_Bag Name: Costume Amistr Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 4 - Id: 20764 AegisName: C_Fallen_Angel_Wing Name: Costume Fallen Angel Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 3 - Id: 20765 AegisName: C_Archangel_Wing Name: Costume Archangel Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 1 - Id: 20766 AegisName: Beam_Of_Light_Manteau Name: Radiance Manteau Type: Armor Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Holy,2; - Id: 20767 AegisName: Bravery_Bag_J Name: Adventurer's Backpack Type: Armor Weight: 100 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | skill "ALL_PRONTERA_RECALL",1; if (BaseClass == Job_Novice || BaseJob == Job_SuperNovice) skill "AL_INCAGI",1; - Id: 20768 AegisName: Archangel_Wing_J Name: Archangel Wing Type: Armor Weight: 200 Defense: 18 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 - Id: 20769 AegisName: Small_Hut_Manteau Name: Twilight Manteau Type: Armor Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Dark,2; - Id: 20770 AegisName: Limnil_Cape Name: Andfreimnir's Manteau Type: Armor Weight: 400 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspd,1; if (.@r>=7) bonus bAspdRate,2*(readparam(bAgi)/10); else if (.@r>=5) bonus bAspdRate,readparam(bAgi)/10; - Id: 20771 AegisName: Choas_Manteau Name: Chaotic Manteau Type: Armor Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Undead,2; - Id: 20772 AegisName: Grudge_Manteau Name: Grudge Manteau Type: Armor Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMaxHPrate,5; bonus bMatkRate,1; bonus2 bAddEle,Ele_Ghost,2; - Id: 20773 AegisName: Excelion_Wing Name: Excelion Wing Type: Armor Buy: 20 Weight: 900 Defense: 40 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bFlee,getrefine() * 2; bonus bFlee2,8 + (BaseLevel > 129 ? 2 : 0); - Id: 20774 AegisName: Cutoff_Manteau Name: King of Void's Garment Type: Armor Weight: 500 Defense: 16 Slots: 1 Jobs: All: true Novice: false Classes: All_Upper: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMdef,2; bonus bMatkRate,1; bonus bMaxHPrate,5; bonus2 bAddEle,Ele_Neutral,2; - Id: 20778 AegisName: RedLotus_Stole Name: Red Lotus Stole Type: Armor Buy: 20 Weight: 700 Defense: 8 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxSPrate,10; bonus bMdef,3; bonus bUseSPrate,-1*(1+(2*.@r/3)); if (.@r>=10) { bonus bSPGainValue,20; } - Id: 20779 AegisName: ManteauOfCracks Name: Rift Manteau Type: Armor Buy: 20 Weight: 500 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; - Id: 20780 AegisName: Union_MHP_Manteau Name: Unity STR Manteau Type: Armor Buy: 32000 Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bMaxHPrate,2*(.@r/2); } - Id: 20781 AegisName: Union_FLEE_Manteau Name: Unity AGI Manteau Type: Armor Buy: 32000 Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bFlee,3*(.@r/2); } - Id: 20782 AegisName: Union_SP_Muffler Name: Unity INT Muffler Type: Armor Buy: 32000 Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bUseSPrate,-(.@r/2); } - Id: 20783 AegisName: Hero_Cape Name: Hero Manteau Type: Armor Weight: 100 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,1+(.@r/3); bonus bFlee,1+(.@r/3); if (.@r > 9) { bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; } - Id: 20784 AegisName: Amistr_Bag_J Name: Amistr Bag Type: Armor Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 4 - Id: 20787 AegisName: Union_CRI_Muffler Name: Unity Exquisite Muffler Type: Armor Buy: 32000 Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bCritical,2*(.@r/2); } - Id: 20788 AegisName: Doram_Only_Cape Name: Private Doram Manteau Type: Armor Buy: 10000 Weight: 300 Defense: 20 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bFlee,5; bonus2 bSubEle,Ele_Neutral,2; bonus bFlee2,getrefine()/3; - Id: 20789 AegisName: Doram_High_Cape Name: Luxury Doram Manteau Type: Armor Buy: 20 Weight: 400 Defense: 25 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true Script: | bonus bFlee,7; bonus2 bSubEle,Ele_Neutral,3; .@r = getrefine()/3; bonus bFlee2,.@r; bonus bLuk,.@r; - Id: 20790 AegisName: Doram_Ele_Cape Name: Elegant Doram Manteau Type: Armor Buy: 20 Weight: 500 Defense: 30 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | bonus bFlee,10; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine()/2; bonus bFlee2,.@r; bonus bInt,.@r; bonus bDex,.@r; bonus bLuk,.@r; - Id: 20796 AegisName: Soheon_Winged_Robe Name: Seohyun's Robe Type: Armor Buy: 20 Weight: 600 Defense: 20 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bMdef,10; bonus bHealPower,5*getrefine(); - Id: 20797 AegisName: Etran_Shirt Name: Etran Shirt Type: Armor Weight: 150 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMdef,10; bonus bMaxHPrate,2; .@r = getrefine(); if (.@r >= 6) bonus bMaxHPrate,4; if (.@r >= 7) bonus bMaxHPrate,6; if (.@r >= 8) bonus bMaxHPrate,8; if (.@r >= 9) bonus bNoKnockback; - Id: 20798 AegisName: GrimReaper_Protection Name: Costume Grim Reaper Protection Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1450 - Id: 20799 AegisName: Elemental_Towel Name: Elemental Towel Type: Armor Buy: 20 Weight: 400 Defense: 13 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bLongAtkRate,2; if (getrefine()>=7) { bonus2 bSkillUseSP,"RA_ARROWSTORM",20; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM",60; } if (getrefine()>=8) { bonus bLongAtkRate,2; } if (getrefine()>=9) { bonus bLongAtkRate,3; } - Id: 20800 AegisName: Enforcer_cape Name: Enforcer Cape Type: Armor Buy: 20 Weight: 300 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; if (getskilllv("AS_GRIMTOOTH") == 5) { bonus2 bSkillAtk,"AS_GRIMTOOTH",50; } if (getskilllv("GC_CROSSIMPACT") == 5) { bonus2 bSkillAtk,"GC_CROSSIMPACT",5; } if (getskilllv("ASC_BREAKER") == 10) { bonus2 bSkillAtk,"ASC_BREAKER",50; } if (.@r>=7) { .@delay += 3; bonus2 bSkillAtk,"AS_GRIMTOOTH",BaseLevel; bonus2 bSkillAtk,"ASC_BREAKER",BaseLevel/3; bonus2 bSkillAtk,"GC_CROSSIMPACT",BaseLevel/30; } if (.@r>=9) { .@delay += 3; bonus bMaxSPrate,5; } bonus bDelayrate,-.@delay; if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { if (.@r >= 7) { bonus bMaxHPrate,20; bonus bLongAtkDef,35; } else { bonus bMaxHPrate,15; bonus bLongAtkDef,20; } } - Id: 20801 AegisName: Toughen_Time_Keepr_MT Name: Enhanced Time Keeper Manteau Type: Armor Defense: 13 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bFlee2,5; bonus bMdef,5; bonus bFlee,20; bonus2 bSubEle,Ele_Neutral,15; - Id: 20802 AegisName: AmistrBag_Teleport Name: Teleport Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "AL_TELEPORT",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20803 AegisName: AmistrBag_Heal Name: Heal Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "AL_HEAL",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20804 AegisName: AmistrBag_Greed Name: Greed Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "BS_GREED",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20805 AegisName: AmistrBag_Incagi Name: Increase Agility Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "AL_INCAGI",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20806 AegisName: AmistrBag_Magnum Name: Magnum Break Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "SM_MAGNUM",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20807 AegisName: AmistrBag_Endure Name: Endure Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "SM_ENDURE",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20808 AegisName: AmistrBag_Sight Name: Sight Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "MG_SIGHT",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20809 AegisName: AmistrBag_Concentrate Name: Improve Concentration Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "AC_CONCENTRATION",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20811 AegisName: AmistrBag_Hiding Name: Hiding Amistr Bag Type: Armor View: 4 Buy: 300000 Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | bonus bAllStats,1; .@r = getrefine(); skill "TF_HIDING",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>8) { bonus bSPGainValue,3; bonus bLongSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>11) { bonus bNoCastCancel; } - Id: 20812 AegisName: Kirin_Wing_J Name: Kirin Wing Type: Armor Buy: 20 Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 6 - Id: 20813 AegisName: Clack_Of_Servival_ Name: Cloak of Survival Type: Armor Buy: 1000 Weight: 550 Defense: 10 Slots: 1 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: 20814 AegisName: Wakwak_Manteau Name: Wakwak Manteau Type: Armor Buy: 20 Weight: 400 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddRace,RC_All,5; .@s = readparam(bStr); .@r = getrefine(); if (.@r>=5) { bonus bBaseAtk,2*(.@s/10); } if (.@r>=7) { bonus bBaseAtk,3*(.@s/10); } - Id: 20815 AegisName: SeraphimRobe Name: Seraphim Robe Type: Armor Weight: 300 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHPrate,10; bonus2 bMagicAtkEle,Ele_Neutral,5; .@r = getrefine(); .@s = getskilllv("CR_TRUST"); if (.@r > 6) { bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Holy,20; bonus2 bMagicAtkEle,Ele_Neutral,10; } if (.@r > 8) { bonus2 bSubEle,Ele_Dark,10; bonus2 bSubEle,Ele_Holy,10; bonus bVariableCastrate,-5; } if (.@s > 0) { bonus2 bSubEle,Ele_Holy,-.@s*3; } - Id: 20816 AegisName: Yoichi_Muffler Name: Yoichi's Shawl Type: Armor Weight: 300 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bAspdRate,5; if (getskilllv("RA_AIMEDBOLT") == 10) bonus2 bSkillAtk,"RA_AIMEDBOLT",5; if (getskilllv("SN_SHARPSHOOTING") == 5) bonus2 bSkillAtk,"SN_SHARPSHOOTING",60; if (getskilllv("HT_BLITZBEAT") == 5) bonus2 bSkillAtk,"HT_BLITZBEAT",15; if (Class == Job_Ranger) { bonus bMaxHPrate,5; bonus bLongAtkDef,20; if (.@r>=7) { bonus bLongAtkDef,15; bonus bMaxHPrate,5; } } if (.@r>=7) { bonus bAspdRate,3; bonus2 bSkillAtk,"SN_SHARPSHOOTING",(BaseLevel/3); bonus2 bSkillAtk,"HT_BLITZBEAT",(BaseLevel/5); bonus2 bSkillAtk,"RA_AIMEDBOLT",(BaseLevel/30); } if (.@r>=9) { bonus bAspdRate,3; bonus bMaxSPrate,5; } - Id: 20817 AegisName: Diffusion_Bravery_Bag Name: "[Katsua]Adventurer's Backpack" Type: Armor View: 2 Weight: 200 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); skill "BS_GREED",1; if (.@r>=7) { if (readparam(bStr)>=90) bonus bBaseAtk,(.@r>=9)?30:20; if (readparam(bInt)>=90) bonus bMatk,(.@r>=9)?50:30; if (readparam(bVit)>=90) bonus2 bSubEle,Ele_Neutral,(.@r>=9)?10:5; if (readparam(bAgi)>=90) { bonus bAspdRate,8; if (.@r>=9) bonus bAspd,1; } if (readparam(bDex)>=90) bonus bLongAtkRate,(.@r>=9)?10:5; if (readparam(bLuk)>=90) bonus bCritAtkRate,(.@r>=9)?15:10; } - Id: 20818 AegisName: Cursed_Devils_Manteau Name: Curse-Spell Manteau Type: Armor Buy: 20 Weight: 1000 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSubEle,Ele_All,5; bonus bLongAtkDef,10; if (getrefine()>=7) { bonus2 bSubEle,Ele_Water,30; bonus2 bSubEle,Ele_Wind,30; bonus2 bHPRegenRate,2000,10000; bonus2 bSPRegenRate,100,10000; } - Id: 20819 AegisName: Oxygen_Bomb_K Name: Oxygen Bottle Type: Armor Weight: 500 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bFlee,12+getrefine(); bonus bHit,getrefine(); - Id: 20820 AegisName: Cloak_Of_Elemental Name: Elemental Cape Type: Armor Weight: 500 Defense: 12 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bFlee,(10+5*(.@r/3)); bonus2 bSubEle,Ele_Neutral,10; if (.@r>=9) bonus bAspdRate,5; - Id: 20821 AegisName: Golden_Scarf Name: Golden Scarf Type: Armor Weight: 500 Defense: 12 Jobs: KagerouOboro: true Ninja: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bFlee,20; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,5; } - Id: 20822 AegisName: Mine_Worker_Backpack Name: Mine Worker's Backpack Type: Armor Weight: 600 Defense: 16 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,(5+(.@r/2)); if (.@r>=9) bonus bBaseAtk,20; - Id: 20823 AegisName: Para_Team_Manteau100 Name: Awakened Eden Group Manteau I Type: Armor Defense: 20 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; .@r = getrefine(); if (.@r >= 7) { bonus bMaxHP,500; bonus bFlee2,2; if (.@r >= 9) { bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; } } - Id: 20824 AegisName: Para_Team_Manteau130 Name: Awakened Eden Group Manteau II Type: Armor Defense: 25 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,10; bonus bFlee,12; bonus bMaxHP,500; bonus bFlee2,2; .@r = getrefine(); if (.@r >= 7) { bonus bMaxHP,500; bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; if (.@r >= 9) { bonus2 bSubEle,Ele_Neutral,5; } } - Id: 20825 AegisName: Para_Team_Manteau160 Name: Awakened Eden Group Manteau III Type: Armor Defense: 30 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_All,10; bonus bFlee,12; bonus bMaxHP,1000; bonus bFlee2,2; .@r = getrefine(); if (.@r >= 7) { bonus2 bSubEle,Ele_Neutral,5; if (.@r >= 9) { skill "BS_GREED",1; } } - Id: 20826 AegisName: Angel_feather Name: Angel Feather Type: Armor Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 18 - Id: 20827 AegisName: Diva_Manteau Name: Diva Manteau Type: Armor Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus bMaxHPrate,5; if (.@r>=9) bonus bMaxHPrate,10; - Id: 20828 AegisName: Mirage_Manteau Name: Mirage Manteau Type: Armor Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus bMaxSPrate,5; if (.@r>=9) bonus bMaxSPrate,10; - Id: 20830 AegisName: Seraphim_Wing_J2 Name: Wings of Seraph Type: Armor Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 8 - Id: 20831 AegisName: Elder_Spirit Name: Adventurer's Spirit Type: Armor Buy: 1000 Weight: 400 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bInt,5; if (.@r>=5) bonus bMatk,5*(readparam(bInt)/60); if (.@r>=7) bonus bMatk,5*(readparam(bInt)/10); - Id: 20833 AegisName: Fallen_Angel_Wing_TH Name: Fallen Angel Wing Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 3 Script: | bonus bBaseAtk,10; bonus bMatk,10; bonus bMdef,10; - Id: 20834 AegisName: Manteau_Of_Vagabond Name: Drifter's Cape Type: Armor Weight: 400 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoAuction: true Script: | .@r = getrefine(); .@bonus = 20; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 5; } bonus2 bSubEle,Ele_Neutral,.@bonus; - Id: 20835 AegisName: K_Fallen_Angel_Wing Name: "[Katsuya] Fallen Angel Wings" Type: Armor Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 3 Trade: NoDrop: true Script: | bonus bBaseAtk,readparam(bStr)/20; bonus bMatk,readparam(bInt)/20; bonus2 bSubEle,Ele_Neutral,readparam(bVit)/20; bonus bAspdRate,readparam(bAgi)/20; bonus bLongAtkRate,readparam(bDex)/20; bonus bCritAtkRate,readparam(bLuk)/20; bonus bAllStats,1; - Id: 20836 AegisName: Skin_Of_Lindwurm Name: Skin of Lindwyrm Type: Armor Buy: 1000 Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAgiVit,5; bonus bMdef,10; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubRace,RC_Dragon,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; .@r = getrefine(); .@val = (readparam(bAgi)+readparam(bVit))/20; if (.@r>=7) { skill "TF_HIDING",1; if (.@r>=8) { bonus bMaxHPrate,.@val; bonus bVariableCastrate,-2*.@val; if (.@r>=9) { skill "AS_CLOAKING",1; } } } - Id: 20837 AegisName: Skin_Of_Gwiber Name: Skin of Gwiber Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bInt,5; bonus bDex,5; bonus bMdef,10; bonus2 bSubEle,Ele_Dark,5; bonus2 bSubEle,Ele_Undead,5; bonus2 bSubRace,RC_Demon,5; bonus2 bSubRace,RC_Undead,5; .@r = getrefine(); .@val = (readparam(bInt)+readparam(bDex))/20; if (.@r>=7) { bonus bSPGainValue,10; if (.@r>=8) { bonus bBaseAtk,5*.@val; bonus bDelayrate,-1*.@val; if (.@r>=9) { bonus bSPGainValue,10; } } } - Id: 20838 AegisName: Muffler_IL Name: Illusion Muffler Type: Armor Buy: 20 Weight: 400 Defense: 8 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); - Id: 20840 AegisName: Cape_Of_Ancient_Lord_IL Name: Illusion Ancient Cape Type: Armor Weight: 600 Defense: 18 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@val = min(getrefine(),10)/2; bonus bAgi,(2+.@val); - Id: 20841 AegisName: Golden_Angel_Wing_TH Name: Golden Angel Wing Type: Armor Weight: 10 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 5 Script: | .@r = getrefine(); if (readparam(bStr) >= 90) { bonus bBaseAtk,15; if (.@r >= 9) bonus bBaseAtk,15; } if (readparam(bInt) >= 90) { bonus bMatk,15; if (.@r >= 9) bonus bMatk,15; } if (readparam(bVit) >= 90) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } } if (readparam(bAgi) >= 90) { bonus bAspd,1; if (.@r >= 9) bonus bAspd,1; } if (readparam(bDex) >= 90) { bonus bLongAtkRate,5; if (.@r >= 9) bonus bLongAtkRate,5; } if (readparam(bLuk) >= 90) { bonus bCritAtkRate,5; if (.@r >= 9) bonus bCritAtkRate,5; } - Id: 20842 AegisName: Bag_Of_Antonio_Melee Name: Candy Pouch Bag (Physical) Type: Armor Weight: 200 Defense: 30 Slots: 1 Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 13 Script: | .@r = getrefine(); if (.@r >= 2) bonus bAtkRate,.@r/2; if (.@r >= 9) bonus bAspdRate,10; if (.@r >= 12) bonus bDelayrate,-7; if (BaseLevel < 100) { bonus2 bExpAddRace,RC_All,10; } else { bonus2 bExpAddRace,RC_All,4; } - Id: 20843 AegisName: Bag_Of_Antonio_Range Name: Candy Pouch Bag (Range) Type: Armor Weight: 200 Defense: 30 Slots: 1 Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 13 Script: | .@r = getrefine(); if (.@r >= 2) bonus bLongAtkRate,.@r/2; if (.@r >= 9) bonus bAspdRate,10; if (.@r >= 12) bonus bDelayrate,-7; if (BaseLevel < 100) { bonus2 bExpAddRace,RC_All,10; } else { bonus2 bExpAddRace,RC_All,4; } - Id: 20844 AegisName: Bag_Of_Antonio_Magic Name: Candy Pouch Bag (Magic) Type: Armor Weight: 200 Defense: 30 Slots: 1 Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 13 Script: | .@r = getrefine(); if (.@r >= 2) bonus bMatkRate,.@r/2; if (.@r >= 9) bonus bVariableCastrate,-10; if (.@r >= 12) bonus bDelayrate,-7; if (BaseLevel < 100) { bonus2 bExpAddRace,RC_All,10; } else { bonus2 bExpAddRace,RC_All,4; } - Id: 20845 AegisName: Skin_Of_Marraco Name: Skin of Malach Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bStr,5; bonus bLuk,5; bonus bMdef,10; bonus2 bSubEle,Ele_Ghost,5; bonus2 bSubEle,Ele_Holy,5; bonus2 bSubRace,RC_Angel,5; bonus2 bSubRace,RC_Formless,5; .@r = getrefine(); .@s = (readparam(bStr)+readparam(bLuk))/20; if (.@r>=7) { bonus bCritAtkRate,5; if (.@r>=8) { bonus bAspdRate,.@s; bonus bCritical,.@s; if (.@r>=9) { bonus bCritAtkRate,5; } } } - Id: 20846 AegisName: Temporal_Manteau Name: Temporal Manteau Type: Armor Buy: 20 Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; - Id: 20847 AegisName: Clack_Of_Servival_IL Name: Illusion Survivor Manteau Type: Armor Weight: 550 Defense: 30 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bVit,15; - Id: 20852 AegisName: Jirant_Cloak Name: Witch's Cloak Type: Armor Weight: 1000 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,5*@r; bonus2 bSubEle,Ele_Wind,5*@r; if (.@r>=7) { bonus bMatkRate,5; bonus bVariableCastrate,-5; } if (.@r>=9) { bonus bMatkRate,5; bonus bVariableCastrate,-5; } if (.@r>=10) bonus bNoWalkDelay; - Id: 20853 AegisName: Rudo_Black_Wings Name: Rudo's Black Wing Type: Armor Buy: 20 Weight: 600 Defense: 6 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bAspd,1; bonus bMatkRate,3*(getrefine()/2); - Id: 20854 AegisName: Medical_Cape Name: Medical Cape Type: Armor Weight: 600 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | .@r = getrefine(); .@drop = 50; bonus bHPGainValue,100; bonus bMagicHPGainValue,100; bonus bSPGainValue,10; bonus bMagicSPGainValue,10; if (.@r>=7) .@drop += 50; if (.@r>=9) .@drop += 100; bonus3 bAddMonsterDropItem,23360,RC_Brute,.@drop; bonus3 bAddMonsterDropItem,23360,RC_Fish,.@drop; bonus3 bAddMonsterDropItem,12791,RC_Fish,.@drop; bonus3 bAddMonsterDropItem,12791,RC_Insect,.@drop; bonus3 bAddMonsterDropItem,12016,RC_Demon,.@drop; bonus3 bAddMonsterDropItem,12016,RC_DemiHuman,.@drop; bonus3 bAddMonsterDropItem,23361,RC_Dragon,.@drop; bonus3 bAddMonsterDropItem,23361,RC_Formless,.@drop; bonus3 bAddMonsterDropItem,678,RC_Angel,.@drop; bonus3 bAddMonsterDropItem,678,RC_Undead,.@drop; - Id: 20855 AegisName: Rental_Oxygen_Bomb Name: Costume Oxygen Tank Type: Armor Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,30; bonus bFlee,30; bonus2 bSubRace,RC_Fish,10; bonus2 bSubEle,Ele_Neutral,15; bonus2 bSubEle,Ele_Water,15; - Id: 20856 AegisName: YSF01_Manteau Name: YSF01 Manteau Type: Armor Weight: 750 Defense: 32 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); if (.@r >= 8) { bonus bBaseAtk,20; if (.@r >= 11) { .@val = -3; if (.@r >= 13) { .@val += -4; } } } if (readparam(bVit) >= 125) { .@val += -10; } if (.@val) { bonus bDelayrate,.@val; } - Id: 20857 AegisName: VeilCoyote Name: Sniping Veil Type: Armor Buy: 20 Weight: 300 Defense: 18 Slots: 1 Jobs: Rebellion: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bAspdRate,10; bonus bMaxHPrate,15; bonus bLongAtkRate,10; bonus bLongAtkDef,20; if (getskilllv("RL_AM_BLAST") >= 5) bonus2 bSkillCooldown,"RL_AM_BLAST",-2000; if (getskilllv("RL_HAMMER_OF_GOD") >= 5) bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-10000; if (getskilllv("RL_MASS_SPIRAL") >= 5) bonus2 bSkillCooldown,"RL_MASS_SPIRAL",-2000; if (.@r>=7) { bonus bMaxHPrate,5; bonus bLongAtkRate,3; bonus bLongAtkDef,15; bonus2 bSkillAtk,"RL_MASS_SPIRAL",BaseLevel/3; bonus2 bSkillAtk,"RL_AM_BLAST",3*(BaseLevel/4); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",6*(BaseLevel/5); } if (.@r>=9) { bonus bMaxSPrate,5; bonus bLongAtkRate,3; } - Id: 20858 AegisName: YSF01_Manteau_J Name: Y.S.F.0.1 Manteau Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,15; if (.@r>=7) bonus2 bSkillUseSP,"LK_SPIRALPIERCE",5; if (.@r>=9) bonus bAspdRate,15; - Id: 20859 AegisName: Phreeoni_Wing Name: Phreeoni Wings Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=7) bonus bHit,20; if (.@r>=8) bonus bHit,30; if (.@r>=9) bonus bHit,40; if (.@r>=10) bonus bHit,100; - Id: 20860 AegisName: BattleSurcoat Name: Battle Surcoat Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); if (.@r>=9) { bonus bAspdRate,9; bonus bFlee,30; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; } else if (.@r>=7) { bonus bAspdRate,6; bonus bFlee,20; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; } else { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; } - Id: 20861 AegisName: SwordWing_J Name: Sword Wing Type: Armor Buy: 20 Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 19 - Id: 20862 AegisName: EXE_Backpack Name: EXE Backpack Type: Armor Weight: 200 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 22 Script: | bonus2 bExpAddRace,RC_All,10; - Id: 20863 AegisName: MenblattWing Name: Menblatt Wing Manteau Type: Armor Buy: 20 Weight: 400 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) bonus bLongAtkRate,readparam(bDex)/60; if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10; - Id: 20864 AegisName: Siege_Manteau_1Tier Name: Lesser Guild Member's Manteau Type: Armor Weight: 300 Defense: 16 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMaxHP,250; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; bonus bMdef,1; - Id: 20865 AegisName: Siege_Muffler_1Tier Name: Lesser Guild Member's Muffler Type: Armor Weight: 150 Defense: 7 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMaxHP,150; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; bonus bMdef,1; - Id: 20866 AegisName: Golden_Angel_Wing_TW Name: Golden Angel Wing Type: Armor Weight: 10 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 5 Script: | .@r = getrefine(); if (readparam(bStr) >= 90) { bonus bBaseAtk,15; if (.@r >= 9) bonus bBaseAtk,15; } if (readparam(bInt) >= 90) { bonus bMatk,15; if (.@r >= 9) bonus bMatk,15; } if (readparam(bVit) >= 90) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } } if (readparam(bAgi) >= 90) { bonus bAspd,1; if (.@r >= 9) bonus bAspd,1; } if (readparam(bDex) >= 90) { bonus bLongAtkRate,5; if (.@r >= 9) bonus bLongAtkRate,5; } if (readparam(bLuk) >= 90) { bonus bCritAtkRate,5; if (.@r >= 9) bonus bCritAtkRate,5; } - Id: 20867 AegisName: 60Lv_Hood Name: Subjugation Team's Shoulder Belt Type: Armor Weight: 200 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus2 bSubEle,Ele_Neutral,7; bonus bFlee,10; - Id: 20868 AegisName: 70Lv_Manteau Name: Expedition's Manteau Type: Armor Weight: 300 Defense: 14 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus2 bSubEle,Ele_Neutral,8; bonus bFlee,15+(3*(getrefine()/3)); - Id: 20869 AegisName: 70Lv_Muffler Name: Expedition's Muffler Type: Armor Weight: 250 Defense: 13 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus2 bSubEle,Ele_Neutral,9+(getrefine()/3); bonus bFlee,12; - Id: 20870 AegisName: 80Lv_Manteau Name: Contingent Manteau Type: Armor Weight: 400 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bAspdRate,5; bonus bFlee,15; if (getrefine()>=5) bonus bAgi,1; - Id: 20871 AegisName: 80Lv_Cloak Name: Contingent Cloak Type: Armor Weight: 400 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bAspdRate,3; bonus bFlee,20; if (getrefine()>=5) bonus bAspdRate,2; - Id: 20872 AegisName: 80Lv_Muffler Name: Contingent Muffler Type: Armor Weight: 350 Defense: 14 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bVariableCastrate,-3; bonus bFlee,16; if (getrefine()>=5) bonus bVariableCastrate,-4; - Id: 20873 AegisName: 80Lv_Cape Name: Contingent Cape Type: Armor Weight: 300 Defense: 13 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bVariableCastrate,-5; bonus bFlee,12; if (getrefine()>=5) bonus2 bSubEle,Ele_Neutral,3; - Id: 20874 AegisName: 90Lv_Manteau Name: Conqueror's Manteau Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,7; bonus bFlee,18; if (.@r>=5) bonus bAgi,1; if (.@r>=7) bonus bCritAtkRate,4; - Id: 20875 AegisName: 90Lv_Cloak Name: Conqueror's Cloak Type: Armor Weight: 450 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,5; bonus bFlee,25; if (.@r>=5) bonus bAspdRate,2; if (.@r>=7) bonus bLongAtkRate,3; - Id: 20876 AegisName: 90Lv_Muffler Name: Conqueror's Muffler Type: Armor Weight: 450 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-5; bonus bFlee,16; if (.@r>=5) bonus bVariableCastrate,-4; if (.@r>=7) bonus bVariableCastrate,-3; - Id: 20877 AegisName: 90Lv_Cape Name: Conqueror's Cape Type: Armor Weight: 400 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-7; bonus bFlee,12; if (.@r>=5) bonus2 bSubEle,Ele_Neutral,3; if (.@r>=7) bonus2 bSubEle,Ele_Neutral,4; - Id: 20900 AegisName: Golden_Scarf_J Name: Bouncer's Scarf Type: Armor Buy: 20 Weight: 300 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r= getrefine(); bonus bMdef,10; bonus bFlee,10; if (getskilllv("KO_KAIHOU") >= 1) bonus2 bSkillAtk,"KO_KAIHOU",40; if (getskilllv("NJ_HUUMA") >= 5) bonus2 bSkillAtk,"NJ_HUUMA",50; if (getskilllv("KO_HUUMARANKA") >= 5) bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (eaclass()&EAJL_THIRD && (BaseJob == Job_Kagerou || BaseJob == Job_Oboro)) { bonus bMaxHPrate,15; bonus bLongAtkDef,20; } if (.@r>=7) { bonus bFlee,20; bonus2 bSkillAtk,"NJ_HUUMA",BaseLevel; bonus2 bSkillAtk,"KO_KAIHOU",3*(BaseLevel/2); bonus2 bSkillAtk,"KO_HUUMARANKA",BaseLevel/3; if (eaclass()&EAJL_THIRD && (BaseJob == Job_Kagerou || BaseJob == Job_Oboro)) { bonus bMaxHPrate,5; bonus bLongAtkDef,15; } } if (.@r>=9) { bonus bFlee,20; bonus bMaxSPrate,5; } - Id: 20902 AegisName: True_Hunting_Manteau Name: True Hunting Manteau Type: Armor Weight: 700 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bVariableCastrate,-10; bonus bFlee,15; bonus bVariableCastrate,-5*(getrefine()/3); bonus2 bSubRace,RC_Insect,10; bonus2 bSubRace,RC_Brute,10; - Id: 20903 AegisName: R_Hunting_Manteau Name: Short-term Hunting Manteau Type: Armor Defense: 18 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVariableCastrate,-15; bonus bFlee,15; bonus2 bSubRace,RC_Insect,10; bonus2 bSubRace,RC_Brute,10; - Id: 20904 AegisName: Etran_Shirt_BR Name: Etran Shirt Type: Armor Weight: 150 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,((.@r>=8)?16:(.@r>=6?8:2)); if (.@r>=10) bonus bNoKnockback; - Id: 20905 AegisName: Astrea_Cape Name: Asteria's Cloak Type: Armor Weight: 400 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bInt,2; bonus bVit,2; bonus bDex,2; if (getrefine()>=12) bonus bAspd,2; - Id: 20906 AegisName: Rebeginer_Manteau Name: Beginner's Cloak Type: Armor Buy: 20 Defense: 10 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus2 bSubEle,Ele_Neutral,20; bonus bVariableCastrate,-5; - Id: 20907 AegisName: Fairy_Cloth Name: Fairy Cloth Type: Armor Buy: 20 Weight: 900 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bFlee2,8; bonus2 bSubRace,RC_DemiHuman,5; if (.@r>=5) { bonus bFlee2,10; bonus bDef,50; bonus bMdef,5; } if (.@r>=7) { bonus bFlee2,10; bonus bDef,50; bonus bMdef,5; } - Id: 20908 AegisName: Jirant_Cloak_BR Name: Witch's Cloak Type: Armor Weight: 1000 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,5*(.@r/2); bonus2 bSubEle,Ele_Wind,5*(.@r/2); if (.@r>=5) { bonus bMatkRate,5; bonus bVariableCastrate,-5; } if (.@r>=7) { bonus bMatkRate,5; bonus bVariableCastrate,-5; } if (.@r>=15) bonus bNoWalkDelay; - Id: 20910 AegisName: Etran_Shirt_TW Name: Etran Shirt Type: Armor Weight: 150 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,2; if (.@r>=7) bonus bMaxHPrate,4; if (.@r>=8) bonus bMaxHPrate,6; if (.@r>=9) bonus bMaxHPrate,8; if (.@r>=10) bonus bNoKnockback; - Id: 20915 AegisName: Doram_Only_Cape_J Name: Doram Cape Type: Armor Buy: 20 Weight: 100 Defense: 20 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - Id: 20916 AegisName: Doram_High_Cape_J Name: High-End Doram Cape Type: Armor Buy: 20 Weight: 100 Defense: 25 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (.@r>=7) { bonus bAspdRate,5; if (.@r>=8) { bonus bVariableCastrate,-5; if (.@r>=9) { bonus bFlee2,15; } } } - Id: 20917 AegisName: Doram_Ele_Cape_J Name: Special Doram Cape Type: Armor Buy: 20 Weight: 100 Defense: 30 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bMaxHPrate,2*.@r; bonus bMaxSPrate,2*.@r; if (.@r>=7) bonus bAspdRate,15; if (.@r>=8) bonus bVariableCastrate,-10; if (.@r>=9) bonus bFlee2,20; - Id: 20918 AegisName: Angel_Poring_Wing Name: Angel Poring Wing Type: Armor Weight: 200 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true EquipLevelMin: 1 View: 15 Script: | bonus bAllStats,2; bonus bMdef,4; - Id: 20922 AegisName: Leviathan_muffler Name: Leviathan Muffler Type: Armor Buy: 20 Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Water,15+.@r; bonus2 bMagicAddEle,Ele_Water,15+.@r; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Water,100; - Id: 20923 AegisName: Goibne_Shoulder_IL Name: Illusion Goibne Spaulders Type: Armor Weight: 1000 Defense: 47 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMdef,2; bonus bVit,1; if (.@r >= 7) { .@val = 5; if (.@r >= 9) { .@val += 10; } } if (.@val) { bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; } - Id: 20924 AegisName: Brave_muffler Name: Brave Muffler Type: Armor Buy: 20 Weight: 1000 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus2 bResEff,Eff_Freeze,2500; bonus bHealPower2,4*.@r; bonus bAddItemHealRate,4*.@r; - Id: 20925 AegisName: Commander_manteau_J Name: Commander Manteau Type: Armor Buy: 20 Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,10; bonus bBaseAtk,10; bonus bMatk,10; bonus2 bSubRace,RC_Player_Human,3; if (.@r>=5) { bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } - Id: 20926 AegisName: 2018_RTC_Cape4_TW Name: 2018-RTC Memorial Cloak Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true EquipLevelMin: 100 View: 32 Script: | bonus bAllStats,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bAddRace,RC_All,3; bonus2 bMagicAddRace,RC_All,3; bonus2 bSubRace,RC_All,getrefine()/4; bonus2 bAddItemHealRate,522,50; bonus2 bAddItemHealRate,547,50; - Id: 20927 AegisName: 2018_RTC_Cape1_TW Name: 2018 RTC Cape1 # !todo check english name Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 Trade: NoTrade: true Refineable: true EquipLevelMin: 100 View: 29 Script: | bonus bAllStats,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus2 bSubRace,RC_All,7; - Id: 20928 AegisName: 2018_RTC_Cape2_TW Name: 2018 RTC Cape2 # !todo check english name Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 Trade: NoTrade: true Refineable: true EquipLevelMin: 100 View: 30 Script: | bonus bAllStats,4; bonus bMaxHPrate,4; bonus bMaxSPrate,4; bonus2 bAddRace,RC_All,4; bonus2 bMagicAddRace,RC_All,4; bonus2 bSubRace,RC_All,6; - Id: 20929 AegisName: 2018_RTC_Cape3_TW Name: 2018 RTC Cape3 # !todo check english name Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 Trade: NoTrade: true Refineable: true EquipLevelMin: 100 View: 31 Script: | bonus bAllStats,3; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bAddRace,RC_All,3; bonus2 bMagicAddRace,RC_All,3; bonus2 bSubRace,RC_All,5; - Id: 20931 AegisName: Rainbow_Scarf_Jp Name: Prism Rangers Scarf Type: Armor Buy: 20 Weight: 300 Defense: 12 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bLongAtkRate,.@val+2*getskilllv("RA_AIMEDBOLT"); if (getskilllv("RA_WUGRIDER") == 3) { bonus2 bSkillCooldown,"RA_UNLIMIT",-180000; } if (getskilllv("RA_CAMOUFLAGE") == 5) { bonus bDelayrate,-10; } bonus2 bSkillCooldown,"RA_ARROWSTORM",-200; bonus2 bSkillAtk,"RA_ARROWSTORM",getskilllv("RA_AIMEDBOLT"); UnEquipScript: | sc_end SC_UNLIMIT; - Id: 20932 AegisName: Old_Moc_Shawl Name: Old Morocc Shawl Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r= getrefine(); bonus bMaxHPrate,5; bonus bFlee,10; if (.@r>=7) bonus bFlee,20; if (.@r>=8) { bonus bFlee,30; bonus bRestartFullRecover; } if (.@r>=9) bonus bFlee,40; if (.@r>=10) bonus bFlee2,25; - Id: 20933 AegisName: Illusion_Engine_A Name: Illusion Engine wing A-type Type: Armor Weight: 900 Defense: 50 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bAspdRate,5; } - Id: 20934 AegisName: Illusion_Engine_B Name: Illusion Engine wing B-type Type: Armor Weight: 900 Defense: 50 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000+(100*(.@r/2)); if (.@r >= 7) { bonus bVariableCastrate,-5; } - Id: 20935 AegisName: Lava_Leather_Manteau Name: Lava Leather Manteau Type: Armor Buy: 50000 Weight: 400 Defense: 50 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | bonus bHit,10; .@r = getrefine(); if (.@r>=7) bonus bHit,5; if (.@r>=9) bonus bHit,5; if (.@r>=11) bonus bDelayrate,-3; - Id: 20936 AegisName: Lava_Leather_Muffler Name: Lava Leather Muffler Type: Armor Buy: 50000 Weight: 350 Defense: 35 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | bonus bCritical,5; .@r = getrefine(); if (.@r>=7) bonus bCritical,5; if (.@r>=9) bonus bCritAtkRate,5; if (.@r>=11) bonus bAtkRate,3; - Id: 20937 AegisName: Lava_Leather_Hode Name: Lava Leather Hood Type: Armor Buy: 50000 Weight: 300 Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | bonus bVariableCastrate,-10; .@r = getrefine(); if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAtkEle,Ele_Fire,5; - Id: 20938 AegisName: Rudra_Wing Name: Seraphim's Wings # !todo check english name Type: Armor Weight: 200 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 Refineable: true View: 8 - Id: 20939 AegisName: Time_Overload_Hood Name: Temporal Transcendence Manteau Type: Armor Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus bHit,10; bonus bFlee,30; bonus bAspdRate,10; bonus bVariableCastrate,-10; - Id: 20940 AegisName: Violet_Halo Name: Violet Halo Type: Armor View: 39 Weight: 100 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,20+((.@r/3)*20); bonus bLongAtkRate,3+((.@r/3)*3); bonus bCritAtkRate,3+((.@r/3)*3); if (.@r>10) { bonus bDelayrate,-4; } - Id: 20941 AegisName: Phoenix_Muffler Name: Phoenix Muffler Type: Armor Buy: 20 Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bAddEle,Ele_Fire,15+.@r; bonus2 bMagicAddEle,Ele_Fire,15+.@r; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bAspdRate,.@r; if (.@r>=10) bonus2 bSubEle,Ele_Fire,100; - Id: 20942 AegisName: Manteau_Of_Guardsman Name: Manteau Of Guardsman Type: Armor Buy: 20 Weight: 500 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+3*(.@r/3); bonus bMaxSPrate,5+3*(.@r/3); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; - Id: 20943 AegisName: Geffen_Magic_Muffler Name: Geffen Magic Muffler Type: Armor Buy: 20 Weight: 550 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } if (.@r >= 9) { .@val -= 10; } bonus bVariableCastrate,.@val; - Id: 20944 AegisName: Anti_Magic_Manteau Name: Anti Magic Manteau Type: Armor Buy: 20 Weight: 750 Defense: 23 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPrate,(2*(.@r/3)); if (.@r >= 7) { bonus bAtkRate,7; } if (.@r >= 9) { bonus bMaxHPrate,10; } - Id: 20945 AegisName: Regia_Hunting_Manteau Name: Regia Hunting Manteau Type: Armor Weight: 700 Defense: 9 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bAspdRate,5; bonus bFlee,15; bonus2 bSubRace,RC_Insect,7; bonus2 bSubRace,RC_Brute,7; bonus bVariableCastrate,-2*(getrefine()/3); - Id: 20946 AegisName: Drag_Manteau Name: Dragon Scale Hood Type: Armor Weight: 500 Defense: 23 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMdef,2; bonus bDef,20; bonus bHealPower2,15; if (.@r>=7) { bonus2 bSubRace,RC_Dragon,2; } if (.@r>=9) { autobonus2 "{ bonus2 bHPRegenRate,2000,1000; }",1,3000,BF_MAGIC|BF_WEAPON; } if (.@r>=11) { bonus2 bSubRace,RC_Dragon,3; } - Id: 20947 AegisName: Cassock_Manteau Name: Clergy's Manteau Type: Armor Weight: 450 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxSPrate,5; bonus bMdef,10; bonus bVariableCastrate,-10; bonus2 bMagicAddRace,RC_Angel,(.@r/2); bonus2 bMagicAddRace,RC_Demon,(.@r/2); bonus2 bSubRace,RC_Angel,(.@r/3); bonus2 bSubRace,RC_Demon,(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; } - Id: 20948 AegisName: Morpheus_Shawl_IL Name: Illusion Morpheus's Shawl Type: Armor Buy: 20 Weight: 600 Defense: 8 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bMaxSPrate,10; bonus bMdef,5; .@r = getrefine(); if (.@r >= 7) { .@bonus = -10; if (.@r >= 9) { .@bonus -= 10; } bonus bVariableCastrate,.@bonus; } - Id: 20949 AegisName: Skin_Of_Ladon_J Name: Skin of Ladon Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@val = 10; bonus bSPGainValue,10; bonus bLongSPGainValue,10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bBaseAtk,15*.@s; bonus bHit,5*.@s; if (.@r>=9) { .@val += 10; } } bonus bSPGainValue,.@val; bonus bLongSPGainValue,.@val; } - Id: 20951 AegisName: Leo_Mantle_J Name: Leo Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Monk) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bNoCastCancel; if (.@r>=8) bonus bAspdRate,20; } - Id: 20952 AegisName: Anony_As_Muffler Name: Mysterious Muffler Type: Armor Buy: 20 Weight: 100 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r= getrefine(); bonus bMdef,5; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=8) bonus bSpeedRate,40; if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; bonus bHPGainValue,5; bonus bLongHPGainValue,5; } if (.@r>=10) skill "AS_CLOAKING",3; - Id: 20953 AegisName: H_AD_Hood Name: High Adventurer Hood Type: Armor Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,10; - Id: 20954 AegisName: Cancer_Manteau_J Name: Cancer Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bNoCastCancel; if (.@r>=8) bonus bNoKnockback; } - Id: 20955 AegisName: Chrismas_Tree Name: Christmas Guardian Tree Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true View: 45 Script: | .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bAtkRate,(.@r/2); if (.@r>=9) { bonus bMatk,30; bonus bBaseAtk,30; } if (.@r>=11) { autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Holy,20; }",1,10000,BF_WEAPON; } - Id: 20962 AegisName: Skin_Of_Typhon Name: Skin of Typhon Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Fish,5; bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Poison,5; bonus bAgi,5; bonus bVit,5; bonus bMdef,10; .@r = getrefine(); if (.@r>=7) { .@sp = 10; if (.@r>=8) { .@s = (readparam(bAgi)+readparam(bVit))/20; bonus bMatk,15*.@s; bonus bDef,20*.@s; if (.@r>=9) { .@sp += 10; } } bonus bMagicSPGainValue,.@sp; } - Id: 20963 AegisName: Temporal_M_Str Name: Temporal Str Manteau Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddSize,Size_All,5*(.@r/4); if (.@r>=7) { bonus bAtkRate,7; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Demon,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Brute,20; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Demon,10; bonus2 bIgnoreMdefRaceRate,RC_Demon,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreMdefRaceRate,RC_Brute,10; } - Id: 20964 AegisName: Temporal_M_Agi Name: Temporal Agi Manteau Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bCritAtkRate,3*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bAddSize,Size_All,5*(.@r/4); if (.@r>=7) { bonus bAtkRate,7; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Demon,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Brute,20; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Demon,10; bonus2 bIgnoreMdefRaceRate,RC_Demon,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreMdefRaceRate,RC_Brute,10; } - Id: 20965 AegisName: Temporal_M_Vit Name: Temporal Vit Manteau Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bMaxHP,400*(.@r/2); bonus bMaxHPrate,3*(.@r/4); if (.@r>=7) { bonus bAtkRate,7; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Demon,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Brute,20; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Demon,10; bonus2 bIgnoreMdefRaceRate,RC_Demon,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreMdefRaceRate,RC_Brute,10; } - Id: 20966 AegisName: Temporal_M_Int Name: Temporal Int Manteau Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); if (.@r>=7) { bonus bMatkRate,7; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Demon,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Brute,20; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Demon,10; bonus2 bIgnoreMdefRaceRate,RC_Demon,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreMdefRaceRate,RC_Brute,10; } - Id: 20967 AegisName: Temporal_M_Dex Name: Temporal Dex Manteau Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus bCritAtkRate,3*(.@r/4); if (.@r>=7) { bonus bAtkRate,7; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Demon,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Brute,20; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Demon,10; bonus2 bIgnoreMdefRaceRate,RC_Demon,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreMdefRaceRate,RC_Brute,10; } - Id: 20968 AegisName: Temporal_M_Luk Name: Temporal Luk Manteau Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bCritAtkRate,3*(.@r/2); bonus bCritical,3*(.@r/2); bonus bAspdRate,5*(.@r/4); if (.@r>=7) { bonus bAtkRate,7; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Demon,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; bonus2 bIgnoreDefRaceRate,RC_Brute,20; bonus2 bIgnoreMdefRaceRate,RC_Brute,20; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Demon,10; bonus2 bIgnoreMdefRaceRate,RC_Demon,10; bonus2 bIgnoreDefRaceRate,RC_Brute,10; bonus2 bIgnoreMdefRaceRate,RC_Brute,10; } - Id: 20969 AegisName: Rainbow_Muffler_Jp Name: Rainbow Muffler Type: Armor Buy: 20 Weight: 300 Defense: 12 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@lvl = getskilllv("WM_GLOOMYDAY"); if (.@r >= 7) { .@val = 10; } else if (.@r >= 5) { .@val = 5; } else { .@val = 2; } bonus bMaxHPrate,.@val; bonus bMaxSPrate,.@val; bonus bMatkRate,.@val+(4*.@lvl); bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSkillAtk,"WM_METALICSOUND",4*.@lvl; if (getskilllv("WM_FRIGG_SONG") == 5) { bonus2 bSkillCooldown,"WM_METALICSOUND",-200; bonus bAspdRate,10; } if (getskilllv("WM_LULLABY_DEEPSLEEP") == 5) { skill "AL_HEAL",10; bonus bMagicHPGainValue,200; bonus bMagicSPGainValue,20; } - Id: 20970 AegisName: Libra_Manteau_J Name: Libra Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubClass,Class_Boss,5; if (.@r>=8) bonus bLongAtkRate,20; } - Id: 20971 AegisName: Taurus_Manteau_J Name: Taurus Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20; bonus bAspdRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_Wind,70; if (.@r>=8) bonus bAspdRate,25; } - Id: 20972 AegisName: Aquarius_Manteau_J Name: Aquarius Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { bonus bMatk,30; bonus2 bSubEle,Ele_Neutral,20; if (.@r>=8) bonus bAspdRate,20; } - Id: 20973 AegisName: Spiritual_Cloth Name: Spiritual Cloth Type: Armor Weight: 900 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; if (.@r >= 5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-5; } if (.@r >= 7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; } - Id: 20976 AegisName: Scorpio_Manteau_J Name: Scorpio Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bFlee,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillUseSP,"GC_ROLLINGCUTTER",2; if (.@r>=8) bonus bAspdRate,20; } - Id: 20983 AegisName: Pollux_Mantle_J Name: Pollux Mantle Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bAspd,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubClass,Class_Boss,5; if (.@r>=8) bonus bWeaponAtkRate,20; } - Id: 20984 AegisName: Procyon_Mantle_J Name: Procyon Mantle Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bVariableCastrate,-10; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Soul_Linker) { bonus bMatk,30; bonus2 bSubEle,Ele_Neutral,20; if (.@r>=8) bonus bAspdRate,20; } - Id: 20985 AegisName: C_Gourd_bottle_J Name: Costume Gourd Bottle Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 82 - Id: 20986 AegisName: Scientist_Mantle Name: Scientists Mantle Type: Armor Weight: 300 Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bFlee2,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus bMaxHP,1500*getskilllv("GN_CRAZYWEED"); bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20*getskilllv("GN_FIRE_EXPANSION"); if (getskilllv("GN_MANDRAGORA")>=5) bonus bHitRate,50; if (getskilllv("GN_HELLS_PLANT")>=5) bonus2 bVariableCastrate,"GN_SPORE_EXPLOSION",-100; if (.@r>=7) { bonus bFlee2,8; bonus bLongAtkRate,10; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; } if (.@r>=9) { bonus bFlee2,12; bonus bLongAtkRate,10; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; } - Id: 20987 AegisName: C_Heart_Wing_Bag_J Name: Costume Piglering Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 58 - Id: 20988 AegisName: C_Mechanical_Butterfly Name: "Costume: Mechanical Butterfly" Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 92 - Id: 20989 AegisName: C_Mainspring_Screw Name: Costume Mainspring Screw Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 93 - Id: 20990 AegisName: C_Rotating_Gears Name: Costume Rotating Gears Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect HAT_EF_GEARWHEEL,true; UnEquipScript: | hateffect HAT_EF_GEARWHEEL,false; - Id: 20991 AegisName: Fairy_Of_Eden Name: Fairy of Eden Type: Armor Weight: 400 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubClass,Class_Normal,5; bonus2 bSubClass,Class_Boss,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bAspdRate,.@r; bonus bMatkRate,2*.@r; if (.@r>=6) { bonus bAllStats,10; bonus bNoKnockback; } if (.@r>=8) { if (getskilllv("MG_ENERGYCOAT") == 1) { bonus bDef,300; bonus bMdef,15; } skill "MG_ENERGYCOAT",1; } UnEquipScript: | sc_end SC_ENERGYCOAT; - Id: 20992 AegisName: C_Fairy_Of_Eden Name: Costume Fairy of Eden Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 95 - Id: 20993 AegisName: Avoidance_Cape Name: Avoidance Cape Type: Armor Buy: 20 Weight: 300 Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,2; bonus bMaxSPrate,2; bonus bDelayrate,-5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Player_Human,5; bonus bFlee,10*getskilllv("AB_SECRAMENT"); bonus bFlee2,5*getskilllv("AB_SECRAMENT"); if (getskilllv("AB_PRAEFATIO") == 10) { bonus2 bSubEle,Ele_Neutral,50; bonus2 bFixedCastrate,"AB_RENOVATIO",-100; } if (getskilllv("AB_HIGHNESSHEAL") == 5) { bonus2 bSubEle,Ele_Ghost,75; bonus2 bSubEle,Ele_Water,75; } if (.@r>=5) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDelayrate,-5; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bDelayrate,-5; } - Id: 20994 AegisName: Ancient_Megalith_Mantle Name: Ancient Megalith Cloak Type: Armor Buy: 20 Weight: 400 Defense: 50 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,5; bonus2 bSubEle,Ele_Fire,50; bonus2 bSubEle,Ele_Earth,50; bonus2 bAddDamageClass,20270,30; bonus2 bAddDamageClass,20271,30; bonus2 bAddDamageClass,20272,30; bonus2 bAddDamageClass,20273,30; bonus2 bAddDamageClass,20274,30; bonus2 bAddDamageClass,20275,30; bonus2 bAddDamageClass,20276,30; bonus2 bAddDamageClass,20277,30; bonus2 bAddDamageClass,20278,30; bonus2 bAddDamageClass,20279,30; bonus2 bAddDamageClass,20280,30; bonus2 bAddMagicDamageClass,20270,30; bonus2 bAddMagicDamageClass,20271,30; bonus2 bAddMagicDamageClass,20272,30; bonus2 bAddMagicDamageClass,20273,30; bonus2 bAddMagicDamageClass,20274,30; bonus2 bAddMagicDamageClass,20275,30; bonus2 bAddMagicDamageClass,20276,30; bonus2 bAddMagicDamageClass,20277,30; bonus2 bAddMagicDamageClass,20278,30; bonus2 bAddMagicDamageClass,20279,30; bonus2 bAddMagicDamageClass,20280,30; bonus2 bAddDefMonster,20270,60; bonus2 bAddDefMonster,20271,60; bonus2 bAddDefMonster,20272,60; bonus2 bAddDefMonster,20273,60; bonus2 bAddDefMonster,20274,60; bonus2 bAddDefMonster,20275,60; bonus2 bAddDefMonster,20276,60; bonus2 bAddDefMonster,20277,60; bonus2 bAddDefMonster,20278,60; bonus2 bAddDefMonster,20279,60; bonus2 bAddDefMonster,20280,60; - Id: 21000 AegisName: Upg_Twohand_Sword Name: Upg Two-Handed Sword Type: Weapon SubType: 2hSword Buy: 20 Weight: 1500 Attack: 100 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*12); bonus bMatk,(.@r*5); if (BaseLevel>70) bonus bBaseAtk,(((BaseLevel-70)/10)*10); - Id: 21001 AegisName: Velum_Claymore Name: Vellum Claymore Type: Weapon SubType: 2hSword Buy: 20 Weight: 3500 Attack: 260 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus2 bAddRace,RC_Player_Human,80; bonus2 bAddRace,RC_Player_Doram,80; bonus2 bIgnoreDefRaceRate,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,30; .@r = getrefine(); if (.@r>=6) { bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; } if (.@r>=9) { bonus bShortWeaponDamageReturn,20; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,300,BF_MAGIC,0; } - Id: 21002 AegisName: Velum_Katzbalger Name: Vellum Katzbalger Type: Weapon SubType: 2hSword Buy: 20 Weight: 2500 Attack: 100 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 95 Refineable: true Script: | bonus3 bHPVanishRaceRate,RC_Player_Human,1000,8; bonus3 bHPVanishRaceRate,RC_Player_Doram,1000,8; - Id: 21003 AegisName: Muramasa_ Name: Muramasa Type: Weapon SubType: 2hSword Buy: 20 Weight: 1000 Attack: 155 Range: 1 Slots: 2 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: 21004 AegisName: Alca_Bringer_ Name: Alca Bringer Type: Weapon SubType: 2hSword Buy: 20 Weight: 3400 Attack: 280 Range: 2 Slots: 2 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bAspd,(getrefine()/2); - Id: 21005 AegisName: Metal_Two_Hand_Sword Name: Metal Two Hand Sword Type: Weapon SubType: 2hSword Buy: 20 Attack: 95 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r*6); bonus bMatk,(.@r*2); .@i = min(BaseLevel/10,12); if (.@i>2) bonus bBaseAtk,((.@i-2)*5); - Id: 21006 AegisName: TE_Woe_Two_Hand_Sword Name: TE Woe Two Hand Sword Type: Weapon SubType: 2hSword Attack: 150 Range: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 40 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bAddRace,RC_Player_Human,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEff,Eff_Bleeding,1000; - Id: 21007 AegisName: Heavy_Sword Name: Heavy Greatsword Type: Weapon SubType: 2hSword Buy: 20 Weight: 2500 Attack: 330 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Locations: Both_Hand: true WeaponLevel: 1 EquipLevelMin: 150 Refineable: true Script: | bonus bStr,20; - Id: 21008 AegisName: Kogarasu_Maru Name: Kogarasumaru Type: Weapon SubType: 2hSword Buy: 20 Weight: 1000 Attack: 170 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 50 Refineable: true Script: | bonus bCritAtkRate,getrefine()*2; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50; - Id: 21009 AegisName: Thanos_Great_Sword Name: Thanos Great Sword Type: Weapon SubType: 2hSword Buy: 10 Weight: 1300 Attack: 280 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 21010 AegisName: Tw_Sword_Of_Evil_Slayer Name: Evil Slayer Slaher Sword Type: Weapon SubType: 2hSword Weight: 2000 Attack: 225 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddRace,RC_Undead,10; bonus2 bAddRace,RC_Demon,10; .@r = getrefine(); if (.@r>=9) { bonus bAtkRate,5; } if (.@r>=12) { bonus bAtkRate,7; } - Id: 21011 AegisName: Giant_Blade Name: Gigantic Blade Type: Weapon SubType: 2hSword Buy: 30000 Weight: 5000 Attack: 300 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAspdRate,-5; bonus bCritAtkRate,getrefine(); if (readparam(bStr)<=110) { bonus bBaseAtk,-250; } - Id: 21012 AegisName: Some_Wizard_MagicSword Name: Some Wizard MagicSword Type: Weapon SubType: 2hSword Weight: 2200 Attack: 200 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true - Id: 21013 AegisName: Hetairoi_Sword Name: Hetairoi Sword Type: Weapon SubType: 2hSword Weight: 2200 Attack: 210 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 110 Refineable: true Script: | bonus2 bSkillUseSP,"KN_AUTOCOUNTER",2; bonus2 bSkillUseSP,"LK_PARRYING",25; - Id: 21014 AegisName: D_Sword_Of_Infinite Name: Infinity Two-Handed Sword Type: Weapon SubType: 2hSword Buy: 20 Weight: 500 Attack: 230 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 21015 AegisName: Scarlet_Twohand_Sword Name: Crimson Two-Handed Sword Type: Weapon SubType: 2hSword Buy: 20 Weight: 1700 Attack: 170 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); - Id: 21016 AegisName: Sinister_Twohand_Sword Name: Two-Handed Sword of Vicious Mind Type: Weapon SubType: 2hSword Buy: 20 Weight: 2200 Attack: 220 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; - Id: 21018 AegisName: Two_Hand_Spear_170 Name: Lindy Hop Type: Weapon SubType: 2hSword Buy: 20 Weight: 3400 Attack: 340 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bAddClass,Class_All,.@r/2; bonus bAspdRate,.@r; bonus bUnbreakableWeapon; - Id: 21019 AegisName: Onimaru Name: Onimaru Type: Weapon SubType: 2hSword Weight: 4200 Attack: 75 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@bStr = readparam(bStr); .@r = getrefine(); bonus bBaseAtk,(min(120,.@bStr)); if (.@bStr > 119) bonus bBaseAtk,160; else if (.@bStr > 107) bonus bBaseAtk,80; else if (.@bStr > 94) bonus bBaseAtk,40; if (.@r > 6) bonus bUnbreakableWeapon; bonus4 bAutoSpell,"NPC_WIDECURSE",4,100,0; if (.@r > 8) bonus4 bAutoSpellOnSkill,"LK_BERSERK","BS_OVERTHRUST",5,100; - Id: 21023 AegisName: Toughen_Metal_TH_Sword Name: Enhanced Metal Two-Handed Sword Type: Weapon SubType: 2hSword Buy: 20 Attack: 120 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RK_IGNITIONBREAK",10; bonus bAspdRate,2*.@r; bonus bMatk,3*.@r; bonus bBaseAtk,(8*.@r)+7*(min(BaseLevel,150)/10); - Id: 21024 AegisName: Veteran_Sword_ Name: Veteran Sword Type: Weapon SubType: 2hSword Weight: 2000 Attack: 180 Range: 1 Slots: 3 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: 21026 AegisName: Diva_Claymore Name: Diva Claymore Type: Weapon SubType: 2hSword Weight: 3400 Attack: 280 MagicAttack: 230 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 21027 AegisName: Mirage_Claymore Name: Mirage Claymore Type: Weapon SubType: 2hSword Weight: 3400 Attack: 280 MagicAttack: 230 Range: 5 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 21028 AegisName: Sinister_Thand_Sword_J Name: Two-Handed Sword of Evil Type: Weapon SubType: 2hSword Buy: 100000 Weight: 1100 Attack: 210 Range: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 21030 AegisName: Probation_TH_Sword Name: Trial Rune Knight's Two-Handed Sword Type: Weapon SubType: 2hSword Buy: 20 Attack: 200 Range: 1 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritAtkRate,10; bonus bCritical,10; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bAspdRate,getskilllv("KN_TWOHANDQUICKEN"); } - Id: 21031 AegisName: Neev_Claymore Name: Neev Claymore Type: Weapon SubType: 2hSword Buy: 100000 Weight: 3400 Attack: 150 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 21037 AegisName: Rebeginer_RK_T_Sword Name: Beginner Rune Knight's Two-Handed Sword Type: Weapon SubType: 2hSword Attack: 170 Range: 1 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | bonus bAspdRate,10; if (getrefine()>=7) { bonus bCritAtkRate,7; } - Id: 21038 AegisName: Oriental_Sword Name: Oriental Sword Type: Weapon SubType: 2hSword Weight: 1000 Attack: 180 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r >= 9) bonus5 bAutoSpell,"RK_SONICWAVE",max(2,getskilllv("RK_SONICWAVE")),100,BF_SHORT|BF_WEAPON,1; if (.@r >= 11) bonus bUnbreakableWeapon; - Id: 21039 AegisName: T_Sword_Of_Kingdom Name: Royal Knight's Broadsword Type: Weapon SubType: 2hSword Buy: 50000 Weight: 4000 Attack: 280 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) bonus bCritAtkRate,10; if (.@r>=9) bonus bUnbreakableWeapon; - Id: 21044 AegisName: Woe_Twohand_Sword1_Z Name: Lesser Guild Member's Craymore Type: Weapon SubType: 2hSword Weight: 1300 Attack: 175 Range: 1 Jobs: Crusader: true Knight: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus "{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,10+(.@r-10); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10+(.@r-10); }",100,7000,BF_WEAPON; - Id: 21046 AegisName: Variant_Claymore Name: Abyss Claymore Type: Weapon SubType: 2hSword Weight: 3400 Attack: 280 MagicAttack: 230 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 21047 AegisName: Beam_Claymore_OS Name: Beam Claymor-OS Type: Weapon SubType: 2hSword Buy: 20 Weight: 1800 Attack: 250 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus bCritAtkRate,15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Small,20; bonus2 bMagicAddSize,Size_Medium,20; } } } - Id: 21049 AegisName: Evt_Oriental_Sword Name: Sealed Eastern Sword Type: Weapon SubType: 2hSword Attack: 180 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RK_SONICWAVE",10*(.@r/3); if (.@r>=7) { bonus5 bAutoSpell,"RK_SONICWAVE",max(2,getskilllv("RK_SONICWAVE")),100,BF_SHORT|BF_WEAPON,1; } if (.@r>=9) { bonus bUnbreakableWeapon; } - Id: 21050 AegisName: Taegoolyeon_IL Name: Illusion Tae Goo Lyeon Type: Weapon SubType: 2hSword Buy: 20 Weight: 2000 Attack: 250 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bFlee2,10; bonus bLongAtkRate,.@r*2; if (.@r >= 7) { bonus bUseSPrate,-20; if (.@r >= 9) { bonus bDelayrate,-20; if (.@r >= 11) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } } } - Id: 21051 AegisName: Volar Name: Volar Type: Weapon SubType: 2hSword Buy: 20 Weight: 2800 Attack: 280 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"KN_BOWLINGBASH",30; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"KN_BOWLINGBASH",-1000; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-1000; } if (.@r>=11) { bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KN_BOWLINGBASH",20; } - Id: 21052 AegisName: Vernan Name: Vernan Type: Weapon SubType: 2hSword Buy: 20 Weight: 6500 Attack: 300 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,.@r; bonus bAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; bonus2 bSkillAtk,"RK_SONICWAVE",30; } if (.@r>=11) { bonus2 bSkillCooldown,"RK_SONICWAVE",-1500; } - Id: 21053 AegisName: FullForce Name: Full Force Type: Weapon SubType: 2hSword Weight: 2200 Attack: 300 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAspdRate,10; bonus bBaseAtk,pow(getrefine(),2)*4; - Id: 21054 AegisName: Ein_BHSWORD Name: Claw Sword Type: Weapon SubType: 2hSword Weight: 3500 Attack: 300 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bCritical,5; bonus bAtkRate,15; /* bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; commented, illogical */ if (.@r>=7) { bonus bCritAtkRate,25; bonus bAspdRate,10; } if (.@r>=9) { autobonus "{ bonus2 bAddSize,Size_All,20; }",1,5000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; bonus bCritical,7; } - Id: 21055 AegisName: G_Knight_Sword Name: Guardian Knight Claymore Type: Weapon SubType: 2hSword Weight: 4000 Attack: 280 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus bCritAtkRate,25; bonus bCritical,5; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; bonus bUnbreakableWeapon; } - Id: 21056 AegisName: Volar_J Name: Volare Type: Weapon SubType: 2hSword Buy: 200000 Weight: 3400 Attack: 280 MagicAttack: 230 Range: 1 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"KN_BOWLINGBASH",30; - Id: 21057 AegisName: Vernan_J Name: Vernan Type: Weapon SubType: 2hSword Buy: 200000 Weight: 3400 Attack: 280 MagicAttack: 230 Range: 1 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"LK_SPIRALPIERCE",30; - Id: 21058 AegisName: Up_Dragonic_Slayer Name: Patent Dragonic Slayer Type: Weapon SubType: 2hSword Weight: 2000 Attack: 200 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2*5; bonus bMaxSPrate,.@r/2*5; bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; if (.@r>=7) { bonus bDelayrate,-10; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus bLongAtkRate,10; } if (.@r>=11) { bonus bDelayrate,-7; bonus bMaxSPrate,5; } - Id: 21063 AegisName: Solid_Claymore Name: Solid Claymore Type: Weapon SubType: 2hSword Weight: 2500 Attack: 280 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"DK_STORMSLASH",6*(.@r/2); bonus2 bSkillAtk,"DK_HACKANDSLASHER",5*(.@r/3); bonus bShortAtkRate,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"DK_STORMSLASH",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 21064 AegisName: aegis_21064 Name: Herosria Two-handed Sword Type: Weapon SubType: 2hSword Weight: 3000 Attack: 200 Range: 1 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bShortAtkRate,15; bonus bCritical,15; bonus bLongAtkRate,-7; bonus bAspdRate,-7; - Id: 21065 AegisName: Comp_Oriental_Sword Name: "[Not For Sale] Oriental Sword" Type: Weapon SubType: 2hSword Weight: 1000 Attack: 180 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RK_SONICWAVE",(.@r/3)*10; if (.@r >= 9) bonus5 bAutoSpell,"RK_SONICWAVE",max(2,getskilllv("RK_SONICWAVE")),100,BF_SHORT|BF_WEAPON,1; if (.@r >= 11) bonus bUnbreakableWeapon; - Id: 21066 AegisName: Comp_Dragonic_Slayer Name: "[Not For Sale] Dragonic Slayer" Type: Weapon SubType: 2hSword Weight: 1000 Attack: 180 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,(.@r/2)*3; bonus bMaxSPrate,(.@r/2)*3; bonus2 bSkillAtk,"RK_DRAGONBREATH",(.@r/3)*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",(.@r/3)*5; if (.@r>=9) bonus bDelayrate,-10; if (.@r>=11) bonus bLongAtkRate,10; - Id: 21200 AegisName: C_Tear_Drop Name: Costume Teardrop Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 767 - Id: 21201 AegisName: Eat_Coin Name: Ethereum Helm Type: Armor Weight: 100 Locations: Head_Mid: true Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1869 - Id: 21202 AegisName: C_Eat_Coin Name: Costume Eatcoin Helm Type: Armor View: 1869 Weight: 100 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 - Id: 21205 AegisName: Nut_Cracker Name: Nut Cracker Type: Armor View: 1991 Weight: 100 Locations: Head_Mid: true Head_Low: true ArmorLevel: 1 - Id: 21206 AegisName: C_Nut_Cracker Name: Costume Nut Cracker Type: Armor View: 1991 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 - Id: 21207 AegisName: C_bullhead Name: Costume Bull Head Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2078 - Id: 21300 AegisName: C_Guardian_Lion_Mask Name: Costume Lion Mask Type: Armor View: 231 Jobs: All: true Novice: false Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 - Id: 21400 AegisName: aegis_21400 Name: Costume Blue Dragon Statue Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2494 - Id: 22000 AegisName: Temporal_Str_Boots Name: Temporal Str Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bBaseAtk,7*(.@r/3); if (readparam(bStr)>=120) bonus bBaseAtk,50; - Id: 22001 AegisName: Temporal_Int_Boots Name: Temporal Int Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if (readparam(bInt)>=120) bonus bMatk,60; - Id: 22002 AegisName: Temporal_Agi_Boots Name: Temporal Agi Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if (readparam(bAgi)>=120) bonus bAspd,1; - Id: 22003 AegisName: Temporal_Vit_Boots Name: Temporal Vit Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if (readparam(bVit)>=120) bonus bMaxHPrate,8; - Id: 22004 AegisName: Temporal_Dex_Boots Name: Temporal Dex Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if (readparam(bDex)>=120) { bonus bLongAtkRate,5; bonus bFixedCast,-500; } - Id: 22005 AegisName: Temporal_Luk_Boots Name: Temporal Luk Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if (readparam(bLuk)>=120) bonus bCritAtkRate,30; - Id: 22006 AegisName: Temporal_Str_Boots_ Name: Temporal Str Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bBaseAtk,7*(.@r/3); if (readparam(bStr)>=120) bonus bBaseAtk,50; - Id: 22007 AegisName: Temporal_Vit_Boots_ Name: Temporal Vit Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if (readparam(bVit)>=120) bonus bMaxHPrate,8; - Id: 22008 AegisName: Temporal_Dex_Boots_ Name: Temporal Dex Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if (readparam(bDex)>=120) { bonus bLongAtkRate,5; bonus bFixedCast,-500; } - Id: 22009 AegisName: Temporal_Int_Boots_ Name: Temporal Int Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if (readparam(bInt)>=120) bonus bMatk,60; - Id: 22010 AegisName: Temporal_Agi_Boots_ Name: Temporal Agi Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if (readparam(bAgi)>=120) bonus bAspd,1; - Id: 22011 AegisName: Temporal_Luk_Boots_ Name: Temporal Luk Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if (readparam(bLuk)>=120) bonus bCritAtkRate,30; - Id: 22012 AegisName: Mana_Boots Name: Mana Boots Type: Armor Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 EquipLevelMax: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 22013 AegisName: test_5 Name: Rand Test Type: Armor Locations: Shoes: true ArmorLevel: 1 Refineable: true View: 1466 - Id: 22014 AegisName: Enhanced_Variant_Shoes Name: Enhanced Variant Shoes Type: Armor Buy: 20 Weight: 500 Defense: 13 Slots: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Monk: true Priest: true Rebellion: true Rogue: true Sage: true SoulLinker: true StarGladiator: true Wizard: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 85 Refineable: true Script: | bonus bMaxHPrate,12; bonus bMaxSPrate,12; .@r = getrefine(); bonus bDef,.@r; bonus bMdef,.@r; - Id: 22015 AegisName: Impr_Angel's_Arrival Name: Advanced Angel's Reincarnation Type: Armor Buy: 10000 Weight: 300 Defense: 8 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bMaxHP,500; bonus bMaxSP,100; - Id: 22016 AegisName: Assassin_Shoes Name: Assassin's Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_DemiHuman,5+getrefine(); - Id: 22017 AegisName: Fisherman_Shoes Name: Fisherman's Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Fish,5+getrefine(); - Id: 22018 AegisName: Shoes_Of_Wise_Man Name: Sage's Shoes Type: Armor Buy: 10 Weight: 300 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); if (.@r>5) { bonus bInt,.@r-5; bonus bMaxHPrate,-(.@r-5); } - Id: 22019 AegisName: Immuned_Boots Name: Immune Boots Type: Armor Buy: 20 Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,3+max(1,(.@r-6)); bonus2 bSubEle,Ele_Dark,-3; bonus2 bSubEle,Ele_Earth,-3; bonus2 bSubEle,Ele_Fire,-3; bonus2 bSubEle,Ele_Ghost,-3; bonus2 bSubEle,Ele_Holy,-3; bonus2 bSubEle,Ele_Poison,-3; bonus2 bSubEle,Ele_Undead,-3; bonus2 bSubEle,Ele_Water,-3; bonus2 bSubEle,Ele_Wind,-3; - Id: 22020 AegisName: GC_Battle_Boots Name: Guillotine Cross Battle Boots Type: Armor Defense: 17 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; - Id: 22021 AegisName: RA_Battle_Boots Name: Ranger Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100*(.@r/2); bonus bMaxSPrate,.@r/2; - Id: 22022 AegisName: LG_Battle_Boots Name: Royal Guard Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; - Id: 22023 AegisName: RK_Battle_Boots Name: Rune Knight Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSP,30*(.@r/2); - Id: 22024 AegisName: NC_Battle_Boots Name: Mechanic Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; - Id: 22025 AegisName: SC_Battle_Boots Name: Shadow Chaser Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; - Id: 22026 AegisName: SR_Battle_Boots Name: Sura Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSP,30*(.@r/2); - Id: 22027 AegisName: AB_Battle_Boots Name: Archbishop Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100*(.@r/2); bonus bMaxSPrate,.@r/2; - Id: 22028 AegisName: WL_Battle_Boots Name: Warlock Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100*(.@r/2); bonus bMaxSPrate,.@r/2; - Id: 22029 AegisName: WA_Battle_Boots Name: Performer Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; - Id: 22030 AegisName: GN_Battle_Boots Name: Geneticist Battle Boots Type: Armor Defense: 20 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100*(.@r/2); bonus bMaxSPrate,.@r/2; - Id: 22031 AegisName: Aurelian_Shoes Name: Insect Collector's Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus2 bExpAddRace,RC_Insect,5+.@r; - Id: 22032 AegisName: Shoes_Of_Exorcism Name: Exorcist's Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Demon,5+getrefine(); - Id: 22033 AegisName: Boots_Of_Gray Name: Boots of Gray Type: Armor Buy: 20 Weight: 400 Defense: 25 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: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | bonus2 bSubEle,Ele_Holy,2+getrefine()/3; - Id: 22034 AegisName: Scarlet_Gaites Name: Crimson Leggings Type: Armor Weight: 500 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bCritical,2; bonus bCritAtkRate,2; if (getrefine()>=7) { bonus bCritical,3; bonus bCritAtkRate,3; } - Id: 22035 AegisName: Vet_Nepen_Heel Name: Heoric Nepenthes Shoes Type: Armor Buy: 10 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); if (.@r>=8 && .@r<=10) .@i=5+.@r; else if (.@r>=11 && .@r<=13) .@i=5+(.@r*3); else if (.@r>13) .@i=42; bonus bVariableCastrate,-10-.@i; - Id: 22036 AegisName: Vet_SliverFox_Boots Name: Heroic Silver Fox Leather Boots Type: Armor Buy: 10 Weight: 300 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bLongAtkRate,5+.@i; - Id: 22037 AegisName: Vet_Ungo_Boots Name: Heroic Ungoliant Upgrade Boots Type: Armor Buy: 10 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); if (.@r>=8 && .@r<=13) .@i=.@r; else if (.@r>13) .@i=13; bonus bUseSPrate,-5-.@i; - Id: 22042 AegisName: Talaria_Shoes Name: Talaria Shoes Type: Armor Buy: 10 Weight: 300 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bAgi,2; bonus bAspd,1; bonus bMdef,5; - Id: 22043 AegisName: Supplement_Part_Agi Name: Supplement Part Agi Type: Armor Buy: 25000 Weight: 350 Defense: 25 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAspdRate,5+(getrefine()/4); - Id: 22044 AegisName: Upgrade_Part_Booster Name: Reinforced Parts - Booster Type: Armor Buy: 10 Weight: 1000 Defense: 23 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillUseSP,"NC_HOVERING",15; if (getrefine()>=7) { bonus2 bSkillUseSP,"NC_ACCELERATION",20; } - Id: 22045 AegisName: Beach_Sandals Name: Summer Sandals Type: Armor Buy: 10 Weight: 200 Defense: 5 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | bonus bFlee,5; bonus3 bAutoSpellWhenHit,"AL_INCAGI",10,300; - Id: 22046 AegisName: Airship_Boots Name: Airship's Boots Type: Armor Buy: 10 Defense: 26 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 125 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAgi,1; bonus bAspdRate,10; - Id: 22047 AegisName: Felock_Boots Name: Felrock's Boots Type: Armor Buy: 10 Weight: 250 Defense: 13 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Script: | bonus bAgi,1; .@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) { bonus bAgi,1; bonus bAspdRate,5; } if (.@r>=9) { bonus bAgi,1; bonus bAspdRate,5; } if (.@r>=12) { bonus bAspd,1; } - Id: 22048 AegisName: Sombre_Shoes Name: Sombre Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,3; bonus2 bSubEle,Ele_Dark,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } - Id: 22049 AegisName: Sol_Shoes Name: Sol Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus2 bSubEle,Ele_Earth,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } bonus bMdef,3; - Id: 22050 AegisName: Gardener_Shoes Name: Gardener Shoes Type: Armor Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Plant,5+getrefine(); - Id: 22051 AegisName: Ramor_Shoes Name: Lamor Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus2 bSubEle,Ele_Undead,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } bonus bMdef,3; - Id: 22052 AegisName: Gravekeepr_Shoes Name: Gravekeeper Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Undead,5+getrefine(); - Id: 22055 AegisName: Sharel_Shoes Name: Sharel Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus2 bSubEle,Ele_Fire,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } bonus bMdef,3; - Id: 22056 AegisName: Fallen_Angel_Shoes Name: Fallen Angel Shoes Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Angel,5+getrefine(); - Id: 22057 AegisName: Flow_Shoes Name: Flow Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,3; bonus2 bSubEle,Ele_Water,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } - Id: 22058 AegisName: DragonTrainer_Shoes Name: Dragon Trainer Shoes Type: Armor Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Dragon,5+getrefine(); - Id: 22059 AegisName: Egir_Shoes_K Name: Aegir Shoes Type: Armor Buy: 10 Weight: 300 Defense: 13 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bUnbreakableShoes; bonus bMaxHP,500; bonus bMaxSP,50; - Id: 22060 AegisName: Boots_Of_Hunter Name: Hunter Shoes Type: Armor Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Brute,5+getrefine(); - Id: 22061 AegisName: Lumiere_Shoes Name: Lumiere Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus2 bSubEle,Ele_Holy,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } bonus bMdef,3; - Id: 22062 AegisName: Mechanic_Shoes Name: Engineer's Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Formless,5+getrefine(); - Id: 22063 AegisName: Rouban_Shoes Name: Levain Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,3; bonus2 bSubEle,Ele_Wind,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } - Id: 22064 AegisName: Thorny_Shoes Name: Thorny Shoes Type: Armor Weight: 1000 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bShortWeaponDamageReturn,getrefine()/2; - Id: 22065 AegisName: Poison_Shoes Name: Poison Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,3; bonus2 bSubEle,Ele_Poison,5; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } - Id: 22066 AegisName: Esprit_Shoes Name: Esprit Shoes Type: Armor Buy: 10 Weight: 250 Defense: 12 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus bMdef,3; bonus2 bSubEle,Ele_All,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - Id: 22067 AegisName: Witch_Shoes Name: Shoe of Witch Type: Armor Buy: 10 Weight: 400 Defense: 10 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | skill "ALL_CATCRY",1; - Id: 22068 AegisName: Santa's_Shoes Name: Louise's Red Boots Type: Armor Buy: 30000 Weight: 400 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 12 Refineable: true Script: | .@r = getrefine(); bonus2 bAddItemHealRate,569,100; bonus bHPrecovRate,50+(min(.@r,10)*10); - Id: 22069 AegisName: Lian_Shoes Name: Lian Shoes Type: Armor Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | bonus bMdef,3; bonus2 bSubEle,Ele_Neutral,5; .@r = getrefine(); bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (vip_status(VIP_STATUS_ACTIVE)) { bonus2 bDropAddRace,RC_All,10; } - Id: 22070 AegisName: Applause_Sandal Name: Old Applause Sandals Type: Armor Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxSP,50; - Id: 22071 AegisName: Applause_Sandal_ Name: Applause Sandal Type: Armor Weight: 200 Defense: 7 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bMdef,10; bonus bDelayrate,-2*getrefine(); - Id: 22072 AegisName: Hikingboots Name: Climbing Shoes Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,4+(.@r/3); bonus bMaxSPrate,4+(.@r/3); if (.@r > 9) bonus bSpeedRate,25; - Id: 22075 AegisName: Shoes_Of_Cracks Name: Rift Shoes Type: Armor Buy: 20 Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHP,(.@r >= 9 ? 1300 : .@r >= 7 ? 700 : 300); bonus bMaxSP,-50; - Id: 22076 AegisName: Hardwood_Slipper Name: Wooden Slipper Type: Armor Buy: 20 Weight: 50 Defense: 10 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 9 Refineable: true Script: | bonus2 bHPRegenRate,2,10000; - Id: 22077 AegisName: Red_Eco_Boots Name: Red Eco-Friendly Shoes Type: Armor Buy: 20 Weight: 100 Defense: 20 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 18 Refineable: true Script: | bonus bCritical,5; bonus2 bHPRegenRate,4,10000; bonus2 bSPRegenRate,1,10000; - Id: 22078 AegisName: Union_STR_Boots Name: Unity STR Boots Type: Armor Buy: 10 Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bStr,.@r/2; } - Id: 22079 AegisName: Union_AGI_Boots Name: Unity AGI Boots Type: Armor Buy: 10 Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bAgi,.@r/2; } - Id: 22080 AegisName: Union_DEX_Shoes Name: Unity DEX Boots Type: Armor Buy: 10 Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bDex,.@r/2; } - Id: 22081 AegisName: Union_INT_Shoes Name: Unity INT Boots Type: Armor Buy: 10 Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bInt,.@r/2; } - Id: 22082 AegisName: Polyhedron_Shoes Name: Polyhedron Shoes Type: Armor Weight: 500 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; if (.@r > 4) { .@b = (.@r > 6) ? 10 : 5; bonus2 bAddEle,Ele_Neutral,.@b; bonus2 bAddEle,Ele_Fire,.@b; bonus2 bAddEle,Ele_Water,.@b; bonus2 bAddEle,Ele_Wind,.@b; } - Id: 22083 AegisName: Doram_Only_Shoes Name: Private Doram Shoes Type: Armor Buy: 10000 Weight: 500 Defense: 25 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxHP,100; bonus bMaxSP,50; .@r = getrefine()/3; bonus bHPrecovRate,.@r*10; bonus bSPrecovRate,.@r*10; - Id: 22084 AegisName: Doram_High_Shoes Name: Luxury Doram Shoes Type: Armor Buy: 20 Weight: 600 Defense: 30 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true Script: | bonus bMaxHP,300; bonus bMaxSP,100; .@r = getrefine()/3; bonus bHPrecovRate,20*.@r; bonus bSPrecovRate,20*.@r; - Id: 22085 AegisName: Doram_Ele_Shoes Name: Elegant Doram Shoes Type: Armor Buy: 20 Weight: 700 Defense: 35 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,5; .@r = getrefine()/2; bonus bMaxHP,100*.@r; bonus bMaxSP,20*.@r; if (.@r >= 4) bonus2 bSkillUseSP,"SU_LOPE",5; - Id: 22089 AegisName: Scarlet_Gaites_ Name: Crimson Gaiter Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bCritical,2; bonus bCritAtkRate,2; if (getrefine()>=7) { bonus bCritical,3; bonus bCritAtkRate,3; } - Id: 22091 AegisName: Fisherman_Shoes_ Name: Fisherman's Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Fish,5+getrefine(); - Id: 22092 AegisName: Aurelian_Shoes_ Name: Insect Collector's Shoes Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Insect,5+getrefine(); - Id: 22093 AegisName: Shoes_Of_Exorcism_ Name: Exorcist's Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Demon,5+getrefine(); - Id: 22094 AegisName: Gardener_Shoes_ Name: Gardener Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Plant,5+getrefine(); - Id: 22095 AegisName: Gravekeepr_Shoes_ Name: Gravekeeper Shoes Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Undead,5+getrefine(); - Id: 22096 AegisName: Fallen_Angel_Shoes_ Name: Fallen Angel Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Angel,5+getrefine(); - Id: 22097 AegisName: DragonTrainer_Shoes_ Name: Dragon Trainer Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Dragon,5+getrefine(); - Id: 22098 AegisName: Boots_Of_Hunter_ Name: Hunter's Shoes Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Brute,5+getrefine(); - Id: 22099 AegisName: Mechanic_Shoes_ Name: Mechanic Shoes Type: Armor Buy: 20 Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | bonus2 bExpAddRace,RC_Formless,5+getrefine(); - Id: 22100 AegisName: Medical_Boots_ Name: Medical Boots Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,10+((.@r/2) * 2); bonus2 bSkillUseSP,"AB_CHEAL",(.@r * 5); - Id: 22101 AegisName: AngelPoring_Boots Name: Angel Poring Boots Type: Armor Buy: 10 Weight: 300 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,1; skill "AL_HEAL",1; - Id: 22102 AegisName: Toughen_Time_Keepr_Bts Name: Enhanced Time Keeper Boots Type: Armor Defense: 23 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,500; bonus bMaxSP,100; bonus bVariableCastrate,-5; bonus bHPrecovRate,15; bonus bSPrecovRate,15; bonus bMdef,4; - Id: 22103 AegisName: Excelion_Leg Name: Excelion Leg Type: Armor Weight: 500 Defense: 13 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; bonus bMaxSP,5+((BaseLevel > 129) ? 4 : 0)+(.@r/3)*3; - Id: 22104 AegisName: Pororoca_Shoes Name: Pororoca Shoes Type: Armor Buy: 20 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Water,2; skill "SA_DELUGE",5; if (getrefine()>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Water,3; } if (getrefine()>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Water,5; } - Id: 22105 AegisName: Cuffs_ Name: Shackles Type: Armor Weight: 3000 Defense: 18 Slots: 1 Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 22106 AegisName: Giant_Boots Name: Giant Boots Type: Armor Weight: 500 Defense: 13 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 85 Refineable: true Script: | bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus bMaxHPrate,2; bonus bMaxSPrate,2; .@r = getrefine(); if (.@r > 4) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r > 6) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; bonus bMaxHPrate,4; bonus bMaxSPrate,4; } - Id: 22107 AegisName: Modify_Str_Boots Name: Modified Str Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bBaseAtk,7*(.@r/3); if (readparam(bStr)>=120) bonus bBaseAtk,50; - Id: 22108 AegisName: Modify_Int_Boots Name: Modified Int Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if (readparam(bInt)>=120) bonus bMatk,60; - Id: 22109 AegisName: Modify_Agi_Boots Name: Modified Agi Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if (readparam(bAgi)>=120) bonus bAspd,1; - Id: 22110 AegisName: Modify_Vit_Boots Name: Modified Vit Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if (readparam(bVit)>=120) bonus bMaxHPrate,8; - Id: 22111 AegisName: Modify_Dex_Boots Name: Modified Dex Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if (readparam(bDex)>=120) { bonus bLongAtkRate,5; bonus bFixedCast,-500; } - Id: 22112 AegisName: Modify_Luk_Boots Name: Modified Luk Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if (readparam(bLuk)>=120) bonus bCritAtkRate,30; - Id: 22113 AegisName: Modify_Str_Boots_ Name: Modified Str Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Slots: 1 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bBaseAtk,7*(.@r/3); if (readparam(bStr)>=120) bonus bBaseAtk,50; - Id: 22114 AegisName: Modify_Int_Boots_ Name: Modified Int Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 Slots: 1 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMatk,10*(.@r/3); if (readparam(bInt)>=120) bonus bMatk,60; - Id: 22115 AegisName: Modify_Agi_Boots_ Name: Modified Agi Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Slots: 1 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bAspdRate,3*(.@r/3); if (readparam(bAgi)>=120) bonus bAspd,1; - Id: 22116 AegisName: Modify_Vit_Boots_ Name: Modified Vit Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Slots: 1 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(300*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); if (readparam(bVit)>=120) bonus bMaxHPrate,8; - Id: 22117 AegisName: Modify_Dex_Boots_ Name: Modified Dex Boots Type: Armor Buy: 20 Weight: 600 Defense: 25 Slots: 1 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bDex,3*(.@r/3); if (readparam(bDex)>=120) { bonus bLongAtkRate,5; bonus bFixedCast,-500; } - Id: 22118 AegisName: Modify_Luk_Boots_ Name: Modified Luk Boots Type: Armor Buy: 20 Weight: 600 Defense: 20 Slots: 1 Jobs: KagerouOboro: true Rebellion: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,300+(100*(.@r/3)); bonus bMaxSP,30+(10*(.@r/3)); bonus bMdef,5; bonus bCritAtkRate,2*(.@r/3); if (readparam(bLuk)>=120) bonus bCritAtkRate,30; - Id: 22119 AegisName: Cursed_Devils_Boots Name: Curse-Spell Boots Type: Armor Buy: 20 Weight: 1000 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_All,5; if (getrefine()>=7) { bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bDelayrate,-10; } - Id: 22120 AegisName: Shoes_Of_Punishment Name: Shoes of Punishment Type: Armor Buy: 20 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; bonus bMatkRate,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bMagicAtkEle,Ele_Holy,2; .@r = getrefine(); if (.@r>=5) { bonus bMatkRate,3; bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bMagicAtkEle,Ele_Holy,3; } if (.@r>=7) { bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,5; } - Id: 22122 AegisName: Para_Team_Boots100 Name: Awakened Eden Group Boots I Type: Armor Defense: 22 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,1; bonus bHPrecovRate,30; bonus bSPrecovRate,14; - Id: 22123 AegisName: Para_Team_Boots115 Name: Awakened Eden Group Boots II Type: Armor Defense: 25 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 115 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,1; bonus bHPrecovRate,36; bonus bSPrecovRate,18; - Id: 22124 AegisName: Para_Team_Boots130 Name: Awakened Eden Group Boots III Type: Armor Defense: 27 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,2; bonus bHPrecovRate,36; bonus bSPrecovRate,18; - Id: 22125 AegisName: Para_Team_Boots145 Name: Awakened Eden Group Boots IV Type: Armor Defense: 30 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 145 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; - Id: 22126 AegisName: Para_Team_Boots160 Name: Awakened Eden Group Boots V Type: Armor Defense: 30 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllStats,2; bonus bHPrecovRate,40; bonus bSPrecovRate,20; bonus bUseSPrate,-5; - Id: 22127 AegisName: Diva_Shoes Name: Diva Shoes Type: Armor Weight: 600 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus bMaxHP,1000; if (.@r>=9) bonus bMaxHP,2000; - Id: 22128 AegisName: Mirage_Shoes Name: Mirage Shoes Type: Armor Weight: 600 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus bMaxSP,100; if (.@r>=9) bonus bMaxSP,200; - Id: 22129 AegisName: ShoesOfHero Name: Hero's Shoes Type: Armor Weight: 500 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 85 Refineable: true Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_DemiHuman,3; - Id: 22131 AegisName: Cowboy_Boots Name: Spurred Boots Type: Armor Weight: 500 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoAuction: true Script: | .@r = getrefine(); .@bonus = 5; if (.@r >=7) { .@bonus += 5; } if (.@r >=9) { .@bonus += 5; } bonus bMaxSPrate,.@bonus; bonus bSpeedRate,25; - Id: 22132 AegisName: Nergal_Shoes Name: Fire Thunder Great Boots Type: Armor Weight: 1000 Defense: 18 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMatk,5*.@r; bonus bVariableCastrate,-.@r; bonus2 bMagicAddEle,Ele_Earth,2*.@r; bonus2 bMagicAddEle,Ele_Ghost,2*.@r; bonus2 bMagicAddEle,Ele_Neutral,2*.@r; bonus2 bMagicAddEle,Ele_Undead,2*.@r; - Id: 22133 AegisName: Shoes_IL Name: Illusion Shoes Type: Armor Buy: 20 Weight: 400 Defense: 10 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,(100+(100*.@r)); bonus bMaxSP,(10+(5*.@r)); - Id: 22134 AegisName: Enforcer_Shoes Name: Enforcer Shoes Type: Armor Buy: 20 Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@hpsp = 3; .@a = getskilllv("GC_WEAPONCRUSH"); .@b = getskilllv("GC_WEAPONBLOCKING"); .@c = getskilllv("GC_COUNTERSLASH"); if (.@r >= 5) { .@hpsp += 7; .@dmg = BaseLevel; if (.@r >= 7) { .@hpsp += 10; .@dmg += BaseLevel + 30*getskilllv("AS_POISONREACT"); } bonus2 bSkillAtk,"ASC_METEORASSAULT",.@dmg; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; skill "BS_MAXIMIZE",1; bonus2 bSkillUseSP,"ASC_METEORASSAULT",8; bonus bAtkRate,4*.@a; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*.@b; bonus2 bIgnoreDefRaceRate,RC_All,20*.@c; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-7*(.@a+.@b+.@c); - Id: 22138 AegisName: Demonist_Shoes Name: Devil Worshipper Shoes Type: Armor Buy: 20 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,2; bonus2 bMagicAtkEle,Ele_Fire,2; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bMagicAtkEle,Ele_Fire,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Fire,5; } - Id: 22139 AegisName: 2017RTCShoes Name: 2017 RTC Boots Type: Armor Weight: 400 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bFlee,10; if (.@r>=7) bonus bFlee,10; if (.@r>=9) { bonus bFlee,15; bonus bFlee2,1; } - Id: 22140 AegisName: Elvira_Boots Name: Elvira Boots Type: Armor Buy: 20 Weight: 700 Defense: 13 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Wind,10; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",3*.@r; - Id: 22141 AegisName: YSF01_Greave Name: YSF01 Greave Type: Armor Weight: 1300 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); if (.@r >= 8) { bonus bAspdRate,8; if (.@r >= 11) { bonus bAspd,1; if (.@r >= 13) { .@val = 10; } } } if (readparam(bLuk) >= 125) { .@val += 30; } if (.@val) { bonus bCritAtkRate,.@val; } - Id: 22142 AegisName: ShoesOfGuardsman Name: Shoes Of Guardsman Type: Armor Buy: 20 Weight: 500 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,5+(3*(.@r/3)); bonus bMaxSPrate,5+(3*(.@r/3)); bonus2 bSubRace,RC_DemiHuman,5; - Id: 22143 AegisName: YSF01_Greave_J Name: Y.S.F.0.1 Greaves Type: Armor Buy: 20 Weight: 500 Defense: 15 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,15; if (.@r>=7) bonus2 bSkillUseSP,"RK_HUNDREDSPEAR",20; if (.@r>=9) bonus bMaxSPrate,15; - Id: 22144 AegisName: IA_Boots Name: IA Boots Type: Armor Weight: 450 Defense: 35 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true - Id: 22145 AegisName: TenguShoes Name: Tengu's Shoes Type: Armor Buy: 20 Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("SR_GENTLETOUCH_REVITALIZE"); .@b = getskilllv("SR_GENTLETOUCH_CURE"); .@c = getskilllv("SR_GENTLETOUCH_ENERGYGAIN"); .@hpsp = 3; if (.@r >= 5) { .@hpsp += 7; .@red = 5; if (.@r >= 7) { .@hpsp += 10; .@red += 5; } bonus2 bSkillUseSP,"MO_BODYRELOCATION",.@red; } bonus bMdef,10; bonus bMaxHPrate,.@hpsp+(2*.@b); bonus bMaxSPrate,.@hpsp; skill "SA_CASTCANCEL",1; bonus2 bSkillUseSP,"MO_BODYRELOCATION",5; bonus bDef,30*.@a; bonus2 bSubRace,RC_Player_Doram,.@a; bonus2 bSubRace,RC_Player_Human,.@a; bonus2 bVariableCastrate,"MO_CALLSPIRITS",-.@c*10; bonus2 bVariableCastrate,"MO_STEELBODY",-.@c*10; bonus2 bFixedCastrate,"CH_SOULCOLLECT",-.@c*10; bonus bAspdRate,2*getskilllv("SR_GENTLETOUCH_CHANGE"); bonus bAtkRate,4*getskilllv("SR_GENTLETOUCH_QUIET"); - Id: 22146 AegisName: Siege_Shoes_1Tier Name: Lesser Guild Member's Shoes Type: Armor Weight: 200 Defense: 7 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMaxHP,250; bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; - Id: 22147 AegisName: Siege_Boots_1Tier Name: Lesser Guild Member's Boots Type: Armor Weight: 500 Defense: 10 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Merchant: true Ninja: true Rogue: true Swordman: true Thief: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMaxHP,400; bonus bMdef,3; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; - Id: 22148 AegisName: Siege_Greave_1Tier Name: Lesser Guild Member's Greaves Type: Armor Weight: 800 Defense: 15 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true StarGladiator: true Swordman: true Taekwon: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bMaxHP,500; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus bMdef,1; - Id: 22150 AegisName: 60Lv_Sandal Name: Subjugation Team's Boots Type: Armor Weight: 250 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | bonus bHPrecovRate,5; bonus bSPrecovRate,3; - Id: 22151 AegisName: 70Lv_Boots Name: Expedition's Boots Type: Armor Weight: 300 Defense: 16 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bAgi,getrefine()/3; bonus bHPrecovRate,15; bonus bSPrecovRate,5; - Id: 22152 AegisName: 70Lv_Shoes Name: Expedition's Shoes Type: Armor Buy: 250 Defense: 14 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | bonus bVit,getrefine()/3; bonus bHPrecovRate,10; bonus bSPrecovRate,7; - Id: 22153 AegisName: 80Lv_Greave Name: Contingent Greaves Type: Armor Weight: 400 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bHPrecovRate,18; bonus bSPrecovRate,5; if (getrefine()>=5) bonus bStr,2; - Id: 22154 AegisName: 80Lv_Boots Name: Contingent Boots Type: Armor Weight: 400 Defense: 18 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bHPrecovRate,15; bonus bSPrecovRate,7; if (getrefine()>=5) bonus bDex,2; - Id: 22155 AegisName: 80Lv_Shoes Name: Contingent Shoes Type: Armor Weight: 350 Defense: 16 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bHPrecovRate,12; bonus bSPrecovRate,10; if (getrefine()>=5) bonus bInt,2; - Id: 22156 AegisName: 80Lv_Sandal Name: Contingent Sandal Type: Armor Weight: 300 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | bonus bHPrecovRate,15; bonus bSPrecovRate,7; if (getrefine()>=5) bonus bHealPower,2; - Id: 22157 AegisName: 90Lv_Greave Name: Conqueror's Greaves Type: Armor Weight: 500 Defense: 24 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bHPrecovRate,20; bonus bSPrecovRate,7; if (.@r>=5) bonus bStr,2; if (.@r>=7) bonus bBaseAtk,20; - Id: 22158 AegisName: 90Lv_Boots Name: Conqueror's Boots Type: Armor Weight: 450 Defense: 22 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bHPrecovRate,18; bonus bSPrecovRate,9; if (.@r>=5) bonus bDex,2; if (.@r>=7) bonus bFlee,20; - Id: 22159 AegisName: 90Lv_Shoes Name: Conqueror's Shoes Type: Armor Weight: 450 Defense: 18 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bHPrecovRate,15; bonus bSPrecovRate,12; if (.@r>=5) bonus bInt,2; if (.@r>=7) bonus bMatk,20; - Id: 22160 AegisName: 90Lv_Sandal Name: Conqueror's Magic Shoes Type: Armor Weight: 400 Defense: 17 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bHPrecovRate,17; bonus bSPrecovRate,10; if (.@r>=5) bonus bHealPower,2; if (.@r>=7) bonus bHealPower,4; - Id: 22167 AegisName: Astraea_Shoes Name: Asteria's Boots Type: Armor Weight: 250 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@str = readparam(bStr); .@agi = readparam(bAgi); .@vit = readparam(bVit); .@int = readparam(bInt); .@dex = readparam(bDex); .@luk = readparam(bLuk); bonus bAllStats,1; if(getrefine()>=10) { if (.@str>=100) { if (.@str>=120) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; } else { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } } if (.@agi>=100) { if (.@agi>=120) bonus bAspd,1; else bonus bAspdRate,8; } if (.@vit>=100) { if (.@vit>=120) bonus2 bAddSize,Size_Medium,15; else bonus2 bAddSize,Size_Medium,10; } if (.@int>=100) { if (.@int>=120) bonus bFixedCast,-500; else bonus bFixedCastrate,-30; } if (.@dex>=100) { if (.@dex>=120) bonus bDelayrate,-5; else bonus bDelayrate,-3; } if (.@luk>=100) { if (.@luk>=120) { bonus bCritical,7; bonus bFlee2,1; } else bonus bCritical,5; } } - Id: 22168 AegisName: True_Hunting_Boots Name: True Hunting Boots Type: Armor Weight: 500 Defense: 13 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAspdRate,8+2*(getrefine()/3); - Id: 22169 AegisName: R_Hunting_Boots Name: Short-term Hunting Boots Type: Armor Defense: 13 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 50 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,8; - Id: 22170 AegisName: Shoes_Of_Servival Name: Survivor's Shoes Type: Armor Buy: 10 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r >= 7) { .@hpsp = 20; .@dmg = 10; } else if (.@r >= 5) { .@hpsp = 10; .@dmg = 5; } else { .@hpsp = 3; .@dmg = 2; } bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMatkRate,.@dmg; bonus2 bMagicAtkEle,Ele_Wind,.@dmg; bonus2 bMagicAtkEle,Ele_Earth,.@dmg; - Id: 22171 AegisName: Ancient_Hero_Boots Name: Ancient Hero Boots Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) { bonus bDelayrate,-5; } } bonus bFixedCast,.@val; } - Id: 22172 AegisName: Gray_Wing_Boots Name: Gray Wing Boots Type: Armor Buy: 20 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMdef,15; bonus bLongAtkRate,2; bonus bCritAtkRate,2; skill "TF_HIDING",1; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; bonus bCritAtkRate,5; } - Id: 22173 AegisName: Rebeginer_Boots Name: Beginner's Boots Type: Armor Buy: 20 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bMaxHP,300; bonus bMaxSP,50; bonus bFlee,15; bonus bHPrecovRate,10; bonus bSPrecovRate,10; - Id: 22174 AegisName: Scaraba_High_Heels Name: Scaraba High Heels Type: Armor Weight: 700 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 85 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,2; bonus bMaxSPrate,2; if (.@r>=5) { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } if (.@r>=7) { bonus bMaxHPrate,4; bonus bMaxSPrate,4; } - Id: 22178 AegisName: Anony_Sm_Shoes Name: Nameless Swordsman's Boots Type: Armor Buy: 20 Weight: 1000 Defense: 18 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus2 bAddClass,Class_Boss,15; bonus bBaseAtk,5*.@r; bonus bAspdRate,.@r; bonus bMaxHPrate,2*.@r; bonus bMaxSPrate,2*.@r; - Id: 22182 AegisName: Shoes_Of_Punishment_BR Name: Shoes of Punishment # !todo check english name Type: Armor Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; bonus bMatkRate,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bMagicAddEle,Ele_Holy,2; .@r = getrefine(); if (.@r>=5) { bonus bMatkRate,3; bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bMagicAddEle,Ele_Holy,3; } if (.@r>=7) { bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAddEle,Ele_Holy,5; } - Id: 22185 AegisName: Doram_Only_Shoes_J Name: Doram Shoes Type: Armor Buy: 20 Weight: 100 Defense: 25 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,10; bonus bMaxHPrate,10; bonus bBaseAtk,5*.@r; bonus bMatk,5*.@r; - Id: 22186 AegisName: Doram_High_Shoes_J Name: High-End Doram Shoes Type: Armor Buy: 20 Weight: 100 Defense: 30 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,15; bonus bMaxHPrate,15; bonus bBaseAtk,10*.@r; bonus bMatk,10*.@r; if (.@r>=7) { bonus bAspdRate,5; if (.@r>=8) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFlee2,5; } } } - Id: 22187 AegisName: Doram_Ele_Shoes_J Name: Special Doram Shoes Type: Armor Buy: 20 Weight: 100 Defense: 35 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bVariableCastrate,"SU_LOPE",-50; bonus bBaseAtk,15*.@r; bonus bMatk,15*.@r; if (.@r>=7) bonus bAspdRate,10; if (.@r>=8) bonus bVariableCastrate,-15; if (.@r>=9) { bonus bFlee2,5; bonus2 bVariableCastrate,"SU_LOPE",-50; } - Id: 22189 AegisName: Shoes_Of_Pilgrim Name: Pilgrim Shoes Type: Armor Buy: 20 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bDef,50*getskilllv("AB_SECRAMENT"); bonus bMdef,15; bonus bAspdRate,4*getskilllv("AB_CANTO"); bonus2 bSkillCooldown,"AB_PRAEFATIO",-1000; bonus bDelayrate,-6*getskilllv("AB_PRAEFATIO"); bonus2 bSubRace,RC_DemiHuman,2*getskilllv("AB_SECRAMENT"); bonus2 bSubRace,RC_Player_Human,2*getskilllv("AB_SECRAMENT"); bonus bHealPower,5*getskilllv("AB_HIGHNESSHEAL"); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bUseSPrate,-3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bUseSPrate,-5; } - Id: 22190 AegisName: Boots_IL Name: Illusion Boots Type: Armor Weight: 600 Defense: 16 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bCritical,(5*(.@r/3)); bonus bAspdRate,.@r; - Id: 22191 AegisName: Nergal_Shoes_TW Name: Fire Thunder Great Boots Type: Armor Weight: 1000 Defense: 18 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bMatk,5*getrefine(); - Id: 22192 AegisName: Goibne_Boots_IL Name: Illusion Goibne's Greaves Type: Armor Weight: 1200 Defense: 42 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r >= 7) { bonus bVariableCastrate,-5; if (.@r >= 9) { bonus bLongAtkRate,10; } } - Id: 22193 AegisName: Brave_shoes Name: Brave Shoes Type: Armor Buy: 20 Weight: 1000 Defense: 16 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus2 bResEff,Eff_Freeze,2500; bonus bMaxHP,100*.@r; bonus bMaxSP,10*.@r; bonus2 bAddRace,RC_Player_Doram,2*.@r; bonus2 bAddRace,RC_Player_Human,2*.@r; bonus2 bMagicAddRace,RC_Player_Doram,2*.@r; bonus2 bMagicAddRace,RC_Player_Human,2*.@r; - Id: 22194 AegisName: Loli_Ruri_Shoes Name: Loli Ruri Shoes Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true Script: | .@r = getrefine(); bonus bFlee,15; bonus bCritical,3; if (.@r>=7) bonus bHit,15; if (.@r>=9) bonus bAspdRate,7; - Id: 22195 AegisName: Booster_shoes Name: Booster Shoes Type: Armor Buy: 20 Weight: 800 Defense: 30 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } if (.@r>=9) { if (readparam(bStr)>=125) bonus bBaseAtk,90; if (readparam(bAgi)>=125) bonus bAspd,2; if (readparam(bVit)>=125) bonus bMaxHPrate,12; if (readparam(bInt)>=125) bonus bMatk,120; if (readparam(bDex)>=125) bonus bLongAtkRate,10; if (readparam(bLuk)>=125) bonus bCritAtkRate,20; } - Id: 22196 AegisName: Illusion_Leg_A Name: Illusion Leg A-type Type: Armor Buy: 20 Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus bLongAtkRate,5; } - Id: 22197 AegisName: Illusion_Leg_B Name: Illusion Leg B-type Type: Armor Buy: 20 Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,200+(20*(.@r/2)); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_All,5; } - Id: 22198 AegisName: Traveler_Shoes Name: Traveler Shoes Type: Armor Buy: 20 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; bonus bMaxHPrate,3+(2*getskilllv("WM_FRIGG_SONG")); bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAddEle,Ele_Neutral,5; bonus bAllStats,getskilllv("WA_SWING_DANCE"); bonus bAspdRate,4*getskilllv("MI_HARMONIZE"); bonus2 bSkillAtk,"WM_METALICSOUND",10*getskilllv("WM_GLOOMYDAY"); bonus2 bVariableCastrate,"WM_METALICSOUND",-10*getskilllv("WM_GLOOMYDAY"); bonus3 bAddEff,Eff_Sleep,400*min(5,getskilllv("WM_LULLABY_DEEPSLEEP")),ATF_MAGIC; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAddEle,Ele_Neutral,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAddEle,Ele_Neutral,5; } - Id: 22199 AegisName: Lava_Leather_Boots Name: Lava Leather Boots Type: Armor Buy: 50000 Weight: 600 Defense: 50 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,2; if (.@r>=7) bonus bBaseAtk,25; if (.@r>=9) bonus bBaseAtk,15; - Id: 22200 AegisName: Lava_Leather_Shoes Name: Lava Leather Shoes Type: Armor Buy: 50000 Weight: 500 Defense: 40 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bCritical,5; if (.@r>=7) bonus2 bAddSize,Size_All,5; if (.@r>=9) bonus bCritAtkRate,5; - Id: 22201 AegisName: Lava_Leather_Sandle Name: Lava Leather Sandals Type: Armor Buy: 50000 Weight: 500 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,3; if (.@r>=7) bonus bMatk,25; if (.@r>=9) bonus bMatk,15; - Id: 22202 AegisName: Temporal_Boots_TW Name: Temporal Boots Type: Armor Weight: 600 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; if (.@r>=10) { bonus bAllStats,2; if (readparam(bStr)>=108) bonus bBaseAtk,50; if (readparam(bAgi)>=108) bonus bAspd,1; if (readparam(bVit)>=108) bonus bMaxHPrate,8; if (readparam(bInt)>=108) bonus bMatk,60; if (readparam(bDex)>=108) { bonus bFixedCast,-500; bonus bLongAtkRate,5; } if (readparam(bLuk)>=108) bonus bCriticalRate,30; } - Id: 22203 AegisName: Space_shoes_JP Name: Special Environment Boots Type: Armor Weight: 1000 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAddClass,Class_Boss,15; bonus bMatk,5*.@r; bonus bMaxHPrate,2*.@r; bonus bMaxSPrate,2*.@r; bonus bDelayrate,-.@r; if (.@r>=10) bonus bInt,15; - Id: 22204 AegisName: Time_Overload_Boots Name: Temporal Transcendence Boots Type: Armor Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,10; bonus2 bMagicAtkEle,Ele_All,10; bonus bCritAtkRate,10; - Id: 22206 AegisName: Regia_Hunting_Boots Name: Regia Hunting Boots Type: Armor Weight: 500 Defense: 5 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | bonus bAspdRate,5; bonus bHit,2*(getrefine()/3); - Id: 22207 AegisName: Imperial_Boots Name: Imperial Boots Type: Armor Buy: 20 Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AL_INCAGI",1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10*getskilllv("LG_CANNONSPEAR"); bonus2 bAddClass,Class_All,4*getskilllv("CR_DEVOTION"); if (getskilllv("LG_INSPIRATION")>=5) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; bonus2 bIgnoreDefRaceRate,RC_All,20*getskilllv("LG_PINPOINTATTACK"); if (.@r>=5) { bonus bMaxSPrate,7; bonus bMaxHPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxSPrate,10; bonus bMaxHPrate,10; bonus bLongAtkRate,5; } - Id: 22208 AegisName: Dragon_Boots Name: Dragon Scale Boots Type: Armor Weight: 600 Defense: 35 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,500; bonus bAspdRate,7; bonus bVariableCastrate,-7; if (.@r>=7) { bonus2 bSubRace,RC_Dragon,2; } if (.@r>=9) { autobonus2 "{ bonus2 bSPRegenRate,500,1000; }",1,3000,BF_MAGIC|BF_WEAPON; } if (.@r>=11) { bonus2 bSubRace,RC_Dragon,3; } - Id: 22209 AegisName: Cassock_Boots Name: Clergy's Boots Type: Armor Weight: 400 Defense: 35 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bDef,30; bonus bAspdRate,10; bonus2 bAddRace,RC_Angel,(.@r/2); bonus2 bAddRace,RC_Demon,(.@r/2); bonus2 bSubRace,RC_Angel,(.@r/3); bonus2 bSubRace,RC_Demon,(.@r/3); if (.@r>=7) { bonus bAspdRate,10; } - Id: 22210 AegisName: Fluffy_FishShoes_J Name: Fluffy Fish Shoes Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@hpsp = 3; .@val = -10 * getskilllv("SU_SHRIMPARTY"); if (.@r>=5) { .@hpsp += 7; .@delay = -10; if (.@r>=7) { .@hpsp += 10; .@delay -= 10; } bonus bDelayrate,.@delay; } if (getskilllv("SU_SPIRITOFSEA") == 1) { autobonus3 "{ bonus2 bResEff,Eff_Stun,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,Eff_Stone,10000; }",1000,30000,"SU_GROOMING","{ specialeffect2 777; specialeffect2 826; }"; } if (getskilllv("SU_GROOMING") == 5) { bonus bFixedCastrate,-50; bonus bNoKnockback; } bonus bMaxHPrate,.@hpsp; bonus bMaxSPrate,.@hpsp; bonus bMdef,10; bonus2 bVariableCastrate,"SU_FRESHSHRIMP",.@val; bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",.@val; bonus2 bVariableCastrate,"SU_TUNABELLY",.@val; bonus2 bVariableCastrate,"SU_TUNAPARTY",.@val; bonus2 bVariableCastrate,"SU_SHRIMPARTY",.@val; bonus bHealPower,10*getskilllv("SU_PURRING"); - Id: 22211 AegisName: BuddhistShoes Name: Chivalry Shoes Type: Armor Buy: 20 Weight: 400 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WL_CRIMSONROCK",3*.@r; bonus2 bSkillAtk,"AB_JUDEX",3*.@r; bonus2 bSkillAtk,"WL_HELLINFERNO",3*.@r; - Id: 22212 AegisName: Hollow_Shoes Name: Hollow Shoes Type: Armor Weight: 500 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMatk,5*.@r; bonus bDelayrate,-.@r; bonus2 bMagicAddEle,Ele_Water,2*.@r; bonus2 bMagicAddEle,Ele_Dark,2*.@r; bonus2 bMagicAddEle,Ele_Ghost,2*.@r; bonus2 bMagicAddEle,Ele_Undead,2*.@r; - Id: 22213 AegisName: Leo_Shoes_J Name: Leo Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,250,10000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Monk) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bVariableCastrate,"CH_SOULCOLLECT",-50; if (.@r>=8) bonus2 bSPRegenRate,50,10000; } - Id: 22214 AegisName: Authority_Sandals Name: Authority Sandals Type: Armor Buy: 20 Weight: 500 Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bAllStats,10; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; if (.@r>=7) bonus bAllStats,10; if (.@r>=9) bonus bAllStats,10; - Id: 22215 AegisName: H_AD_Sandle Name: High Adventurer Sandals Type: Armor Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,15; bonus bBaseAtk,15; - Id: 22216 AegisName: Cancer_Shoes_J Name: Cancer Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,250,10000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) { bonus bBaseAtk,80; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) { bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Earth,20; } } - Id: 22221 AegisName: Demonist_Shoes_ Name: Devil Worshipper Shoes Type: Armor Buy: 20 Weight: 500 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,2; bonus2 bMagicAtkEle,Ele_Fire,2; .@r = getrefine(); if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_Neutral,3; bonus2 bMagicAtkEle,Ele_Fire,3; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Fire,5; } - Id: 22222 AegisName: Agenda_Shoes_TW Name: Boots of Judgment Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; bonus bUseSPrate,10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Undead,10; - Id: 22225 AegisName: Shoes_Of_Punishment_ Name: Shoes of Punishment Type: Armor Buy: 20 Weight: 500 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; bonus bMatkRate,2; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"AB_JUDEX",30; bonus2 bMagicAtkEle,Ele_Holy,2; .@r = getrefine(); if (.@r>=5) { bonus bMatkRate,3; bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bMagicAtkEle,Ele_Holy,3; } if (.@r>=7) { bonus bMatkRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,5; } - Id: 22227 AegisName: Libra_Shoes_J Name: Libra Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubClass,Class_Boss,5; bonus2 bSkillVariableCast,"RK_DRAGONBREATH",-2000; bonus2 bSkillVariableCast,"RK_DRAGONBREATH_WATER",-2000; if (.@r>=8) bonus bFixedCastrate,-50; } - Id: 22228 AegisName: Triad_God_Shoes_J_ Name: Dark Mitsuwa God Shoes Type: Armor Buy: 20 Weight: 300 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus2 bMagicAddClass,Class_Boss,15; bonus bMatk,5*.@r; bonus bAspdRate,.@r; bonus2 bMagicAtkEle,Ele_Dark,3*.@r; if (.@r>=10) bonus2 bMagicAtkEle,Ele_Dark,50; - Id: 22230 AegisName: Taurus_Shoes_J Name: Taurus Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,250,10000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { bonus bBaseAtk,80; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus2 bSubEle,Ele_Fire,30; } - Id: 22231 AegisName: Aquarius_Shoes_J Name: Aquarius Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"WL_HELLINFERNO",30; if (.@r>=8) bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-2400; } - Id: 22233 AegisName: Scorpio_Shoes_J Name: Scorpio Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { bonus bBaseAtk,80; bonus bFlee,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",500; if (.@r>=8) bonus2 bSkillCooldown,"GC_DARKILLUSION",-1500; } - Id: 22234 AegisName: FrontiaBoots Name: Frontier Boots Type: Armor Weight: 500 Defense: 5 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; bonus bMatk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=9) { bonus bBaseAtk,50; bonus bMatk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } - Id: 22238 AegisName: Great_Hero_Boots Name: Great Hero Boots Type: Armor Buy: 20 Weight: 600 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; bonus bMaxHPrate,.@r/3; bonus bMaxSPrate,.@r/3; if (.@r >= 7) { bonus bAtkRate,5; bonus bMatkRate,5; } if (.@r >= 9) { .@val = -500; if (.@r >= 11) { .@val -= 200; if (.@r >= 13) { bonus bDelayrate,-5; bonus bVariableCastrate,-5; } } bonus bFixedCast,.@val; } - Id: 22240 AegisName: Fierce_Physique_Boots Name: Fierce Physique Boots Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,3; bonus bLuk,1; if (.@r>=5) { bonus bHealPower,1; bonus bAddItemHealRate,1; } if (.@r>=7) { bonus bHealPower,2; bonus bAddItemHealRate,2; } if (.@r>=9) { bonus bHealPower,3; bonus bAddItemHealRate,3; } if (.@r>=10) { bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 22241 AegisName: Fierce_Magique_Boots Name: Fierce Magique Boots Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMatk,3; bonus bLuk,1; if (.@r>=5) { bonus bHealPower,1; bonus bAddItemHealRate,1; } if (.@r>=7) { bonus bHealPower,2; bonus bAddItemHealRate,2; } if (.@r>=9) { bonus bHealPower,3; bonus bAddItemHealRate,3; } if (.@r>=10) { bonus2 bResEff,Eff_Stun,500; bonus2 bResEff,Eff_Stone,500; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 22242 AegisName: Procyon_Shoes_J Name: Procyon Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bVariableCastrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Soul_Linker) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAtkEle,Ele_Dark,30; if (.@r>=8) { bonus bNoCastCancel; bonus bFixedCastrate,-60; } } - Id: 22243 AegisName: Mamaragan Name: Mamaragan Type: Armor Buy: 20 Weight: 300 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus2 bMagicAddClass,Class_Boss,15; skill "WZ_VERMILION",5; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; bonus bMaxHPrate,2*.@r; bonus bMaxSPrate,2*.@r; bonus bFlee,5*.@r; bonus2 bMagicAtkEle,Ele_Wind,3*.@r; if (.@r>=10) bonus2 bMagicAtkEle,Ele_Wind,50; - Id: 22244 AegisName: Chic_Silent_Shoes Name: Stylish Silent Shoes Type: Armor Buy: 20 Weight: 600 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bAddEle,Ele_All,10; bonus2 bMagicAddEle,Ele_All,10; bonus bHPGainValue,150; bonus bSPGainValue,15; if (.@r>=7) { skill "BS_GREED",1; bonus2 bAddEle,Ele_All,10; bonus2 bMagicAddEle,Ele_All,10; } if (.@r>=9) { bonus2 bAddEle,Ele_All,10; bonus2 bMagicAddEle,Ele_All,10; } - Id: 22245 AegisName: Space_shoes_JP_ Name: Awakened Special Environment Boots Type: Armor Weight: 1000 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bMatk,50; bonus bMatkRate,15; bonus bAspdRate,15; bonus bMaxHPrate,20; bonus bMaxSPrate,20; - Id: 22249 AegisName: Insidious_Shoes_EXE Name: Insidious's Shoes Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMdef,5; if (.@r>=5) { bonus bMaxHP,200; bonus bMaxSP,20; } if (.@r>=7) { bonus bDef,10; bonus bFlee,10; } if (.@r>=8) { bonus bBaseAtk,5; bonus bMatk,5; bonus2 bSubRace,RC_All,2; bonus2 bSubRace,RC_Player_Human,-2; bonus2 bSubRace,RC_Player_Doram,-2; } if (.@r>=9) { bonus bBaseAtk,5; bonus bMatk,5; bonus2 bSubRace,RC_All,3; bonus2 bSubRace,RC_Player_Human,-3; bonus2 bSubRace,RC_Player_Doram,-3; } if (.@r>=10) { bonus2 bResEff,Eff_Sleep,1000; bonus2 bResEff,Eff_Stone,1000; bonus2 bResEff,Eff_Stun,1000; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 22257 AegisName: aegis_22257 Name: Racing Shoes Type: Armor Weight: 400 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,10; if (.@r>=10) bonus bFixedCast,-300; if (.@r>=12) bonus bFixedCast,-200; - Id: 22258 AegisName: Comp_Temporal_Boots_TW Name: "[Not For Sale] Exotic Temporal Boots" Type: Armor Weight: 600 Defense: 25 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMdef,15; if (getrefine()>=10) { bonus bAllStats,2; if (readparam(bStr)>=108) bonus bBaseAtk,50; if (readparam(bAgi)>=108) bonus bAspd,1; if (readparam(bVit)>=108) bonus bMaxHPrate,8; if (readparam(bInt)>=108) bonus bMatk,60; if (readparam(bDex)>=108) { bonus bFixedCast,-500; bonus bLongAtkRate,5; } if (readparam(bLuk)>=108) bonus bCriticalRate,30; } - Id: 22259 AegisName: aegis_22259 Name: Tohil's Shoes Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bUseSPrate,10; bonus bVariableCastrate,-10; bonus2 bAddRace,RC_DemiHuman,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_DemiHuman,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Undead,10; - Id: 24000 AegisName: T_Str1_Armor_S Name: Shadow Armor (Tier 1) Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bStr,1; - Id: 24001 AegisName: T_Dex1_Weapon_S Name: Shadow Gauntlets (Tier 1) Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bDex,1; - Id: 24002 AegisName: T_Luk1_Shield_S Name: Shadow Shield (Tier 1) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bLuk,1; - Id: 24003 AegisName: T_Agi1_Shoes_S Name: Shadow Shoes (Tier 1) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bAgi,1; - Id: 24004 AegisName: T_Vit1_Acc_R_S Name: Shadow Ring (Tier 1) Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bVit,1; - Id: 24005 AegisName: T_Int1_Acc_L_S Name: Shadow Pendant (Tier 1) Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bInt,1; - Id: 24006 AegisName: T_Str2_Armor_S Name: Shadow Armor (Tier 2) Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bStr,2; - Id: 24007 AegisName: T_Dex2_Weapon_S Name: Shadow Gauntlets (Tier 2) Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bDex,2; - Id: 24008 AegisName: T_Luk2_Shield_S Name: Shadow Shield (Tier 2) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 60 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bLuk,2; - Id: 24009 AegisName: T_Agi2_Shoes_S Name: Shadow Shoes (Tier 2) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 90 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bAgi,2; - Id: 24010 AegisName: T_Vit2_Acc_R_S Name: Shadow Ring (Tier 2) Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 120 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bVit,2; - Id: 24011 AegisName: T_Int2_Acc_L_S Name: Shadow Pendant (Tier 2) Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 150 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bInt,2; - Id: 24012 AegisName: S_Promotion_Weapon Name: Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bDex,1; - Id: 24013 AegisName: S_Promotion_Armor Name: Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bLuk,1; - Id: 24014 AegisName: S_Promotion_Shoes Name: Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bAgi,1; - Id: 24015 AegisName: S_Promotion_Shield Name: Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bVit,1; - Id: 24016 AegisName: S_Promotion_Earring Name: Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bInt,1; - Id: 24017 AegisName: S_Promotion_Pendant Name: Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus bStr,1; - Id: 24018 AegisName: S_Physical_Earring Name: Physical Earring (Shadow) Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAspdRate,(.@r>=7)?2:1; - Id: 24019 AegisName: S_Physical_Weapon Name: Physical Weapon (Shadow) Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r; bonus bBaseAtk,10+.@r; if (.@r>=7) { bonus2 bAddClass,Class_All,1; } - Id: 24020 AegisName: S_Physical_Pendant Name: Physical Pendant (Shadow) Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHP,100; if (.@r>6) { bonus bMaxHPrate,1; } - Id: 24021 AegisName: S_Magical_Earring Name: Magical Earring (Shadow) Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-(.@r>=7)?2:1; - Id: 24022 AegisName: S_Magical_Weapon Name: Magical Weapon (Shadow) Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMatk,10; if (.@r>6) { bonus bMatkRate,1; } - Id: 24023 AegisName: S_Magical_Pendant Name: Magical Pencil (Shadow) Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,50; if (.@r>6) { bonus bMaxSPrate,1; } - Id: 24024 AegisName: S_Breezy_Armor Name: Breeze Armor (Shadow) Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,5; if (.@r>6) { bonus bFlee,10; } - Id: 24025 AegisName: S_Champion_Shoes Name: Champion Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,20+.@r*10; bonus bMaxSP,10; if (.@r>6) { bonus bMaxHPrate,1; bonus bMaxSPrate,1; } - Id: 24026 AegisName: S_Athena_Shield Name: Athena Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,10; if (.@r>6) { bonus bDef,10; } - Id: 24027 AegisName: S_Immune_Armor Name: Immune Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; bonus2 bSubEle,Ele_Neutral,1; - Id: 24028 AegisName: S_Hard_Armor Name: Hard Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHP,50; if (.@r>6) { bonus bMaxHPrate,1; } - Id: 24029 AegisName: S_Ancient_Armor Name: Ancient Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bHit,10; if (.@r>6) { bonus bHit,10; } - Id: 24030 AegisName: S_Critical_Armor Name: Critital Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritical,5; if (.@r>6) { bonus bCritical,5; } - Id: 24031 AegisName: S_Kingbird_Weapon Name: Kingbird's Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10+.@r; bonus bMatk,.@r; if (.@r>6) { bonus bLongAtkRate,1; } - Id: 24032 AegisName: S_Cri_Hit_Weapon Name: Critical Hit Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10+.@r; bonus bMatk,.@r; if (.@r>6) { bonus bCritAtkRate,1; } - Id: 24033 AegisName: S_Healing_Weapon Name: Healing Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,10+.@r; if (.@r>6) bonus bHealPower,5; - Id: 24034 AegisName: S_Lucky_Weapon Name: Lucky Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | bonus bLuk,1; .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>6) { bonus bLuk,1; } if (.@r>8) { bonus bLuk,1; } - Id: 24035 AegisName: S_Power_Earring Name: Power Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bStr,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>6) { bonus bStr,1; } if (.@r>=9) { bonus bStr,1; } - Id: 24036 AegisName: S_Int_Pendant Name: Intelligent Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bInt,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>6) { bonus bInt,1; } if (.@r>=9) { bonus bInt,1; } - Id: 24037 AegisName: S_Dexterous_Armor Name: Dexterous Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus bDex,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>6) { bonus bDex,1; } if (.@r>=9) { bonus bDex,1; } - Id: 24038 AegisName: S_Vital_Shoes Name: Vital Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus bVit,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>6) { bonus bVit,1; } if (.@r>=9) { bonus bVit,1; } - Id: 24039 AegisName: S_Athletic_Shield Name: Athletic Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus bAgi,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>6) { bonus bAgi,1; } if (.@r>=9) { bonus bAgi,1; } - Id: 24040 AegisName: S_Lucky_Armor Name: Lucky Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus bLuk,1; .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritical,(.@r/2); - Id: 24041 AegisName: S_Power_Pendant Name: Power Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bStr,1; .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,.@r; - Id: 24042 AegisName: S_Int_Earring Name: Intelligent Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | bonus bInt,1; .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,.@r; - Id: 24043 AegisName: S_Dexterous_Weapon Name: Dexterous Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | bonus bDex,1; .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bHit,.@r; - Id: 24044 AegisName: S_Vital_Shield Name: Vital Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus bVit,1; .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,.@r; - Id: 24045 AegisName: S_Athletic_Shoes Name: Athletic Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus bAgi,1; .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,.@r; - Id: 24046 AegisName: S_Resist_Spell_Pendant Name: Resist Spell Power Pendant (Shadow) Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMdef,3; if (.@r>6) { bonus bMdef,3; } - Id: 24047 AegisName: S_Rapid_Pendant Name: Rapid Pendant (Shadow) Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAspdRate,1; if (.@r>8) { bonus bAspdRate,3; } else if (.@r>6) { bonus bAspdRate,1; } - Id: 24048 AegisName: S_Caster_Pendant Name: Caster Pendant (Shadow) Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-1; if (.@r>8) { bonus bVariableCastrate,-3; } else if (.@r>6) { bonus bVariableCastrate,-1; } - Id: 24049 AegisName: S_Hard_Earring Name: Hard Earring (Shadow) Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100+.@r*10; if (.@r>8) { bonus bMaxHPrate,2; } else if (.@r>6) { bonus bMaxHPrate,1; } - Id: 24050 AegisName: S_Wise_Earring Name: Wise Earring (Shadow) Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,50; if (.@r>8) { bonus bMaxSPrate,2; } else if (.@r>6) { bonus bMaxSPrate,1; } - Id: 24051 AegisName: S_Athena_Earring Name: Athena Earring (Shadow) Type: Shadowgear Defense: 10 Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus bDef,10; } - Id: 24052 AegisName: S_Cranial_Shield Name: Cranial Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; if (.@r>6) { bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; } if (.@r>=9) { bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; } - Id: 24053 AegisName: S_Safeguard_Shield Name: Safeguard Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubClass,Class_Boss,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubClass,Class_Boss,1; } if (.@r>=9) { bonus2 bSubClass,Class_Boss,1; } - Id: 24054 AegisName: S_Brutal_Shield Name: Brutal Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; if (.@r>=7) { bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; } if (.@r>=9) { bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 24055 AegisName: S_Gargantua_Shield Name: Gargantua Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_Insect,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubRace,RC_Insect,1; } if (.@r>=9) { bonus2 bSubRace,RC_Insect,1; } - Id: 24056 AegisName: S_Homers_Shield Name: Homers Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_Fish,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubRace,RC_Fish,1; } if (.@r>=9) { bonus2 bSubRace,RC_Fish,1; } - Id: 24057 AegisName: S_Dragoon_Shield Name: Dragoon Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_Dragon,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubRace,RC_Dragon,1; } if (.@r>=9) { bonus2 bSubRace,RC_Dragon,1; } - Id: 24058 AegisName: S_Satanic_Shield Name: Satanic Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_Angel,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubRace,RC_Angel,1; } if (.@r>=9) { bonus2 bSubRace,RC_Angel,1; } - Id: 24059 AegisName: S_Flameguard_Shield Name: Flameguard Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_Formless,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubRace,RC_Formless,1; } if (.@r>=9) { bonus2 bSubRace,RC_Formless,1; } - Id: 24060 AegisName: S_Requiem_Shield Name: Requiem Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_Undead,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubRace,RC_Undead,1; } if (.@r>=9) { bonus2 bSubRace,RC_Undead,1; } - Id: 24061 AegisName: S_Cadi_Shield Name: Cadi Shield (Shadow) Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubRace,RC_Plant,1; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubRace,RC_Plant,1; } if (.@r>=9) { bonus2 bSubRace,RC_Plant,1; } - Id: 24062 AegisName: S_Bloody_Shoes Name: Bloody Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; bonus2 bMagicAddRace,RC_DemiHuman,2; bonus2 bMagicAddRace,RC_Player_Human,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_DemiHuman,1; bonus2 bMagicAddRace,RC_DemiHuman,1; bonus2 bAddRace,RC_Player_Human,1; bonus2 bMagicAddRace,RC_Player_Human,1; } if (.@r>=9) { bonus2 bAddRace,RC_DemiHuman,2; bonus2 bMagicAddRace,RC_DemiHuman,2; bonus2 bAddRace,RC_Player_Human,2; bonus2 bMagicAddRace,RC_Player_Human,2; } - Id: 24063 AegisName: S_Liberation_Shoes Name: Liberation Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddClass,Class_Boss,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddClass,Class_Boss,1; } if (.@r>=9) { bonus2 bAddClass,Class_Boss,2; } - Id: 24064 AegisName: S_Chemical_Shoes Name: Chemical Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Plant,2; bonus2 bMagicAddRace,RC_Plant,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Plant,1; bonus2 bMagicAddRace,RC_Plant,1; } if (.@r>=9) { bonus2 bAddRace,RC_Plant,2; bonus2 bMagicAddRace,RC_Plant,2; } - Id: 24065 AegisName: S_Clamorous_Shoes Name: Clamorous Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; bonus2 bMagicAddRace,RC_Brute,2; bonus2 bMagicAddRace,RC_Player_Doram,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Brute,1; bonus2 bAddRace,RC_Player_Doram,1; bonus2 bMagicAddRace,RC_Brute,1; bonus2 bMagicAddRace,RC_Player_Doram,2; } if (.@r>=9) { bonus2 bAddRace,RC_Brute,2; bonus2 bAddRace,RC_Player_Doram,2; bonus2 bMagicAddRace,RC_Brute,2; bonus2 bMagicAddRace,RC_Player_Doram,2; } - Id: 24066 AegisName: S_Insecticide_Shoes Name: Insecticide Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Insect,2; bonus2 bMagicAddRace,RC_Insect,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Insect,1; bonus2 bMagicAddRace,RC_Insect,1; } if (.@r>=9) { bonus2 bAddRace,RC_Insect,2; bonus2 bMagicAddRace,RC_Insect,2; } - Id: 24067 AegisName: S_Fisher_Shoes Name: Fisher Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Fish,2; bonus2 bMagicAddRace,RC_Fish,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Fish,1; bonus2 bMagicAddRace,RC_Fish,1; } if (.@r>=9) { bonus2 bAddRace,RC_Fish,2; bonus2 bMagicAddRace,RC_Fish,2; } - Id: 24068 AegisName: S_Seraphim_Shoes Name: Seraphim Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Angel,2; bonus2 bMagicAddRace,RC_Angel,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Angel,1; bonus2 bMagicAddRace,RC_Angel,1; } if (.@r>=9) { bonus2 bAddRace,RC_Angel,2; bonus2 bMagicAddRace,RC_Angel,2; } - Id: 24069 AegisName: S_Beholder_Shoes Name: Beholder Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Formless,2; bonus2 bMagicAddRace,RC_Formless,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Formless,1; bonus2 bMagicAddRace,RC_Formless,1; } if (.@r>=9) { bonus2 bAddRace,RC_Formless,2; bonus2 bMagicAddRace,RC_Formless,2; } - Id: 24070 AegisName: S_Divine_Shoes Name: Divine Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Undead,2; bonus2 bMagicAddRace,RC_Undead,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Undead,1; bonus2 bMagicAddRace,RC_Undead,1; } if (.@r>=9) { bonus2 bAddRace,RC_Undead,2; bonus2 bMagicAddRace,RC_Undead,2; } - Id: 24071 AegisName: S_Dragoon_Shoes Name: Dragoon Shoes (Shadow) Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bAddRace,RC_Dragon,2; bonus2 bMagicAddRace,RC_Dragon,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bAddRace,RC_Dragon,1; bonus2 bMagicAddRace,RC_Dragon,1; } if (.@r>=9) { bonus2 bAddRace,RC_Dragon,2; bonus2 bMagicAddRace,RC_Dragon,2; } - Id: 24072 AegisName: S_Big_Armor Name: Large Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubSize,Size_Large,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubSize,Size_Large,1; } if (.@r>=9) { bonus2 bSubSize,Size_Large,2; } - Id: 24073 AegisName: S_Medium_Armor Name: Medium Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubSize,Size_Medium,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubSize,Size_Medium,1; } if (.@r>=9) { bonus2 bSubSize,Size_Medium,2; } - Id: 24074 AegisName: S_Small_Armor Name: Small Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus2 bSubSize,Size_Small,2; .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=7) { bonus2 bSubSize,Size_Small,1; } if (.@r>=9) { bonus2 bSubSize,Size_Small,2; } - Id: 24075 AegisName: S_Big_Weapon Name: Large Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bAddSize,Size_Large,2; bonus2 bMagicAddSize,Size_Large,2; if (.@r>=7) { bonus2 bAddSize,Size_Large,1; bonus2 bMagicAddSize,Size_Large,1; } if (.@r>=9) { bonus2 bAddSize,Size_Large,2; bonus2 bMagicAddSize,Size_Large,2; } - Id: 24076 AegisName: S_Medium_Weapon Name: Medium Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bAddSize,Size_Medium,2; bonus2 bMagicAddSize,Size_Medium,2; if (.@r>=7) { bonus2 bAddSize,Size_Medium,1; bonus2 bMagicAddSize,Size_Medium,1; } if (.@r>=9) { bonus2 bAddSize,Size_Medium,2; bonus2 bMagicAddSize,Size_Medium,2; } - Id: 24077 AegisName: S_Small_Weapon Name: Small Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bAddSize,Size_Small,2; bonus2 bMagicAddSize,Size_Small,2; if (.@r>=7) { bonus2 bAddSize,Size_Small,1; bonus2 bMagicAddSize,Size_Small,1; } if (.@r>=9) { bonus2 bAddSize,Size_Small,2; bonus2 bMagicAddSize,Size_Small,2; } - Id: 24078 AegisName: S_Spiritual_Weapon Name: Spiritual Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bSPrecovRate,5; if (.@r>=7) bonus bSPrecovRate,5; - Id: 24079 AegisName: S_Spiritual_Earring Name: Spiritual Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,50; if (.@r>=7) bonus bMaxSPrate,1; - Id: 24080 AegisName: S_Spiritual_Pendent Name: Spiritual Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSPrate,(.@r>=7?2:1); - Id: 24081 AegisName: S_Malicious_Armor Name: Malicious Shas Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100+.@r*10; if (.@r>6) { bonus bMaxHPrate,1; } - Id: 24082 AegisName: S_Malicious_Shoes Name: Malicious Shas Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,1; if (.@r>6) { bonus bMaxHPrate,1; } - Id: 24083 AegisName: S_Malicious_Shield Name: Malicious Shas Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bHPrecovRate,5; if (.@r>6) { bonus bHPrecovRate,5; } - Id: 24084 AegisName: S_Gemstone_Armor Name: Gemstone Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritical,5+(.@r/2); - Id: 24085 AegisName: S_Gemstone_Shoes Name: Gemstone Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,5+(.@r/2); - Id: 24086 AegisName: S_Gemstone_Shield Name: Gemstone Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,5+(.@r/2); - Id: 24087 AegisName: S_Gemstone_Weapon Name: Gemstone Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bHit,5+(.@r/2); - Id: 24088 AegisName: S_Gemstone_Earring Name: Gemstone Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,5+(.@r/2); - Id: 24089 AegisName: S_Gemstone_Pendent Name: Gemstone Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,5+(.@r/2); - Id: 24090 AegisName: S_Stability_Shield Name: Stability Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | bonus bDef,3; .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bResEff,Eff_Stun,(.@r/2)*100; bonus2 bResEff,Eff_Freeze,(.@r/2)*100; bonus2 bResEff,Eff_Curse,(.@r/2)*100; bonus2 bResEff,Eff_Bleeding,(.@r/2)*100; bonus2 bResEff,Eff_Stone,.@r*100; bonus2 bResEff,Eff_Sleep,.@r*100; bonus2 bResEff,Eff_Silence,.@r*100; bonus2 bResEff,Eff_Blind,.@r*100; - Id: 24091 AegisName: S_Plasterer's_Armor Name: Harrods Plaster Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Stone,.@r; - Id: 24092 AegisName: S_Plasterer's_Shoes Name: Harrods Plaster Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Stone,.@r; - Id: 24093 AegisName: S_Insomniac_Armor Name: Insomnia Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Sleep,.@r; - Id: 24094 AegisName: S_Insomniac_Shoes Name: Insomnia Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Sleep,.@r; - Id: 24095 AegisName: S_Peerless_Armor Name: Peerless Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Silence,.@r; - Id: 24096 AegisName: S_Peerless_Shoes Name: Peerless Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Silence,.@r; - Id: 24097 AegisName: S_Adurate_Armor Name: Andre Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Blind,.@r; - Id: 24098 AegisName: S_Adurate_Shoes Name: Andre Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Blind,.@r; - Id: 24099 AegisName: Unfreez_Weapon_S Name: Unfreezing Shadow Weapon Type: Shadowgear Buy: 10 Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bDef,1; bonus2 bResEff,Eff_Freeze,.@r*100; - Id: 24100 AegisName: Unfreeze_Earing_S Name: Unfreezing Shadow Earring Type: Shadowgear Buy: 10 Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Freeze,.@r*100; - Id: 24101 AegisName: Unfreeze_Pendent_S Name: Unfreezing Shadow Pendant Type: Shadowgear Buy: 10 Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Freeze,.@r*100; - Id: 24102 AegisName: Vitality_Earing_S Name: Vitality Shadow Earring Type: Shadowgear Buy: 10 Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Bleeding,.@r; - Id: 24103 AegisName: Vitality_Pendant_S Name: Vitality Shadow Pendant Type: Shadowgear Buy: 10 Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Bleeding,.@r; - Id: 24104 AegisName: S_Neutral_Weapon Name: Neutral Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bDef,1; bonus2 bResEff,Eff_Stun,.@r/2; - Id: 24105 AegisName: S_Neutral_Earring Name: Neutral Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Stun,.@r; - Id: 24106 AegisName: S_Neutral_Pendent Name: Neutral Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Stun,.@r; - Id: 24107 AegisName: S_Curse_Lift_Earring Name: Frozen Curse Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Curse,.@r; - Id: 24108 AegisName: S_Curse_Lift_Pendent Name: Frozen Curse Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Curse,.@r; - Id: 24109 AegisName: S_Caster_earring Name: Caster Shadow Earrings Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-1-((.@r>=7)?1:0); - Id: 24110 AegisName: S_Caster_Weapon Name: Caster Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bVariableCastrate,-1-((.@r>=7)?1:0)-((.@r>=9)?2:0); - Id: 24111 AegisName: S_Spell_Flow_Shoes Name: Spellflow Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bUseSPrate,-1; if (.@r>6) bonus bSPrecovRate,5; - Id: 24112 AegisName: S_Spell_Flow_Armor Name: Spellflow Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bUseSPrate,-1; if (.@r>8) { bonus bUseSPrate,-2; } else if (.@r>6) { bonus bUseSPrate,-1; } - Id: 24113 AegisName: S_Spell_Flow_Shield Name: Spellflow Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bUseSPrate,-1; if (.@r>6) bonus bMaxSPrate,1; - Id: 24114 AegisName: S_Greed_Armor Name: Grid Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(.@r*10); - Id: 24115 AegisName: S_Greed_Shoes Name: Grid Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(.@r*10); - Id: 24116 AegisName: S_Greed_Shield Name: Grid Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(.@r*10); - Id: 24117 AegisName: S_Greed_Weapon Name: Grid Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(.@r*10); - Id: 24118 AegisName: S_Greed_Earring Name: Grid Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(.@r*10); - Id: 24119 AegisName: S_Greed_Pendant Name: Grid Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "BS_GREED",1; bonus2 bSkillUseSP,"BS_GREED",-100+(.@r*10); - Id: 24120 AegisName: S_Heal_Armor Name: Heal Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(.@r*5); - Id: 24121 AegisName: S_Heal_Shoes Name: Heal Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(.@r*5); - Id: 24122 AegisName: S_Heal_Shield Name: Heal Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(.@r*5); - Id: 24123 AegisName: S_Heal_Weapon Name: Heal Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(.@r*5); - Id: 24124 AegisName: S_Heal_Earring Name: Heal Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(.@r*5); - Id: 24125 AegisName: S_Heal_Pendant Name: Heal Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_HEAL",1; bonus2 bSkillUseSP,"AL_HEAL",-50+(.@r*5); - Id: 24126 AegisName: S_Hiding_Armor Name: Hiding Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(.@r*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24127 AegisName: S_Hiding_Shoes Name: Hiding Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(.@r*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24128 AegisName: S_Hiding_Shield Name: Hiding Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(.@r*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24129 AegisName: S_Hiding_Weapon Name: Hiding Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(.@r*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24130 AegisName: S_Hiding_Earring Name: Hiding Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(.@r*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24131 AegisName: S_Hiding_Pendant Name: Hiding Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_HIDING",1; bonus2 bSkillUseSP,"TF_HIDING",-50+(.@r*5); UnEquipScript: | sc_end SC_HIDING; - Id: 24132 AegisName: S_Cloaking_Armor Name: Cloaking Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(.@r*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24133 AegisName: S_Cloaking_Shoes Name: Cloaking Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(.@r*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24134 AegisName: S_Cloaking_Shield Name: Cloaking Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(.@r*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24135 AegisName: S_Cloaking_Weapon Name: Cloaking Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(.@r*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24136 AegisName: S_Cloaking_Earring Name: Cloaking Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(.@r*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24137 AegisName: S_Cloaking_Pendant Name: Cloaking Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AS_CLOAKING",1; bonus2 bSkillUseSP,"AS_CLOAKING",-50+(.@r*5); UnEquipScript: | sc_end SC_CLOAKING; - Id: 24138 AegisName: S_Teleport_Armor Name: Teleport Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(.@r*5); - Id: 24139 AegisName: S_Teleport_Shoes Name: Teleport Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(.@r*5); - Id: 24140 AegisName: S_Teleport_Shield Name: Teleport Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(.@r*5); - Id: 24141 AegisName: S_Teleport_Weapon Name: Teleport Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(.@r*5); - Id: 24142 AegisName: S_Teleport_Earring Name: Teleport Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(.@r*5); - Id: 24143 AegisName: S_Teleport_Pendant Name: Teleport Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"AL_TELEPORT",-50+(.@r*5); - Id: 24144 AegisName: S_Steal_Armor Name: Steal Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(.@r*5); - Id: 24145 AegisName: S_Steal_Shoes Name: Steal Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(.@r*5); - Id: 24146 AegisName: S_Steal_Shield Name: Steal Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(.@r*5); - Id: 24147 AegisName: S_Steal_Weapon Name: Steal Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(.@r*5); - Id: 24148 AegisName: S_Steal_Earring Name: Steal Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(.@r*5); - Id: 24149 AegisName: S_Steal_Pendant Name: Steal Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; skill "TF_STEAL",1; bonus2 bSkillUseSP,"TF_STEAL",-50+(.@r*5); - Id: 24150 AegisName: S_Infinity_Earring Name: Infinity Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,1; bonus2 bMagicAddSize,Size_All,1; if (.@r>=7) { bonus2 bAddSize,Size_All,1; bonus2 bMagicAddSize,Size_All,1; } if (.@r>=9) { bonus2 bAddSize,Size_All,1; bonus2 bMagicAddSize,Size_All,1; } - Id: 24151 AegisName: S_Infinity_Pendant Name: Infinity Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSubSize,Size_All,1+((.@r >= 9) ? 2 : (.@r >= 7) ? 1 : 0); - Id: 24152 AegisName: S_Solid_Weapon Name: Solid Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r; bonus bBaseAtk,.@r+5+(.@r/2); - Id: 24153 AegisName: S_Solid_Earring Name: Solid Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bHit,5+(.@r/2); - Id: 24154 AegisName: S_Immortal_Armor Name: Solid Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,5+(.@r/2); - Id: 24155 AegisName: S_Immortal_Pendant Name: Solid Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMdef,(.@r/2); - Id: 24156 AegisName: S_Executioner_Weapon Name: Demi-Human Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+(.@r/2); - Id: 24157 AegisName: S_Exorcist_Weapon Name: Exorcist Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Demon,5+(.@r/2); - Id: 24158 AegisName: S_Hunting_Weapon Name: Hunting Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Brute,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5+(.@r/2); - Id: 24159 AegisName: S_Insect_Net_Weapon Name: Insect Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Insect,5+(.@r/2); - Id: 24160 AegisName: S_Fishing_Weapon Name: Fishing Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Fish,5+(.@r/2); - Id: 24161 AegisName: S_Dragon_Killer_Weapon Name: Dragon Killer Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Dragon,5+(.@r/2); - Id: 24162 AegisName: S_Corrupt_Weapon Name: Angelus Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Angel,5+(.@r/2); - Id: 24163 AegisName: S_Vibration_Weapon Name: Formless Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Formless,5+(.@r/2); - Id: 24164 AegisName: S_Holy_Water_Weapon Name: Holy Water Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Undead,5+(.@r/2); - Id: 24165 AegisName: S_Scissors_Weapon Name: Plant Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Plant,5+(.@r/2); - Id: 24166 AegisName: S_Penetration_Earring Name: Penetration Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2); - Id: 24167 AegisName: S_Penetration_Pendent Name: Penetration Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2); - Id: 24168 AegisName: S_Tempest_Earring Name: Tempest Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefClassRate,Class_Normal,5+(.@r/2); - Id: 24169 AegisName: S_Tempest_Pendent Name: Tempest Pendant Shadow Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefClassRate,Class_Normal,5+(.@r/2); - Id: 24170 AegisName: S_M_Executioner_Weapon Name: Magic Demi-Human Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(.@r/2); - Id: 24171 AegisName: S_M_Exorcist_Weapon Name: Magic Exorcist Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Demon,5+(.@r/2); - Id: 24172 AegisName: S_M_Hunting_Weapon Name: Magic Hunting Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Brute,5+(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5+(.@r/2); - Id: 24173 AegisName: S_M_Insect_Net_Weapon Name: Magic Insect Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Insect,5+(.@r/2); - Id: 24174 AegisName: S_M_Fishing_Weapon Name: Magic Fishing Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Fish,5+(.@r/2); - Id: 24175 AegisName: S_M_Dragon_K_Weapon Name: Magic Dragon Killer Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+(.@r/2); - Id: 24176 AegisName: S_M_Corrupt_Weapon Name: Magic Angelus Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Angel,5+(.@r/2); - Id: 24177 AegisName: S_M_Vibration_Weapon Name: Magic Formless Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Formless,5+(.@r/2); - Id: 24178 AegisName: S_M_Holy_Water_Weapon Name: Magic Holy Water Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Undead,5+(.@r/2); - Id: 24179 AegisName: S_M_Scissors_Weapon Name: Magic Caesars Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Plant,5+(.@r/2); - Id: 24180 AegisName: S_Bearers_Armor Name: Bearer's Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMdef,1+(.@r/2); - Id: 24181 AegisName: S_Bearers_Shoes Name: Bearer's Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,50+(5*(.@r/2)); - Id: 24182 AegisName: S_Bearers_Shield Name: Bearer's Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,5+(.@r/2); - Id: 24183 AegisName: S_Bearers_Weapon Name: Bearer's Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxHP,100+(10*(.@r/2)); - Id: 24184 AegisName: S_Bearers_Earring Name: Bearer's Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,5+(.@r/2); - Id: 24185 AegisName: S_Bearers_Pendent Name: Bearer's Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,5+(.@r/2); - Id: 24186 AegisName: S_Basis_Armor Name: Basis Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Neutral,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Neutral,(1+(.@r/2)); - Id: 24187 AegisName: S_Hallowed_Armor Name: Hallowed Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Dark,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Dark,(1+(.@r/2)); - Id: 24188 AegisName: S_Saharic_Armor Name: Underneith Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Water,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Water,(1+(.@r/2)); - Id: 24189 AegisName: S_Underneath_Armor Name: Underneath Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Earth,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Earth,(1+(.@r/2)); - Id: 24190 AegisName: S_Flam_Armor Name: Flame Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Fire,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Fire,(1+(.@r/2)); - Id: 24191 AegisName: S_Windy_Armor Name: Windy Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Wind,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Wind,(1+(.@r/2)); - Id: 24192 AegisName: S_Envenom_Armor Name: Envenom Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Poison,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Poison,(1+(.@r/2)); - Id: 24193 AegisName: S_Damned_Armor Name: Damned Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Holy,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Holy,(1+(.@r/2)); - Id: 24194 AegisName: S_Geist_Armor Name: Exorcism Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Ghost,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Ghost,(1+(.@r/2)); - Id: 24195 AegisName: S_Divine_Armor Name: Divine Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_Undead,(1+(.@r/2)); bonus2 bMagicAddEle,Ele_Undead,(1+(.@r/2)); - Id: 24196 AegisName: S_Hasty_Shoes Name: Hasty Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,5+(.@r/2); - Id: 24197 AegisName: S_Hasty_Armor Name: Hasty Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,5+(.@r/2); - Id: 24198 AegisName: S_Basis_Shield Name: Basis Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Neutral,.@i; - Id: 24199 AegisName: S_Hallowed_Shield Name: Hallowed Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Dark,.@i; - Id: 24200 AegisName: S_Saharic_Shield Name: Saharic Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Water,.@i; - Id: 24201 AegisName: S_Underneath_Shield Name: Underneath Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Earth,.@i; - Id: 24202 AegisName: S_Flam_Shield Name: Flame Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Fire,.@i; - Id: 24203 AegisName: S_Windy_Shield Name: Windy Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Wind,.@i; - Id: 24204 AegisName: S_Envenom_Shield Name: Envenom Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Poison,.@i; - Id: 24205 AegisName: S_Damned_Shield Name: Damned Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Holy,.@i; - Id: 24206 AegisName: S_Geist_Shield Name: Exorcism Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Ghost,.@i; - Id: 24207 AegisName: S_Divine_Shield Name: Divine Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@i = (.@r<7)?1:((.@r<9)?2:3); bonus2 bSubEle,Ele_Undead,.@i; - Id: 24208 AegisName: S_Expert_Shoes Name: Expert Shadow Shoes Type: Shadowgear Weight: 100 Locations: Shadow_Shoes: true EquipLevelMin: 150 EquipLevelMax: 175 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,(.@r/4); - Id: 24209 AegisName: S_Expert_Shield Name: Expert Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 150 EquipLevelMax: 175 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,(.@r/4); - Id: 24210 AegisName: S_Beginner_Shoes Name: Beginner Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 EquipLevelMax: 49 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,.@r; - Id: 24211 AegisName: S_Beginner_Shield Name: Beginner Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 EquipLevelMax: 49 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,.@r; - Id: 24212 AegisName: S_Rookie_Shoes Name: Rookie Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 50 EquipLevelMax: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,(.@r/2); - Id: 24213 AegisName: S_Rookie_Shield Name: Rookie Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 50 EquipLevelMax: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,(.@r/2); - Id: 24214 AegisName: S_Advanced_Shoes Name: Advanced Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 100 EquipLevelMax: 149 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,(.@r/3); - Id: 24215 AegisName: S_Advanced_Shield Name: Advanced Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 100 EquipLevelMax: 149 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bExpAddRace,RC_All,(.@r/3); - Id: 24216 AegisName: S_Attack_Armor Name: Attack Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; autobonus "{ bonus bBaseAtk,("+.@r+"*5); }",(.@r*2)+10,3000,BF_NORMAL; - Id: 24217 AegisName: S_Blitz_Earring Name: Blitz Shadow Earring Type: Shadowgear Buy: 10 Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bHit,(.@r/2)+5; if (.@r>=7) { bonus bAspd,1; } - Id: 24218 AegisName: S_Blitz_Pendent Name: Blitz Shadow Pendant Type: Shadowgear Buy: 10 Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,(.@r/2)+5; if (.@r>=7) { bonus bAspd,1; } - Id: 24219 AegisName: S_ColdBolt_Armor Name: Cold Bolt Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_COLDBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; - Id: 24220 AegisName: S_FireBolt_Armor Name: Fire Bolt Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_FIREBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; - Id: 24221 AegisName: S_LightingBolt_Armor Name: Lightning Bolt Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=2) autobonus "{ bonus3 bAutoSpell,\"MG_LIGHTNINGBOLT\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; - Id: 24222 AegisName: S_EarthSpike_Armor Name: Earth Spike Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=2) autobonus "{ bonus3 bAutoSpell,\"WZ_EARTHSPIKE\",("+.@r+"/2),1000; }",(.@r*2)+100,100,BF_SHORT; - Id: 24223 AegisName: S_Enhance_Force_Weapon Name: Enhanced Force Shadow Weapon Type: Shadowgear Buy: 10 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: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r+10; bonus bMatk,.@r; bonus2 bAddClass,Class_All,(.@r/2); - Id: 24224 AegisName: S_Force_Weapon Name: Force Shadow Weapon Type: Shadowgear Buy: 10 Locations: Shadow_Weapon: true EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bAddClass,Class_All,(.@r<7)?1:((.@r<9)?2:3); - Id: 24225 AegisName: S_Force_Earring Name: Force Shadow Earring Type: Shadowgear Buy: 10 Locations: Shadow_Right_Accessory: true EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,5+.@r; if (.@r>=7) { bonus bMaxHPrate,1; } if (.@r>=9) { bonus2 bAddClass,Class_All,1; } - Id: 24226 AegisName: S_Force_Pendant Name: Force Shadow Pendant Type: Shadowgear Buy: 10 Locations: Shadow_Left_Accessory: true EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,(5+.@r); if (.@r>=7) bonus bMaxSPrate,1; if (.@r>=9) bonus2 bAddClass,Class_All,1; - Id: 24227 AegisName: S_Enhance_Spirit_Weapon Name: Enhanced Soul Shadow Weapon Type: Shadowgear Buy: 10 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: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,10+.@r; bonus bMatkRate,(.@r/2); - Id: 24228 AegisName: S_Spirit_Weapon Name: Soul Shadow Weapon Type: Shadowgear Buy: 10 Locations: Shadow_Weapon: true EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMatkRate,(.@r<7)?1:((.@r<9)?2:3); - Id: 24229 AegisName: S_Spirit_Earring Name: Soul Shadow Earring Type: Shadowgear Buy: 10 Locations: Shadow_Right_Accessory: true EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,(5+.@r); if (.@r>=7) bonus bMaxHPrate,1; if (.@r>=9) bonus bMatkRate,1; - Id: 24230 AegisName: S_Spirit_Pendant Name: Soul Shadow Pendant Type: Shadowgear Buy: 10 Locations: Shadow_Left_Accessory: true EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,(5+.@r); if (.@r>=7) bonus bMaxSPrate,1; if (.@r>=9) bonus bMatkRate,1; - Id: 24231 AegisName: S_Blitz_Shoes Name: Blitz Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,5+.@r/2; if (.@r>=7) { bonus bAspd,1; } if (.@r>=9) { bonus bAspd,1; } - Id: 24232 AegisName: S_Blitz_Shield Name: Blitz Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritical,5+.@r/2; if (.@r>=7) { bonus bAspd,1; } if (.@r>=9) { bonus bAspd,1; } - Id: 24233 AegisName: S_Exceed_Weapon Name: Exceeding Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r+5; bonus bMatk,.@r+5; bonus2 bAddClass,Class_All,.@r/2; bonus bMatkRate,.@r/2; - Id: 24234 AegisName: S_Titan_Earring Name: Titan Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; - Id: 24235 AegisName: S_Titan_Pendant Name: Titan Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Large,.@rate; bonus2 bMagicAddSize,Size_Large,.@rate; - Id: 24236 AegisName: S_Boned_Earring Name: Boned Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; - Id: 24237 AegisName: S_Boned_Pendant Name: Boned Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Medium,.@rate; bonus2 bMagicAddSize,Size_Medium,.@rate; - Id: 24238 AegisName: S_Gigantic_Earring Name: Gigantic Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; - Id: 24239 AegisName: S_Gigantic_Pendant Name: Gigantic Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@rate = (.@r<7)?1:((.@r<9)?2:4); bonus2 bAddSize,Size_Small,.@rate; bonus2 bMagicAddSize,Size_Small,.@rate; - Id: 24240 AegisName: S_Caster_Shoes Name: Caster Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,5; bonus bUseSPrate,-1; bonus bVariableCastrate,-.@r/2; - Id: 24241 AegisName: S_Caster_Shield Name: Caster Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,5; bonus bUseSPrate,-1; bonus bVariableCastrate,-.@r/2; - Id: 24242 AegisName: S_Caster_Armor Name: Caster Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,5; bonus bUseSPrate,-1; bonus bVariableCastrate,-.@r/2; - Id: 24243 AegisName: S_Reload_Shoes Name: Reload Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); - Id: 24244 AegisName: S_Reload_Shield Name: Reload Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); - Id: 24245 AegisName: S_Reload_Armor Name: Reload Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDelayrate,(.@r<7)?-1:((.@r<9)?-2:-3); - Id: 24246 AegisName: S_Swordman_earring Name: Swordman Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SM_BASH",20+(3*.@r); - Id: 24247 AegisName: S_Merchant_earring Name: Merchant Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"MC_MAMMONITE",20+(5*.@r); - Id: 24248 AegisName: S_Acolyte_earring Name: Acolyte Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"AL_HEAL",20+(3*.@r); - Id: 24249 AegisName: S_Magician_earring Name: Magician Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bVariableCastrate,"MG_COLDBOLT",-20-(5*.@r); bonus2 bVariableCastrate,"MG_FIREBOLT",-20-(5*.@r); bonus2 bVariableCastrate,"MG_LIGHTNINGBOLT",-20-(5*.@r); - Id: 24250 AegisName: S_Swordman_Pendant Name: Swordman Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SM_MAGNUM",20+(5*.@r); - Id: 24251 AegisName: S_Merchant_Pendant Name: Merchant Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"MC_CARTREVOLUTION",20+(5*.@r); - Id: 24252 AegisName: S_Acolyte_Pendant Name: Acolyte Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"AL_HOLYLIGHT",50+(.@r*10); - Id: 24253 AegisName: S_Thief_Pendant Name: Thief Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"TF_POISON",20+(5*.@r); - Id: 24254 AegisName: S_Magician_Pendant Name: Magician Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"MG_FIREWALL",20+5*.@r; - Id: 24255 AegisName: S_Archer_Pendant Name: Archer Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"AC_SHOWER",20+(5*.@r); - Id: 24256 AegisName: S_Knight_Shoes Name: Knight Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"KN_PIERCE",20+.@r*5; - Id: 24257 AegisName: S_Crusader_Shoes Name: Crusader Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"CR_HOLYCROSS",(20+(3*.@r)); - Id: 24258 AegisName: S_Blacksmith_Shoes Name: Blacksmith Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 20+(5*.@r); bonus2 bSkillUseSPrate,"BS_HAMMERFALL",.@val; bonus2 bSkillUseSPrate,"BS_ADRENALINE",.@val; - Id: 24259 AegisName: S_Alchemist_Shoes Name: Alchemist Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (BaseJob == Job_Alchemist) bonus bHealPower,30+7*.@r; - Id: 24260 AegisName: S_Priest_Shoes Name: Priest Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 20+(3*.@r); bonus2 bSkillUseSPrate,"PR_KYRIE",.@val; bonus2 bSkillUseSPrate,"PR_LEXAETERNA",.@val; - Id: 24261 AegisName: S_Monk_Shoes Name: Monk Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"MO_CHAINCOMBO",20+.@r*5; - Id: 24262 AegisName: S_Assassin_Shoes Name: Assassin Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"AS_GRIMTOOTH",20+.@r*5; - Id: 24263 AegisName: S_Rogue_Shoes Name: Rogue Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@a = getskilllv("SM_SWORD"); .@r = max(.@r,6); bonus bBaseAtk,.@a+((.@r-6)*.@a); - Id: 24264 AegisName: S_Wizard_Shoes Name: Wizard Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bVariableCastrate,"WZ_STORMGUST",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_VERMILION",-1*(20+(3*.@r)); bonus2 bVariableCastrate,"WZ_METEOR",-1*(20+(3*.@r)); - Id: 24265 AegisName: S_Sage_Shoes Name: Sage Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20+.@r*5; - Id: 24266 AegisName: S_Hunter_Shoes Name: Hunter Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SN_FALCONASSAULT",20+(.@r*5); bonus2 bSkillAtk,"HT_BLITZBEAT",20+.@r*5; - Id: 24267 AegisName: S_Bard_Shoes Name: Bard Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@a = getskilllv("BA_MUSICALLESSON"); .@r = max(.@r,6); bonus bBaseAtk,.@a+((.@r-6)*.@a); - Id: 24268 AegisName: S_Dancer_Shoes Name: Dancer Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@a = getskilllv("DC_DANCINGLESSON"); .@r = max(.@r,6); bonus bBaseAtk,.@a+((.@r-6)*.@a); - Id: 24269 AegisName: S_Knight_Armor Name: Knight Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"KN_BOWLINGBASH",(20+(.@r*3)); - Id: 24270 AegisName: S_Crusader_Armor Name: Crusader Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"CR_GRANDCROSS",20+.@r*5; - Id: 24271 AegisName: S_Blacksmith_Armor Name: Blacksmith Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5; if (.@r > 6) { .@val += .@r-6; } autobonus3 "{ bonus2 bAddSize,Size_All,"+.@val+"; bonus2 bMagicAddSize,Size_All,"+.@val+"; }",1000,50000,"BS_WEAPONPERFECT"; - Id: 24272 AegisName: S_Alchemist_Armor Name: Alchemist Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@a = getskilllv("AM_LEARNINGPOTION"); .@r = max(.@r,6); bonus bBaseAtk,.@a+((.@r-6)*.@a); - Id: 24273 AegisName: S_Priest_Armor Name: Priest Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"PR_MAGNUS",20+.@r*5; - Id: 24274 AegisName: S_Monk_Armor Name: Monk Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",20+.@r*5; bonus2 bSkillAtk,"MO_INVESTIGATE",20+.@r*5; - Id: 24275 AegisName: S_Assassin_Armor Name: Assassin Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"AS_SONICBLOW",(20+(.@r*3)); - Id: 24276 AegisName: S_Rogue_Armor Name: Rogue Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RG_BACKSTAP",20+.@r*5; - Id: 24277 AegisName: S_Wizard_Armor Name: Wizard Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WZ_JUPITEL",20+.@r*5; - Id: 24278 AegisName: S_Sage_Armor Name: Sage Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,getrefine()*10; autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SA_AUTOSPELL"; - Id: 24279 AegisName: S_Hunter_Armor Name: Hunter Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"HT_CLAYMORETRAP",20+.@r*5; bonus2 bSkillAtk,"HT_LANDMINE",20+.@r*5; - Id: 24280 AegisName: S_Bard_Armor Name: Bard Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_DISSONANCE"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_POEMBRAGI"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_ASSASSINCROSS"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_APPLEIDUN"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"BA_WHISTLE"; - Id: 24281 AegisName: S_Dancer_Armor Name: Dancer Shadow Armor Type: Shadowgear Buy: 10 Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_FORTUNEKISS"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_SERVICEFORYOU"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_DONTFORGETME"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_HUMMING"; autobonus3 "{ bonus2 bSPRegenRate,5+"+.@r+",5000; }",1000,30000,"DC_UGLYDANCE"; - Id: 24282 AegisName: S_SuperNovice_Weapon Name: Super Novice Shadow Weapon Type: Shadowgear Jobs: Novice: true SuperNovice: true Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxHP,1000; bonus bMaxSP,200; bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("SM_SWORD")+.@r); bonus2 bIgnoreMDefClassRate,Class_Normal,3*(getskilllv("MG_SRECOVERY")+.@r); if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bSPrecovRate,100; } - Id: 24283 AegisName: S_Gunslinger_Weapon Name: Gunslinger Shadow Weapon Type: Shadowgear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefClassRate,Class_Normal,3*(getskilllv("GS_SNAKEEYE")+.@r); .@aspd = 1; if (.@r>=7) { .@aspd += 1; bonus bLongAtkRate,3; } if (.@r>=9) { .@aspd += 1; bonus bLongAtkRate,5; bonus bAspd,.@aspd; } - Id: 24284 AegisName: S_Taekwon_Weapon Name: Taekwondo Shadow Weapon Type: Shadowgear Jobs: SoulLinker: true StarGladiator: true Taekwon: true Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bAspd,1; bonus bAtkRate,.@r; bonus bMatkRate,.@r; if (.@r>=7) { bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspd,1; } if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspd,1; } - Id: 24285 AegisName: S_Ninja_Weapon Name: Ninja Shadow Weapon Type: Shadowgear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; .@val = 3; bonus2 bSkillCooldown,"KO_BAKURETSU",-2000; bonus bMatk,.@r+(3*getskilllv("NJ_NINPOU")); if (.@r >= 7) { .@val += 3; if (.@r >= 9) { .@val += 4; } } bonus2 bAddClass,Class_Normal,.@val; bonus bMatkRate,.@val; - Id: 24286 AegisName: S_DoramMagical_Weapon Name: Doram Magical Shadow Weapon Type: Shadowgear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bVariableCastrate,-(5+.@r); if (getskilllv("SU_POWEROFLAND") == 1) bonus bFixedCast,-100; if (getskilllv("SU_POWEROFSEA") == 1) { bonus bUseSPrate,-3; } if (.@r>=7) bonus bMatkRate,5; if (.@r>=9) bonus bMatkRate,5; - Id: 24287 AegisName: S_DoramPhysical_Weapon Name: Doram Physical Shadow Weapon Type: Shadowgear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,.@r; if (getskilllv("SU_POWEROFLIFE") == 1) bonus bAspd,1; if (.@r>=7) bonus bFlee2,2; if (.@r>=9) bonus bFlee2,3; - Id: 24288 AegisName: S_Runeknight_Weapon Name: Rune Knight Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"RK_SONICWAVE",20+.@r*5; - Id: 24289 AegisName: S_Royalguard_Weapon Name: Royal Guard Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"LG_CANNONSPEAR",20+.@r*5; - Id: 24290 AegisName: S_Mechanic_weapon Name: Mechanic Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"NC_VULCANARM",20+.@r*5; - Id: 24291 AegisName: S_Genetic_Weapon Name: Genetic Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"GN_CART_TORNADO",20+.@r*5; - Id: 24292 AegisName: S_Archbishop_Weapon Name: Arch Bishop Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",20+.@r*5; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",20+.@r*5; - Id: 24293 AegisName: S_Sura_weapon Name: Sura Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1*(2000+500*.@r); - Id: 24294 AegisName: S_Guillotine_Weapon Name: Guillotine Cross Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillUseSPrate,"GC_DARKILLUSION",(20+(.@r*3)); - Id: 24295 AegisName: S_Shadowchaser_Weapon Name: Shadow Chaser Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"SC_TRIANGLESHOT",20+.@r*5; - Id: 24296 AegisName: S_Warlock_Weapon Name: Warlock Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"WL_DRAINLIFE",20+.@r*5; - Id: 24297 AegisName: S_Sorcerer_Weapon Name: Sorcerer Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1*((300*.@r)+1000); - Id: 24298 AegisName: S_Ranger_Weapon Name: Ranger Shadow Weapon Type: Shadowgear Buy: 10 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"RA_CLUSTERBOMB",20+.@r*5; - Id: 24299 AegisName: S_Minstrel_Weapon Name: Maestro Shadow Weapon Type: Shadowgear Buy: 10 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG")); - Id: 24300 AegisName: S_Wanderer_Weapon Name: Wanderer Shadow Weapon Type: Shadowgear Buy: 10 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE")); - Id: 24301 AegisName: S_Runeknight_Shield Name: Rune Knight Shadow Shield Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"RK_ENCHANTBLADE"; - Id: 24302 AegisName: S_Royalguard_Shield Name: Royal Guard Shadow Shield Type: Shadowgear Buy: 10 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"LG_EARTHDRIVE",20+.@r*5; - Id: 24303 AegisName: S_Mechanic_Shield Name: Mechanic Shadow Shield Type: Shadowgear Buy: 10 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"NC_FLAMELAUNCHER",20+.@r*5; - Id: 24304 AegisName: S_Genetic_Shield Name: Genetic Shadow Shield Type: Shadowgear Buy: 10 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,3; bonus bDef,.@r*(getskilllv("GN_CART_TORNADO")+getskilllv("GN_CARTBOOST")+getskilllv("GN_CARTCANNON")); - Id: 24305 AegisName: S_Archbishop_Shield Name: Archbishop Shadow Shield Type: Shadowgear Buy: 10 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"AB_ADORAMUS",20+.@r*5; - Id: 24306 AegisName: S_Sura_Shield Name: Sura Shadow Shield Type: Shadowgear Buy: 10 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SR_SKYNETBLOW",20+.@r*5; - Id: 24307 AegisName: S_Guillotine_Shield Name: Guillotine Cross Shadow Shield Type: Shadowgear Buy: 10 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"GC_DARKCROW",-(10000+(2000*.@r)); - Id: 24308 AegisName: S_Shadowchaser_Shield Name: Shadow Chaser Shadow Shield Type: Shadowgear Buy: 10 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; autobonus3 "{ .@r = getrefine(); if (.@r>=9) { bonus bAspd,2; } else if (.@r>=7) { bonus bAspd,1; } bonus bAspdRate,.@r; }",1000,50000,"SC_AUTOSHADOWSPELL"; - Id: 24309 AegisName: S_Warlock_Shield Name: Warlock Shadow Shield Type: Shadowgear Buy: 10 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WL_EARTHSTRAIN",20+.@r*5; - Id: 24310 AegisName: S_Sorcerer_Shield Name: Sorcerer Shadow Shield Type: Shadowgear Buy: 10 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1*((300*.@r)+1000); - Id: 24311 AegisName: S_Ranger_Shield Name: Ranger Shadow Shield Type: Shadowgear Buy: 10 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"RA_AIMEDBOLT",(20+(5*.@r)); - Id: 24312 AegisName: S_Minstrel_Shield Name: Minstrel Shadow Shield Type: Shadowgear Buy: 10 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("MI_HARMONIZE")+getskilllv("MI_RUSH_WINDMILL")+getskilllv("MI_ECHOSONG"))/5; - Id: 24313 AegisName: S_Wanderer_Shield Name: Wanderer Shadow Shield Type: Shadowgear Buy: 10 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSPrate,3; bonus bMdef,.@r*(getskilllv("WA_SWING_DANCE")+getskilllv("WA_SYMPHONY_OF_LOVER")+getskilllv("WA_MOONLIT_SERENADE"))/5; - Id: 24314 AegisName: S_Ninja_Shield Name: Ninja Shadow Shield Type: Shadowgear Buy: 10 Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAspd,1; bonus bBaseAtk,(3*getskilllv("NJ_TOBIDOUGU")); autobonus3 "{ bonus bAspd,1; }",1000,50000,"NJ_NEN"; .@val = 4 * .@r; if (.@r >= 7) { .@val += 10; if (.@r >= 9) { .@val += 10; } } bonus2 bIgnoreDefClassRate,Class_Normal,.@val; bonus2 bIgnoreMdefClassRate,Class_Normal,.@val; - Id: 24315 AegisName: S_Taekwon_Shield Name: Taekwon Shadow Shield Type: Shadowgear Buy: 10 Jobs: SoulLinker: true StarGladiator: true Taekwon: true Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 3; if (.@r >= 7) { .@val += 2; if (.@r >= 9) { .@val += 3; } } bonus2 bIgnoreDefClassRate,Class_Normal,(3*(getskilllv("TK_HPTIME")+.@r)); bonus2 bIgnoreMdefClassRate,Class_Normal,(3*(getskilllv("TK_SPTIME")+.@r)); bonus bAtkRate,.@val; bonus bMatkRate,.@val; - Id: 24316 AegisName: S_DoramPhysical_Shield Name: Doram Physical Shadow Shield Type: Shadowgear Buy: 10 Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,3; autobonus3 "{ bonus bAspd,1; }",1000,50000,"SU_ARCLOUSEDASH"; bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-(.@r*200); if (.@r>=7) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; if (.@r>=9) bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; - Id: 24317 AegisName: S_DoramMagical_Shield Name: Doram Magical Shadow Shield Type: Shadowgear Buy: 10 Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; autobonus3 "{ bonus2 bSPRegenRate,5,5000; }",1000,30000,"SU_BUNCHOFSHRIMP"; bonus2 bSkillCooldown,"SU_CN_METEOR",-(.@r*100); if (.@r>=7) bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=9) bonus2 bSkillAtk,"SU_CN_METEOR",5; - Id: 24318 AegisName: S_SuperNovice_Shield Name: Super Novice Shadow Shield Type: Shadowgear Buy: 10 Jobs: Novice: true SuperNovice: true Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHP,1000; bonus bMaxSP,200; bonus bAspdRate,(2*getskilllv("TF_DOUBLE")+.@r); bonus bVariableCastrate,-(2*getskilllv("AC_OWL")+.@r); if (.@r>=7) { bonus bAtkRate,2; bonus bMatkRate,2; } if (.@r>=9) { bonus bAtkRate,3; bonus bMatkRate,3; } - Id: 24319 AegisName: S_Gunslinger_Shield Name: Gunslinger Shadow Shield Type: Shadowgear Buy: 10 Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritAtkRate,5; bonus bCritical,(getskilllv("GS_SINGLEACTION")*2)+.@r; if (.@r>=7) bonus bCritAtkRate,2; if (.@r>=9) bonus bCritAtkRate,3; - Id: 24320 AegisName: S2_Hasty_Shoes Name: Hasty Shadow Shoes II Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 1; if (.@r >= 7) { .@val += 1; } bonus bFlee,5; bonus bAtkRate,.@val; bonus bMatkRate,.@val; - Id: 24321 AegisName: S2_Bearers_Pendent Name: Bearer's Shadow Pendant II Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,5; if (.@r >= 7) { .@val = 3; } else { .@val = 1; } bonus bMaxHPrate,.@val; - Id: 24322 AegisName: S2_Gemstone_Earring Name: Gemstone Shadow Earring II Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 7) { .@val = 3; } else { .@val = 2; } bonus bMatk,5; bonus bUseSPrate,-.@val; - Id: 24323 AegisName: S2_Spell_Flow_Shield Name: Spellflow Shadow Shield II Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,1 + (.@r >= 7); bonus bUseSPrate,-1; - Id: 24324 AegisName: S2_Spiritual_Weapon Name: Spiritual Shadow Weapon II Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bSPrecovRate,5; bonus bAtkRate,1 + (.@r >= 7); - Id: 24325 AegisName: S2_Malicious_Armor Name: Malicious Shadow Armor II Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100+.@r*10; bonus bAtkRate,1 + (.@r >= 7); - Id: 24326 AegisName: S_Sigrun_Armor Name: Sigrun Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bLuk,1; bonus bHit,.@r; bonus bMaxHP,.@r*10; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bBaseAtk,15; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bLongAtkRate,3; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMatk,15; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bAspdRate,5; bonus bMaxHP,1000; } - Id: 24327 AegisName: S_Sigrun_Shield Name: Sigrun Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMdef,.@r; bonus bVit,1; bonus bDef,5*.@r; if (BaseClass == Job_Swordman || BaseClass == Job_Thief || (BaseClass == Job_Taekwon && BaseJob != Job_Soul_Linker)) { bonus bAspd,1; } else if (BaseClass == Job_Merchant || BaseClass == Job_Archer || BaseClass == Job_Gunslinger) { bonus bFlee,15; } else if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || BaseClass == Job_Ninja || BaseJob == Job_Soul_Linker) { bonus bMaxSPrate,2; bonus bHealPower,3; } else if (BaseClass == Job_Novice || BaseJob == Job_Summoner) { bonus bVariableCastrate,-5; bonus bMaxSP,300; } - Id: 24328 AegisName: S2_Force_Ex_Weapon Name: Force Executioner Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r; bonus bBaseAtk,.@r*2+5; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@r/2; - Id: 24329 AegisName: S2_Spirit_M_E_Weapon Name: Spirit Magic Executioner Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r*2+5; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@r/2; - Id: 24330 AegisName: S2_Caster_Armor Name: Caster Shadow Armor II Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bInt,3; bonus bSPrecovRate,20; bonus bVariableCastrate,-.@r/2; - Id: 24331 AegisName: S2_Reload_Armor Name: Reload Shadow Armor II Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bHPrecovRate,20; bonus bVit,3; bonus bDelayrate,-(.@r/3); - Id: 24332 AegisName: S_Critical_Shield Name: Critical Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritical,5+.@r/2; if (.@r >= 9) { bonus bCritAtkRate,2; } else if (.@r >= 7) { bonus bCritAtkRate,1; } - Id: 24333 AegisName: S_Critical_Shoes Name: Critical Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,5+.@r/2; if (.@r >= 9) { bonus bCritical,4; } else if (.@r >= 7) { bonus bCritical,2; } - Id: 24334 AegisName: S_MagicCompose_Armor Name: Magic Compose Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r > 1) { .@val = .@r/2; bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); bonus3 bAutoSpell,"MG_COLDBOLT",.@val,(5+.@r); bonus3 bAutoSpell,"MG_FIREBOLT",.@val,(5+.@r); bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",.@val,(5+.@r); bonus3 bAutoSpell,"WZ_EARTHSPIKE",.@val,(5+.@r); } - Id: 24335 AegisName: S2_Gemstone_Weapon Name: Gemstone Shadow Weapon II Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bHit,5; if (.@r >= 7) { bonus bUseSPrate,-3; } else { bonus bUseSPrate,-2; } - Id: 24336 AegisName: S2_Gemstone_Shield Name: Gemstone Shadow Shield II Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,5; if (.@r >= 7) { bonus bUseSPrate,-3; } else { bonus bUseSPrate,-2; } - Id: 24337 AegisName: S2_Bearers_Armor Name: Bearer's Shadow Armor II Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMdef,1; if (.@r >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } - Id: 24338 AegisName: S2_Bearers_Shoes Name: Bearer's Shadow Shoes II Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,50; if (.@r >= 7) { bonus bMaxHPrate,3; } else { bonus bMaxHPrate,1; } - Id: 24339 AegisName: S_AllMighty_Earring Name: Almighty Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAllStats,.@r; - Id: 24340 AegisName: S_AllMighty_Pendant Name: Almighty Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAllStats,.@r; - Id: 24341 AegisName: S_AllRace_Shoes Name: All Race Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { .@val = 5; } else if (.@r >= 7) { .@val = 3; } else { .@val = 2; } bonus2 bAddRace,RC_All,.@val; bonus2 bMagicAddRace,RC_All,.@val; - Id: 24342 AegisName: S_AllRace_Shield Name: All Race Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus2 bSubRace,RC_All,.@val; - Id: 24343 AegisName: S_Blitz_Weapon Name: Blitz Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bAspdRate,5+.@r/2; if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } - Id: 24344 AegisName: S_Blitz_Armor Name: Blitz Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,25+5*(.@r/2); if (.@r >= 7) { bonus bAspd,1; if (.@r >= 9) { bonus bDelayrate,-1; } } - Id: 24345 AegisName: S_Tempest_Shield Name: Tempest Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefClassRate,Class_Normal,5+(.@r/2); - Id: 24346 AegisName: S_Tempest_Shoes Name: Tempest Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefClassRate,Class_Normal,5+(.@r/2); - Id: 24347 AegisName: S_M_ExeHoly_Armor Name: Magic Executioner Holy Water Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreMdefRaceRate,RC_Undead,.@val; - Id: 24348 AegisName: S_M_ExoCorrupt_Armor Name: Magic Exorcist Corrupted Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Demon,.@val; bonus2 bIgnoreMdefRaceRate,RC_Angel,.@val; - Id: 24349 AegisName: S_M_DragonVib_Armor Name: Magic Vibration Dragon Killer Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Formless,.@val; bonus2 bIgnoreMdefRaceRate,RC_Dragon,.@val; - Id: 24350 AegisName: S_M_SciHunting_Armor Name: Magic Scissor Hunting Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Plant,.@val; bonus2 bIgnoreMdefRaceRate,RC_Brute,.@val; - Id: 24351 AegisName: S_M_FishInsect_Armor Name: Magic Fishing Insect Net Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Fish,.@val; bonus2 bIgnoreMdefRaceRate,RC_Insect,.@val; - Id: 24352 AegisName: S2_Plasterer's_Armor Name: Plasterer's Shadow Armor II Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Stone,100*.@r; - Id: 24353 AegisName: S2_Insomniac_Shoes Name: Insomniac Shadow Shoes II Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Sleep,100*.@r; - Id: 24354 AegisName: S2_Peerless_Armor Name: Peerless Shadow Armor II Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Silence,100*.@r; - Id: 24355 AegisName: S2_Adurate_Shoes Name: Adulate Shadow Shoes II Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Blind,100*.@r; - Id: 24356 AegisName: Unfreez_Weapon_S2 Name: Unfreezing Shadow Weapon II Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bDef,1; bonus2 bResEff,Eff_Freeze,100*.@r; - Id: 24357 AegisName: Vitality_Earing_S2 Name: Vitality Shadow Earring II Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Bleeding,100*.@r; - Id: 24358 AegisName: S2_Neutral_Weapon Name: Neutral Shadow Weapon II Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bDef,1; bonus2 bResEff,Eff_Stun,100*(.@r/2); - Id: 24359 AegisName: S2_Curse_Lift_Pendent Name: Uncursed Shadow Pendant II Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,1; bonus2 bResEff,Eff_Curse,100*.@r; - Id: 24360 AegisName: S_Tension_Weapon Name: Tension Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxHP,100+((.@r/2)*150); - Id: 24361 AegisName: S_Tension_Earring Name: Tension Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,1; bonus bBaseAtk,5; bonus bMaxHP,.@r*10+50*(.@r/2); - Id: 24362 AegisName: S_Tension_Pendent Name: Tension Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 2 + (.@r/3); bonus bBaseAtk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; - Id: 24363 AegisName: S_Elegant_Weapon Name: Elegant Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxHP,100+((.@r/2)*150); - Id: 24364 AegisName: S_Elegant_Earring Name: Elegant Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10+((.@r/2)*50); bonus bMaxHPrate,1; bonus bMatk,5; - Id: 24365 AegisName: S_Elegant_Pendent Name: Elegant Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 2 + (.@r/3); bonus bMatk,5; bonus bHealPower2,.@val; bonus bAddItemHealRate,.@val; - Id: 24366 AegisName: S_Healing_Shield Name: Healing Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } - Id: 24367 AegisName: S_Healing_Shoes Name: Healing Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,10; if (.@r >= 7) { .@val = 3; if (.@r >= 9) { .@val += 5; } bonus bHealPower,.@val; } - Id: 24368 AegisName: S_Restore_Earring Name: Restore Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bHPrecovRate,.@val; - Id: 24369 AegisName: S_Restore_Pendent Name: Restore Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { .@val = 50; } else if (.@r >= 7) { .@val = 30; } else { .@val = 20; } bonus bSPrecovRate,.@val; - Id: 24370 AegisName: S_MortalBlow_Weapon Name: Mortal Blow Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r >= 9) { .@val = 7; } else if (.@r >= 7) { .@val = 4; } else { .@val = 2; } bonus bCritAtkRate,.@val; - Id: 24371 AegisName: S_MortalBlow_Earring Name: Mortal Blow Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; - Id: 24372 AegisName: S_MortalBlow_Pendent Name: Mortal Blow Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { .@val = 3; } else if (.@r >= 7) { .@val = 2; } else { .@val = 1; } bonus bCritAtkRate,.@val; - Id: 24373 AegisName: S_Penetration_Shoes Name: Penetration Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2); - Id: 24374 AegisName: S_Penetration_Shield Name: Penetration Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2); - Id: 24375 AegisName: S_ExeHoly_Armor Name: Executioner Holy Water Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreDefRaceRate,RC_DemiHuman,.@val; bonus2 bIgnoreDefRaceRate,RC_Undead,.@val; - Id: 24376 AegisName: S_ExoCorrupt_Armor Name: Exorcist Corrupted Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreDefRaceRate,RC_Demon,.@val; bonus2 bIgnoreDefRaceRate,RC_Angel,.@val; - Id: 24377 AegisName: S_DragonVib_Armor Name: Vibration Dragon Killer Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreDefRaceRate,RC_Formless,.@val; bonus2 bIgnoreDefRaceRate,RC_Dragon,.@val; - Id: 24378 AegisName: S_SciHunting_Armor Name: Scissor Hunting Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreDefRaceRate,RC_Plant,.@val; bonus2 bIgnoreDefRaceRate,RC_Brute,.@val; - Id: 24379 AegisName: S_FishInsect_Armor Name: Fishing Insect Net Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5 + (.@r/2); bonus2 bIgnoreDefRaceRate,RC_Fish,.@val; bonus2 bIgnoreDefRaceRate,RC_Insect,.@val; - Id: 24380 AegisName: Sentimental_Weapone_S Name: Sentimental Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxSP,10+((.@r/2)*15); - Id: 24381 AegisName: Sentimental_Earring_S Name: Sentimental Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,(.@r/2)*5; bonus bMaxSPrate,1; bonus bBaseAtk,5; - Id: 24382 AegisName: Sentimental_Pendant_S Name: Sentimental Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bSPrecovRate,2+.@r/3; bonus bBaseAtk,5; - Id: 24383 AegisName: Enchanting_Weapone_S Name: Enchanting Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxSP,10+(.@r/2*15); - Id: 24384 AegisName: Enchanting_Earring_S Name: Enchanting Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,(.@r/2)*5; bonus bMaxSPrate,1; bonus bMatk,5; - Id: 24385 AegisName: Enchanting_Pendant_S Name: Enchanting Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bSPrecovRate,2+.@r/3; bonus bMatk,5; - Id: 24386 AegisName: S_Infinity_Weapon Name: Infinity Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; .@val = .@r/3; if (.@val) { bonus2 bAddSize,Size_All,.@val; bonus2 bMagicAddSize,Size_All,.@val; bonus2 bSubSize,Size_All,.@val; if (.@r >= 10) { bonus bNoSizeFix; } } - Id: 24387 AegisName: Rebeginer_Armor_S Name: Beginner's Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bInt,2; - Id: 24388 AegisName: Rebeginer_Shield_S Name: Beginner's Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bVit,2; - Id: 24389 AegisName: Rebeginer_Shoes_S Name: Beginner's Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bAgi,2; - Id: 24390 AegisName: Rebeginer_Weapon_S Name: Beginner's Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bStr,2; - Id: 24391 AegisName: Rebeginer_Earring_S Name: Beginner's Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bDex,2; - Id: 24392 AegisName: Rebeginer_Pendant_S Name: Beginner's Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bLuk,2; - Id: 24393 AegisName: S_Physical_Shoes Name: Physical Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { bonus bAspdRate,8; } else if (.@r >= 7) { bonus bAspdRate,5; } else { bonus bAspdRate,2; } - Id: 24394 AegisName: S_Physical_Shield Name: Physical Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10+200; if (.@r >= 9) { bonus bMaxHPrate,5; } else if (.@r >= 7) { bonus bMaxHPrate,2; } - Id: 24395 AegisName: S_Physical_Armor Name: Physical Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,20; if (.@r >= 9) { bonus bAtkRate,5; } else if (.@r >= 7) { bonus bAtkRate,2; } - Id: 24396 AegisName: S_Magical_Shoes Name: Magical Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r >= 9) { bonus bVariableCastrate,-8; } else if (.@r >= 7) { bonus bVariableCastrate,-5; } else { bonus bVariableCastrate,-2; } - Id: 24397 AegisName: S_Magical_Shield Name: Magical Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSP,100; if (.@r >= 9) { bonus bMaxSPrate,5; } else if (.@r >= 7) { bonus bMaxSPrate,2; } - Id: 24398 AegisName: S_Magical_Armor Name: Magical Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,20; if (.@r >= 9) { bonus bMatkRate,5; } else if (.@r >= 7) { bonus bMatkRate,2; } - Id: 24399 AegisName: S_ImmunedAthena_Shield Name: Immune Athena Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,50+20*(.@r/2); - Id: 24400 AegisName: S_HardChamption_Shoes Name: Hard Champion Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine()/2; bonus bMaxHP,.@r*10+200; bonus bMaxSP,100; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; - Id: 24401 AegisName: S_KingbirdAncient_Armor Name: Kingbird Ancient Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,15; bonus bLongAtkRate,.@r/2; if (.@r >= 7) { bonus bHit,30; } else { bonus bHit,15; } - Id: 24402 AegisName: S_Rebellion_Armor Name: Rebellion Shadow Armor Type: Shadowgear Buy: 10 Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"RL_HEAT_BARREL",-1000*(1+.@r/2); - Id: 24403 AegisName: S_Kagerou_Armor Name: Kagerou Shadow Armor Type: Shadowgear Buy: 10 Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"KO_HUUMARANKA",20+.@r*5; - Id: 24404 AegisName: S_Oboro_Armor Name: Oboro Shadow Armor Type: Shadowgear Buy: 10 Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"NJ_KOUENKA",20+.@r*5; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20+.@r*5; bonus2 bSkillAtk,"NJ_HUUJIN",20+.@r*5; - Id: 24405 AegisName: S_Rebellion_Shoes Name: Rebellion Shadow Shoes Type: Shadowgear Buy: 10 Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20+.@r*5; - Id: 24406 AegisName: S_Kagerou_Shoes Name: Kagerou Shadow Shoes Type: Shadowgear Buy: 10 Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"KO_HAPPOKUNAI",20+.@r*5; - Id: 24407 AegisName: S_Oboro_Shoes Name: Oboro Shadow Shoes Type: Shadowgear Buy: 10 Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"KO_ZANZOU",-2000-(1000*(.@r/2)); - Id: 24408 AegisName: S_DoramPhysical_Armor Name: Doram Physical Shadow Armor Type: Shadowgear Buy: 10 Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",.@r*3; - Id: 24409 AegisName: S_DoramPhysical_Shoes Name: Doram Physical Shadow Shoes Type: Shadowgear Buy: 10 Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SU_HISS",-3000*(1+.@r/2); - Id: 24410 AegisName: S_DoramMagical_Armor Name: Doram Magical Shadow Armor Type: Shadowgear Buy: 10 Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@r*3; - Id: 24411 AegisName: S_DoramMagical_Shoes Name: Doram Magical Shadow Shoes Type: Shadowgear Buy: 10 Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SU_CHATTERING",-3000*(1+.@r/2); - Id: 24412 AegisName: S_Star_Emperor_Armor Name: Star Emperor Shadow Armor Type: Shadowgear Buy: 10 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SJ_NEWMOONKICK",20; bonus2 bSkillAtk,"SJ_FULLMOONKICK",.@r*3; - Id: 24413 AegisName: S_Star_Emperor_Shoes Name: Star Emperor Shadow Shoes Type: Shadowgear Buy: 10 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SJ_DOCUMENT",-3000*(1+.@r/2); - Id: 24414 AegisName: S_Soul_Reaper_Armor Name: Soul Reaper Shadow Armor Type: Shadowgear Buy: 10 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SP_SWHOO",20; bonus2 bSkillAtk,"SP_SPA",.@r*3; - Id: 24415 AegisName: S_Soul_Reaper_Shoes Name: Soul Reaper Shadow Shoes Type: Shadowgear Buy: 10 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SP_SOULREAPER",-3000-1000*(.@r/2); - Id: 24416 AegisName: S_Timeoverload_Weapon Name: Temporal Transcendent Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bCritAtkRate,7; - Id: 24417 AegisName: S_Timeoverload_Armor Name: Temporal Transcendent Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bAspd,1; - Id: 24418 AegisName: S_Timeoverload_Shield Name: Temporal Transcendent Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bVariableCastrate,-10; - Id: 24419 AegisName: S_Timeoverload_Shoes Name: Temporal Transcendent Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bAspdRate,7; - Id: 24420 AegisName: S_Timeoverload_Earing Name: Temporal Transcendent Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bMatk,15; - Id: 24421 AegisName: S_Timeoverload_Pandent Name: Temporal Transcendent Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,getrefine()*10; bonus bBaseAtk,15; - Id: 24423 AegisName: S_Tempest_Weapon Name: Tempest Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefClassRate,Class_Normal,5+(.@r/2); - Id: 24424 AegisName: S_Tempest_Armor Name: Tempest Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefClassRate,Class_Normal,5+(.@r/2); - Id: 24425 AegisName: S_PerfectSize_Weapon Name: Perfect Size Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | bonus2 bAddSize,Size_All,2; bonus2 bMagicAddSize,Size_All,2; .@r = getrefine(); bonus bBaseAtk,.@r*4; bonus bMatk,.@r; if (.@r >= 7) { bonus2 bAddSize,Size_All,2; bonus2 bMagicAddSize,Size_All,2; } if (.@r >= 9) { bonus2 bAddSize,Size_All,3; bonus2 bMagicAddSize,Size_All,3; } - Id: 24426 AegisName: S_PerfectSize_Armor Name: Perfect Size Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true Refineable: true Script: | bonus2 bSubSize,Size_All,2; .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,.@r*10; if (.@r >= 7) { bonus2 bSubSize,Size_All,2; } if (.@r >= 9) { bonus2 bSubSize,Size_All,3; } - Id: 24427 AegisName: S_M_Exo_Co_Weapon Name: Magic Exorcist Current Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Demon,5+.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Angel,5+.@r/2; - Id: 24428 AegisName: S_M_Viv_Dr_Weapon Name: Magic Vibration Dragon Killer Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Formless,5+.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Dragon,5+.@r/2; - Id: 24429 AegisName: S_M_Sci_Hu_Weapon Name: Magic Caesars Hunting Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Brute,5+.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Plant,5+.@r/2; - Id: 24430 AegisName: S_M_Fis_In_Weapon Name: Magic Fishing Insect Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_Fish,5+.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Insect,5+.@r/2; - Id: 24431 AegisName: S_M_Exe_Ho_Weapon Name: Magic Executioner Holy Water Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+.@r/2; bonus2 bIgnoreMdefRaceRate,RC_Undead,5+.@r/2; - Id: 24432 AegisName: S_Penetration_Weapon Name: Penetration Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefClassRate,Class_Normal,5+.@r/2; - Id: 24433 AegisName: S_Penetration_Armor Name: Penetration Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefClassRate,Class_Normal,5+.@r/2; - Id: 24434 AegisName: S_Exe_Ho_Weapon Name: Executioner Holy Water Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Undead,5+.@r/2; - Id: 24435 AegisName: S_Fis_In_Weapon Name: Fishing Insect Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Fish,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Insect,5+.@r/2; - Id: 24436 AegisName: S_Sci_Hu_Weapon Name: Scissors Hunting Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Brute,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Plant,5+.@r/2; - Id: 24437 AegisName: S_Viv_Dr_Weapon Name: Vibration Dragon Killer Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Formless,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Dragon,5+.@r/2; - Id: 24438 AegisName: S_Exo_Co_Weapon Name: Exorcist Corrupt Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bIgnoreDefRaceRate,RC_Demon,5+.@r/2; bonus2 bIgnoreDefRaceRate,RC_Angel,5+.@r/2; - Id: 24439 AegisName: S_Hasty_Weapon Name: Hasty Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bAtkRate,1+.@r/2; bonus bMatkRate,1+.@r/2; if (.@r >= 7) { bonus bDef,15; bonus bFlee,15; } if (.@r >= 10) bonus bSpeedRate,25; - Id: 24440 AegisName: S_Sonic_Armor Name: Sonic Shadow Armor Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RK_SONICWAVE",5+2*(.@r/2); - Id: 24441 AegisName: S_Sonic_Shield Name: Sonic Shadow Shield Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24442 AegisName: S_Sonic_Shoes Name: Sonic Shadow Shoes Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"RK_SONICWAVE",2+(.@r/2); - Id: 24443 AegisName: S_Ignition_Weapon Name: Ignition Shadow Weapon Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus3 bAutoSpell,"RK_IGNITIONBREAK",max(3,getskilllv("RK_IGNITIONBREAK")),10+(.@r>=7?10:0)+(.@r>=9?20:0); - Id: 24444 AegisName: S_Ignition_Pendant Name: Ignition Shadow Pendant Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",5+2*(.@r/2); - Id: 24445 AegisName: S_Ignition_Earing Name: Ignition Shadow Earring Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-200-100*(.@r/3); - Id: 24446 AegisName: S_W_Breath_Armor Name: Cold Breath Shadow Armor Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",5+2*(.@r/2); - Id: 24447 AegisName: S_W_Breath_Shield Name: Cold Breath Shadow Shield Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24448 AegisName: S_W_Breath_Shoes Name: Cold Breath Shadow Shoes Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"RK_DRAGONBREATH_WATER",2+(.@r/2); - Id: 24449 AegisName: S_F_Breath_Weapon Name: Fire Breath Shadow Weapon Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24450 AegisName: S_F_Breath_Pendant Name: Fire Breath Shadow Pendant Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RK_DRAGONBREATH",5+2*(.@r/2); - Id: 24451 AegisName: S_F_Breath_Earing Name: Fire Breath Shadow Earring Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"RK_DRAGONBREATH",2+(.@r/2); - Id: 24452 AegisName: S_Cluster_Armor Name: Cluster Shadow Armor Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RA_CLUSTERBOMB",5+2*(.@r/2); - Id: 24453 AegisName: S_Cluster_Shield Name: Cluster Shadow Shield Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RA_CLUSTERBOMB",3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24454 AegisName: S_Cluster_Shoes Name: Cluster Shadow Shoes Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RA_CLUSTERBOMB",5+3*(.@r/2); - Id: 24455 AegisName: S_Aimed_Weapon Name: Aimed Shadow Weapon Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24456 AegisName: S_Aimed_Pendant Name: Aimed Shadow Pendant Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RA_AIMEDBOLT",5+2*(.@r/2); - Id: 24457 AegisName: S_Aimed_Earing Name: Aimed Shadow Earring Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,3+2*(.@r/3); - Id: 24458 AegisName: S_Arrow_Armor Name: Arrow Shadow Armor Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RA_ARROWSTORM",5+2*(.@r/2); - Id: 24459 AegisName: S_Arrow_Shield Name: Arrow Shadow Shield Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24460 AegisName: S_Arrow_Shoes Name: Arrow Shadow Shoes Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"RA_ARROWSTORM",2+(.@r/2); - Id: 24461 AegisName: S_Shooting_Weapon Name: Shooting Shadow Weapon Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24462 AegisName: S_Shooting_Pendant Name: Shooting Shadow Pendant Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SN_SHARPSHOOTING",5+2*(.@r/2); - Id: 24463 AegisName: S_Shooting_Earing Name: Shooting Shadow Earring Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SN_SHARPSHOOTING",2+(.@r/2); - Id: 24464 AegisName: S_Tornado_Armor Name: Tornado Shadow Armor Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"NC_AXETORNADO",5+2*(.@r/2); - Id: 24465 AegisName: S_Tornado_Shield Name: Tornado Shadow Shield Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24466 AegisName: S_Tornado_Shoes Name: Tornado Shadow Shoes Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"NC_AXETORNADO",2+(.@r/2); - Id: 24467 AegisName: S_Boomerang_Weapon Name: Boomerang Shadow Weapon Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24468 AegisName: S_Boomerang_Pendant Name: Boomerang Shadow Pendant Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"NC_AXEBOOMERANG",5+2*(.@r/2); - Id: 24469 AegisName: S_Boomerang_Earing Name: Boomerang Shadow Earring Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"NC_AXEBOOMERANG",-100-100*(.@r/4); - Id: 24470 AegisName: S_Vulcan_Armor Name: Vulcan Shadow Armor Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"NC_VULCANARM",5+2*(.@r/2); - Id: 24471 AegisName: S_Vulcan_Shield Name: Vulcan Shadow Shield Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24472 AegisName: S_Vulcan_Shoes Name: Vulcan Shadow Shoes Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"NC_VULCANARM",2+(.@r/2); - Id: 24473 AegisName: S_Arms_Weapon Name: Arm Shadow Weapon Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,3+(.@r>=7?3:0)+(.@r>=9?4:0); - Id: 24474 AegisName: S_Arms_Pendant Name: Arm Shadow Pendant Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"NC_ARMSCANNON",5+2*(.@r/2); - Id: 24475 AegisName: S_Arms_Earing Name: Arm Shadow Earring Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"NC_ARMSCANNON",2+(.@r/2); - Id: 24476 AegisName: S_Rampage_Armor Name: Rampage Shadow Armor Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",5+(.@r/2)*2; - Id: 24477 AegisName: S_Rampage_Shield Name: Rampage Shadow Shield Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24478 AegisName: S_Rampage_Shoes Name: Rampage Shadow Shoes Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-200-(.@r/3)*100; - Id: 24479 AegisName: S_Skynetblow_Weapon Name: Sky Blow Shadow Weapon Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24480 AegisName: S_Skynetblow_Pendant Name: Sky Blow Shadow Pendant Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SR_SKYNETBLOW",5+(.@r/2)*2; - Id: 24481 AegisName: S_Skynetblow_Earing Name: Sky Net Blow Shadow Earring Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,2+.@r/3; - Id: 24482 AegisName: S_Knucklearrow_Armor Name: Knuckle Shadow Armor Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",5+(.@r/2)*2; - Id: 24483 AegisName: S_Knucklearrow_Shield Name: Knuckle Shadow Shield Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24484 AegisName: S_Knucklearrow_Shoes Name: Knuckle Shadow Shoes Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,3+(.@r/3)*2; - Id: 24485 AegisName: S_TigerCannon_Weapon Name: Tiger Shadow Weapon Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24486 AegisName: S_Tigercannon_Pendant Name: Tiger Shadow Pendant Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SR_TIGERCANNON",5+(.@r/2)*2; - Id: 24487 AegisName: S_Tigercannon_Earing Name: Tiger Shadow Earring Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SR_TIGERCANNON",2+.@r/2; - Id: 24488 AegisName: S_Duplelight_Armor Name: Duplex Shadow Armor Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",5+(.@r/2)*2; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",5+(.@r/2)*2; - Id: 24489 AegisName: S_Duplelight_Shield Name: Duplex Shadow Shield Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,5; bonus2 bMagicAtkEle,Ele_Holy,5; } else if (.@r>=7) { bonus2 bAddSize,Size_All,3; bonus2 bMagicAtkEle,Ele_Holy,3; } else { bonus2 bAddSize,Size_All,1; bonus2 bMagicAtkEle,Ele_Holy,1; } - Id: 24490 AegisName: S_Duplelight_Shoes Name: Duplex Shadow Shoes Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritAtkRate,5+.@r/2; - Id: 24491 AegisName: S_Adoramus_Weapon Name: Adora Shadow Weapon Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,6; } else { bonus2 bMagicAtkEle,Ele_Holy,3; } - Id: 24492 AegisName: S_Adoramus_Pendant Name: Adora Shadow Pendant Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"AB_ADORAMUS",5+(.@r/2)*2; - Id: 24493 AegisName: S_Adoramus_Earing Name: Adora Shadow Earring Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"AB_ADORAMUS",2+.@r/2; - Id: 24494 AegisName: S_Judex_Armor Name: Judex Shadow Armor Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"AB_JUDEX",5+(.@r/2)*2; - Id: 24495 AegisName: S_Judex_Shield Name: Judex Shadow Shield Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,6; } else { bonus2 bMagicAtkEle,Ele_Holy,3; } - Id: 24496 AegisName: S_Judex_Shoes Name: Judex Shadow Shoes Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAddSize,Size_All,3+(.@r/3)*2; - Id: 24497 AegisName: S_Magnus_Weapon Name: Magnus Shadow Weapon Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,6; } else { bonus2 bMagicAtkEle,Ele_Holy,3; } - Id: 24498 AegisName: S_Magnus_Pendant Name: Magnus Shadow Pendant Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"PR_MAGNUS",5+(.@r/2)*2; - Id: 24499 AegisName: S_Magnus_Earing Name: Magnus Shadow Earring Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"PR_MAGNUS",2+.@r/2; - Id: 24500 AegisName: S_Rainstorm_Armor Name: Rainstorm Shadow Armor Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",5+(.@r/2)*2; - Id: 24501 AegisName: S_Rainstorm_Shield Name: Rainstorm Shadow Shield Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24502 AegisName: S_Rainstorm_Shoes Name: Rainstorm Shadow Shoes Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",2+.@r/2; - Id: 24503 AegisName: S_Arrowvulcan_Weapon Name: Arrow Vulcan Shadow Weapon Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24504 AegisName: S_Arrowvulcan_Pendant Name: Arrow Vulcan Shadow Pendant Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"CG_ARROWVULCAN",5+(.@r/2)*2; - Id: 24505 AegisName: S_Arrowvulcan_Earing Name: Arrow Vulcan Shadow Earring Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"CG_ARROWVULCAN",-200-(.@r/3)*100; - Id: 24506 AegisName: S_Metalic_Armor Name: Metallic Shadow Armor Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WM_METALICSOUND",5+(.@r/2)*2; - Id: 24507 AegisName: S_Metalic_Shield Name: Metallic Shadow Shield Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,6; } else { bonus2 bMagicAtkEle,Ele_Neutral,3; } - Id: 24508 AegisName: S_Metalic_Shoes Name: Metallic Shadow Shoes Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"WM_METALICSOUND",2+.@r/2; - Id: 24509 AegisName: S_Reverberation_Weapon Name: Vibrating Shadow Weapon Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,6; } else { bonus2 bMagicAtkEle,Ele_Neutral,3; } - Id: 24510 AegisName: S_Reverberation_Pendant Name: Vibration Shadow Pendant Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WM_REVERBERATION",5+(.@r/2)*2; - Id: 24511 AegisName: S_Reverberation_Earing Name: Vibration Shadow Earring Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"WM_REVERBERATION",2+.@r/2; - Id: 24512 AegisName: S_Jack_Armor Name: Jack Shadow Armor Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WL_JACKFROST",5+.@r*2; - Id: 24513 AegisName: S_Jack_Shield Name: Jack Shadow Shield Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Water,6; } else { bonus2 bMagicAtkEle,Ele_Water,3; } - Id: 24514 AegisName: S_Jack_Shoes Name: Jack Shadow Shoes Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"WL_JACKFROST",-1000-(.@r/2)*100; - Id: 24515 AegisName: S_Strain_Weapon Name: Strain Shadow Weapon Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Earth,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,6; } else { bonus2 bMagicAtkEle,Ele_Earth,3; } - Id: 24516 AegisName: S_Strain_Pendant Name: Strain Shadow Pendant Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WL_EARTHSTRAIN",5+.@r*2; - Id: 24517 AegisName: S_Strain_Earing Name: Strain Shadow Earring Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-200-(.@r/3)*100; - Id: 24518 AegisName: S_Crimson_Armor Name: Crimson Shadow Armor Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WL_CRIMSONROCK",5+.@r*2; - Id: 24519 AegisName: S_Crimson_Shield Name: Crimson Shadow Shield Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,6; } else { bonus2 bMagicAtkEle,Ele_Fire,3; } - Id: 24520 AegisName: S_Crimson_Shoes Name: Crimson Shadow Shoes Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"WL_CRIMSONROCK",4+.@r/2; - Id: 24521 AegisName: S_Chain_Weapon Name: Chain Shadow Weapon Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Wind,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Wind,6; } else { bonus2 bMagicAtkEle,Ele_Wind,3; } - Id: 24522 AegisName: S_Chain_Pendant Name: Chain Shadow Pendant Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",5+.@r*2; - Id: 24523 AegisName: S_Chain_Earing Name: Chain Shadow Earring Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"WL_CHAINLIGHTNING",4+.@r/2; - Id: 24524 AegisName: S_Triangle_Armor Name: Triangle Shadow Armor Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",5+(.@r/2)*2; - Id: 24525 AegisName: S_Triangle_Shield Name: Triangle Shadow Shield Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24526 AegisName: S_Triangle_Shoes Name: Triangle Shadow Shoes Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SC_TRIANGLESHOT",2+.@r/2; - Id: 24527 AegisName: S_Shadowspell_Weapon Name: Shadowspell Shadow Weapon Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",3,1+(.@r>=7?10:0)+(.@r>=9?20:0); - Id: 24528 AegisName: S_Shadowspell_Pendant Name: Shadowspell Shadow Pendant Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WZ_METEOR",5+(.@r/2)*3; - Id: 24529 AegisName: S_Shadowspell_Earing Name: Shadowspell Shadow Earring Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAtkEle,Ele_Neutral,2+2*(.@r/3); bonus2 bMagicAtkEle,Ele_Fire,2+2*(.@r/3); - Id: 24530 AegisName: S_Menace_Armor Name: Menace Shadow Armor Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SC_FATALMENACE",5+(.@r/2)*2; - Id: 24531 AegisName: S_Menace_Shield Name: Menace Shadow Shield Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24532 AegisName: S_Menace_Shoes Name: Menace Shadow Shoes Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SC_FATALMENACE",2+.@r/2; - Id: 24533 AegisName: S_Paint_Weapon Name: Paint Shadow Weapon Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24534 AegisName: S_Paint_Pendant Name: Paint Shadow Pendant Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SC_FEINTBOMB",5+(.@r/2)*2; - Id: 24535 AegisName: S_Paint_Earing Name: Paint Shadow Earring Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SC_FEINTBOMB",-200-100*(.@r/3); - Id: 24536 AegisName: S_Rolling_Armor Name: Rolling Shadow Armor Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",5+(.@r/2)*2; - Id: 24537 AegisName: S_Rolling_Shield Name: Rolling Shadow Shield Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24538 AegisName: S_Rolling_Shoes Name: Rolling Shadow Shoes Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"GC_ROLLINGCUTTER",2+.@r/2; - Id: 24539 AegisName: S_Katar_Weapon Name: Katar Shadow Weapon Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { autobonus "{ bonus2 bAddSize,Size_All,15; bonus bCritAtkRate,15; }",1,10000,BF_WEAPON; } else if (.@r>=7) { autobonus "{ bonus2 bAddSize,Size_All,15; bonus bCritAtkRate,15; }",1,5000,BF_WEAPON; } else { autobonus "{ bonus2 bAddSize,Size_All,10; bonus bCritAtkRate,10; }",1,5000,BF_WEAPON; } - Id: 24540 AegisName: S_Katar_Pendant Name: Katar Shadow Pendant Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritAtkRate,5+.@r/2; - Id: 24541 AegisName: S_Katar_Earing Name: Katar Shadow Earring Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24542 AegisName: S_Slash_Armor Name: Slash Shadow Armor Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"GC_COUNTERSLASH",5+(.@r/2)*2; - Id: 24543 AegisName: S_Slash_Shield Name: Slash Shadow Shield Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24544 AegisName: S_Slash_Shoes Name: Slash Shadow Shoes Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"GC_COUNTERSLASH",2+.@r/2; - Id: 24545 AegisName: S_Ripper_Weapon Name: Ripper Slasher Shadow Weapon Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24546 AegisName: S_Ripper_Pendant Name: Ripper Slasher Shadow Pendant Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",5+(.@r/2)*2; - Id: 24547 AegisName: S_Ripper_Earing Name: Ripper Slasher Shadow Earring Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24548 AegisName: S_Dust_Armor Name: Dust Shadow Armor Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",5+.@r*2; - Id: 24549 AegisName: S_Dust_Shield Name: Dust Shadow Shield Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Water,6; } else { bonus2 bMagicAtkEle,Ele_Water,3; } - Id: 24550 AegisName: S_Dust_Shoes Name: Dust Shadow Shoes Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SO_DIAMONDDUST",4+.@r/2; - Id: 24551 AegisName: S_Grave_Weapon Name: Grave Shadow Weapon Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Earth,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,6; } else { bonus2 bMagicAtkEle,Ele_Earth,3; } - Id: 24552 AegisName: S_Grave_Pendant Name: Grave Shadow Pendant Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SO_EARTHGRAVE",5+.@r*2; - Id: 24553 AegisName: S_Grave_Earing Name: Grave Shadow Earring Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-200-100*(.@r/3); - Id: 24554 AegisName: S_Psychic_Armor Name: Psychic Shadow Armor Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",5+.@r*2; - Id: 24555 AegisName: S_Psychic_Shield Name: Psychic Shadow Shield Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,6; } else { bonus2 bMagicAtkEle,Ele_Neutral,3; } - Id: 24556 AegisName: S_Psychic_Shoes Name: Psychic Shadow Shoes Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SO_PSYCHIC_WAVE",4+.@r/2; - Id: 24557 AegisName: S_Varetyr_Weapon Name: Varetyr Shadow Weapon Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Wind,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Wind,6; } else { bonus2 bMagicAtkEle,Ele_Wind,3; } - Id: 24558 AegisName: S_Varetyr_Pendant Name: Varetyr Shadow Pendant Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",5+.@r*2; - Id: 24559 AegisName: S_Varetyr_Earing Name: Varetyr Shadow Earring Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"SO_VARETYR_SPEAR",4+.@r/2; - Id: 24560 AegisName: S_Cart_Tornado_Armor Name: Tornado Shadow Armor Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"GN_CART_TORNADO",5+(.@r/2)*2; - Id: 24561 AegisName: S_Cart_Tornado_Shield Name: Tornado Shadow Shield Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24562 AegisName: S_Cart_Tornado_Shoes Name: Tornado Shadow Shoes Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillUseSPrate,"GN_CART_TORNADO",2+.@r/2; - Id: 24563 AegisName: S_Cannon_Cart_Weapon Name: Cannon Cart Shadow Weapon Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24564 AegisName: S_Cannon_Cart_Pendant Name: Cannon Cart Shadow Pendant Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"GN_CARTCANNON",5+(.@r/2)*2; - Id: 24565 AegisName: S_Cannon_Cart_Earing Name: Cannon Cart Shadow Earring Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24566 AegisName: S_Spore_Bomb_Armor Name: Spore Bomb Shadow Armor Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",5+(.@r/2)*2; - Id: 24567 AegisName: S_Spore_Bomb_Shield Name: Spore Bomb Shadow Shield Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24568 AegisName: S_Spore_Bomb_Shoes Name: Spore Bomb Shadow Shoes Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-200-100*(.@r/3); - Id: 24569 AegisName: S_Crazy_Weapon Name: Crazy Shadow Weapon Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24570 AegisName: S_Crazy_Pendant Name: Crazy Shadow Pendant Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",5+(.@r/2)*2; - Id: 24571 AegisName: S_Crazy_Earing Name: Crazy Shadow Earring Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"GN_CRAZYWEED",-200-100*(.@r/3); - Id: 24572 AegisName: S_Brand_Armor Name: Brand Shadow Armor Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"LG_OVERBRAND",5+(.@r/2)*2; - Id: 24573 AegisName: S_Brand_Shield Name: Brand Shadow Shield Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24574 AegisName: S_Brand_Shoes Name: Brand Shadow Shoes Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"LG_OVERBRAND",5; bonus bDelayrate,-(.@r/3); - Id: 24575 AegisName: S_Chain_Press_Weapon Name: Chain Press Shadow Weapon Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24576 AegisName: S_Chain_Press_Pendant Name: Chain Press Shadow Pendant Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"LG_SHIELDPRESS",5+(.@r/2)*2; - Id: 24577 AegisName: S_Chain_Press_Earing Name: Chain Press Shadow Earring Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"PA_SHIELDCHAIN",5+(.@r/2)*2; - Id: 24578 AegisName: S_Banish_Cannon_Armor Name: Banishing Cannon Shadow Armor Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",5; bonus2 bSkillAtk,"LG_CANNONSPEAR",(.@r/2)*2; - Id: 24579 AegisName: S_Banish_Cannon_Shield Name: Banishing Cannon Shadow Shield Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; } else if (.@r>=7) { bonus2 bAddSize,Size_All,6; } else { bonus2 bAddSize,Size_All,3; } - Id: 24580 AegisName: S_Banish_Cannon_Shoes Name: Banishing Cannon Shadow Shoes Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"LG_CANNONSPEAR",-200-100*(.@r/3); - Id: 24581 AegisName: S_Genesis_Weapon Name: Genesis Shadow Weapon Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,6; } else { bonus2 bMagicAtkEle,Ele_Holy,3; } - Id: 24582 AegisName: S_Genesis_Pendant Name: Genesis Shadow Pendant Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"LG_RAYOFGENESIS",5+(.@r/2)*2; - Id: 24583 AegisName: S_Genesis_Earing Name: Genesis Shadow Earring Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-200-100*(.@r/3); - Id: 24584 AegisName: S_Booster_Armor Name: Booster Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bAspd,1; - Id: 24585 AegisName: S_Booster_Shield Name: Booster Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bVariableCastrate,-10; - Id: 24586 AegisName: S_Booster_Shoes Name: Booster Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bAspdRate,7; - Id: 24587 AegisName: S_Booster_Earing Name: Booster Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,15; bonus bMaxHP,100; - Id: 24588 AegisName: S_Booster_Pandent Name: Booster Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bBaseAtk,15; - Id: 24589 AegisName: S_RK_B_Weapon Name: Rune Knight's Booster Shadow Weapon Type: ShadowGear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24590 AegisName: S_LG_B_Weapon Name: Royal Guard's Booster Shadow Weapon Type: ShadowGear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24591 AegisName: S_NC_B_Weapon Name: Mechanic's Booster Shadow Weapon Type: ShadowGear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24592 AegisName: S_GN_B_Weapon Name: Genetic's Booster Shadow Weapon Type: ShadowGear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24593 AegisName: S_GC_B_Weapon Name: Guillotine Cross' Booster Shadow Weapon Type: ShadowGear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24594 AegisName: S_SC_B_Weapon Name: Shadow Chaser's Booster Shadow Weapon Type: ShadowGear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24595 AegisName: S_WL_B_Weapon Name: Warlock's Booster Shadow Weapon Type: ShadowGear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24596 AegisName: S_SO_B_Weapon Name: Sorcerer's Booster Shadow Weapon Type: ShadowGear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24597 AegisName: S_AB_B_Weapon Name: Archbishop's Booster Shadow Weapon Type: ShadowGear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24598 AegisName: S_SR_B_Weapon Name: Sura's Booster Shadow Weapon Type: ShadowGear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24599 AegisName: S_RA_B_Weapon Name: Ranger's Booster Shadow Weapon Type: ShadowGear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24600 AegisName: S_WM_B_Weapon Name: Minstrel&Wanderer's Booster Shadow Weapon Type: ShadowGear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24601 AegisName: S_Tail_Dragon_Weapon Name: Tail Dragon Shadow Weapon Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24602 AegisName: S_Tail_Dragon_Shield Name: Tail Dragon Shadow Shield Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RL_D_TAIL",5+(.@r/2)*2; - Id: 24603 AegisName: S_Tail_Dragon_Armor Name: Tail Dragon Shadow Armor Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24604 AegisName: S_Flare_Dance_Earing Name: Flare Dance Shadow Earring Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,5; if (.@r>=7) { bonus bMaxHPrate,5; } if (.@r>=9) { bonus bLongAtkRate,7; bonus bMaxHP,2000; bonus bMaxSP,200; } - Id: 24605 AegisName: S_Flare_Dance_Pendant Name: Flare Dance Shadow Pendant Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RL_FIREDANCE",5+(.@r/2)*2; - Id: 24606 AegisName: S_Flare_Dance_Shoes Name: Flare Dance Shadow Shoes Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24607 AegisName: S_God_Hammer_Weapon Name: God Hammer Shadow Weapon Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24608 AegisName: S_God_Hammer_Shield Name: God Hammer Shadow Shield Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",5+(.@r/2)*2; - Id: 24609 AegisName: S_God_Hammer_Armor Name: God Hammer Shadow Armor Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_All,5+.@r/2; - Id: 24610 AegisName: S_Shatter_Buster_Earing Name: Shatter Buster Shadow Earring Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSPrate,5; if (.@r>=7) { bonus bLongAtkRate,7; } if (.@r>=9) { bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; } - Id: 24611 AegisName: S_Shatter_B_Pendant Name: Shatter Buster Shadow Pendant Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RL_S_STORM",5+(.@r/2)*2; - Id: 24612 AegisName: S_Shatter_Buster_Shoes Name: Shatter Buster Shadow Shoes Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RL_BANISHING_BUSTER",5+(.@r/2)*2; - Id: 24613 AegisName: S_Trip_Weapon Name: Trip Shadow Weapon Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,3; if (.@r>=7) { bonus bLongAtkRate,3; } if (.@r>=9) { bonus bMaxHPrate,10; } - Id: 24614 AegisName: S_Trip_Shield Name: Trip Shadow Shield Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RL_R_TRIP",5+(.@r/2)*2; - Id: 24615 AegisName: S_Trip_Armor Name: Trip Shadow Armor Type: ShadowGear Jobs: Gunslinger: true Rebellion: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24616 AegisName: S_Super_Magic_Shield Name: Super Magic Shadow Shield Type: ShadowGear Jobs: Novice: true SuperNovice: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = 5; if (.@r>=7) { .@val += 5; } if (.@r>=9) { skill "HW_GRAVITATION",getskilllv("WZ_WATERBALL"); } bonus2 bMagicAtkEle,Ele_Neutral,.@val; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Wind,.@val; - Id: 24617 AegisName: S_Super_Magic_Armor Name: Super Magic Shadow Armor Type: ShadowGear Jobs: Novice: true SuperNovice: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",10+4*(.@r/2); bonus2 bSkillAtk,"MG_FIREBOLT",10+4*(.@r/2); bonus2 bSkillAtk,"MG_COLDBOLT",10+4*(.@r/2); - Id: 24618 AegisName: S_Super_Magic_Shoes Name: Super Magic Shadow Shoes Type: ShadowGear Jobs: Novice: true SuperNovice: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"WZ_VERMILION",10+4*(.@r/2); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10+4*(.@r/2); bonus2 bSkillAtk,"WZ_STORMGUST",10+4*(.@r/2); bonus2 bSkillAtk,"WZ_METEOR",10+4*(.@r/2); - Id: 24619 AegisName: S_Super_Power_Weapon Name: Super Power Shadow Weapon Type: ShadowGear Jobs: Novice: true SuperNovice: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,5; bonus bShortAtkRate,5; if (.@r>=7) { bonus bLongAtkRate,5; bonus bShortAtkRate,5; } if (.@r>=9) { skill "BS_WEAPONRESEARCH",getskilllv("WS_MELTDOWN"); } - Id: 24620 AegisName: S_Super_Power_Pendant Name: Super Power Shadow Pendant Type: ShadowGear Jobs: Novice: true SuperNovice: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"RG_BACKSTAP",10+(.@r/2)*4; bonus2 bSkillAtk,"RG_RAID",10+(.@r/2)*4; - Id: 24621 AegisName: S_Super_Power_Earing Name: Super Power Shadow Earring Type: ShadowGear Jobs: Novice: true SuperNovice: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",10+4*(.@r/2); bonus2 bSkillAtk,"PA_SHIELDCHAIN",10+4*(.@r/2); - Id: 24622 AegisName: S_Kunai_Weapon Name: Kunai Shadow Weapon Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24623 AegisName: S_Kunai_Shield Name: Kunai Shadow Shield Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24624 AegisName: S_Kunai_Armor Name: Kunai Shadow Armor Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"KO_BAKURETSU",5+(.@r/2)*2; - Id: 24625 AegisName: S_Syuriken_Earing Name: Cross Shuriken Shadow Earring Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bLongAtkRate,3; if (.@r>=7) { bonus bLongAtkRate,3; } if (.@r>=9) { bonus2 bSkillUseSPrate,"KO_JYUMONJIKIRI",10; } - Id: 24626 AegisName: S_Syuriken_Pendant Name: Cross Shuriken Shadow Pendant Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"KO_HUUMARANKA",5+(.@r/2)*2; - Id: 24627 AegisName: S_Syuriken_Shoes Name: Cross Shuriken Shadow Shoes Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",5+(.@r/2)*2; - Id: 24628 AegisName: S_Kamaenraku_Weapon Name: First Exploding Draft Shadow Weapon Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus2 bSkillAtk,"NJ_BAKUENRYU",15; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",15; bonus2 bSkillAtk,"NJ_KAMAITACHI",15; } else if (.@r>=7) { bonus2 bSkillAtk,"NJ_BAKUENRYU",10; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",10; bonus2 bSkillAtk,"NJ_KAMAITACHI",10; } else { bonus2 bSkillAtk,"NJ_BAKUENRYU",5; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",5; bonus2 bSkillAtk,"NJ_KAMAITACHI",5; } - Id: 24629 AegisName: S_Kamaenraku_Shield Name: First Exploding Draft Shadow Shield Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"NJ_BAKUENRYU",5+2*(.@r/2); bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",5+2*(.@r/2); bonus2 bSkillAtk,"NJ_KAMAITACHI",5+2*(.@r/2); - Id: 24630 AegisName: S_Kamaenraku_Armor Name: First Exploding Draft Shadow Armor Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAddEle,Ele_All,5+.@r/2; - Id: 24631 AegisName: S_Huusouka_Earing Name: Wind Spear Petal Shadow Earring Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bSkillAtk,"NJ_KOUENKA",10; bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; bonus2 bSkillAtk,"NJ_HUUJIN",10; } else if (.@r>=7) { bonus2 bSkillAtk,"NJ_KOUENKA",6; bonus2 bSkillAtk,"NJ_HYOUSENSOU",6; bonus2 bSkillAtk,"NJ_HUUJIN",6; } else { bonus2 bSkillAtk,"NJ_KOUENKA",3; bonus2 bSkillAtk,"NJ_HYOUSENSOU",3; bonus2 bSkillAtk,"NJ_HUUJIN",3; } - Id: 24632 AegisName: S_Huusouka_Pendant Name: Wind Spear Petal Shadow Pendant Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxSPrate,2+.@r/2; - Id: 24633 AegisName: S_Huusouka_Shoes Name: Wind Spear Petal Shadow Shoes Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAddSize,Size_All,5+.@r/2; - Id: 24634 AegisName: S_Pickyrush_Weapon Name: Picky Rush Shadow Weapon Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bLongAtkRate,10; } else if (.@r>=7) { bonus bLongAtkRate,6; } else { bonus bLongAtkRate,3; } - Id: 24635 AegisName: S_Pickyrush_Shield Name: Picky Rush Shadow Shield Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24636 AegisName: S_Pickyrush_Armor Name: Picky Rush Shadow Armor Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SU_PICKYPECK",5+(.@r / 2); - Id: 24637 AegisName: S_SavageRabbit_Earing Name: Savage Rabbit Shadow Earring Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bLongAtkRate,5; if (.@r>=7) { bonus bLongAtkRate,5; } if (.@r>=9) { bonus2 bSkillUseSPrate,"SU_LUNATICCARROTBEAT",10; } - Id: 24638 AegisName: S_SavageRabbit_Pendant Name: Savage Rabbit Shadow Pendant Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; bonus2 bSkillAtk,"SU_SVG_SPIRIT",(.@r/2)*3; - Id: 24639 AegisName: S_SavageRabbit_Shoes Name: Savage Rabbit Shadow Shoes Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24640 AegisName: S_Catnip_Weapon Name: Catnip Shadow Weapon Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"SU_CN_METEOR",5; if (.@r>=7) { bonus2 bSkillAtk,"SU_CN_METEOR",5; } if (.@r>=9) { bonus bVariableCastrate,-5; } - Id: 24641 AegisName: S_Catnip_Shield Name: Catnip Shadow Shield Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SU_NYANGGRASS",-4000; bonus2 bSkillAtk,"SU_CN_METEOR",(.@r/2)*3; - Id: 24642 AegisName: S_Catnip_Armor Name: Catnip Shadow Armor Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAddSize,Size_All,5+.@r/2; - Id: 24643 AegisName: S_Silvervine_Earing Name: Silvervine Shadow Earring Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Ghost,6; bonus2 bMagicAtkEle,Ele_Fire,6; bonus2 bMagicAtkEle,Ele_Earth,6; bonus2 bMagicAtkEle,Ele_Water,6; bonus2 bMagicAtkEle,Ele_Wind,6; } else { bonus2 bMagicAtkEle,Ele_Ghost,3; bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bMagicAtkEle,Ele_Earth,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bMagicAtkEle,Ele_Wind,3; } - Id: 24644 AegisName: S_Silvervine_Pendant Name: Silvervine Shadow Pendant Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-3-.@r/2; - Id: 24645 AegisName: S_Silvervine_Shoes Name: Silvervine Shadow Shoes Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAddEle,Ele_All,5+.@r/2; - Id: 24646 AegisName: S_Sunshine_Weapon Name: Sunshine Shadow Weapon Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (.@r>=9) { bonus bShortAtkRate,10; } else if (.@r>=7) { bonus bShortAtkRate,6; } else { bonus bShortAtkRate,3; } - Id: 24647 AegisName: S_Sunshine_Shield Name: Sunshine Shadow Shield Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24648 AegisName: S_Sunshine_Armor Name: Sunshine Shadow Armor Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SJ_PROMINENCEKICK",5+(.@r / 2)*2; - Id: 24649 AegisName: S_Moonlight_Earring Name: Moonlight Shadow Earring Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bShortAtkRate,3; if (.@r>=7) { bonus bShortAtkRate,3; } if (.@r>=9) { bonus2 bSkillUseSPrate,"SJ_FULLMOONKICK",10; } - Id: 24650 AegisName: S_Moonlight_Pendant Name: Moonlight Shadow Pendant Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,5+.@r/2; - Id: 24651 AegisName: S_Moonlight_Shoes Name: Moonlight Shadow Shoes Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SJ_NEWMOONKICK",5+(.@r/2)*2; - Id: 24652 AegisName: S_Stardust_Weapon Name: Stardust Shadow Weapon Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bSkillAtk,"SJ_FLASHKICK",10; if (.@r>=7) { bonus bAspdRate,5; } if (.@r>=9) { bonus bAspdRate,5; } - Id: 24653 AegisName: S_Stardust_Shield Name: Stardust Shadow Shield Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAspd,1; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",3*(.@r/2); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",3*(.@r/2); - Id: 24654 AegisName: S_Stardust_Armor Name: Stardust Shadow Armor Type: ShadowGear Jobs: StarGladiator: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddEle,Ele_All,5+.@r/2; - Id: 24655 AegisName: S_S_Weapon Name: Es Shadow Weapon Type: ShadowGear Jobs: SoulLinker: true Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxSPrate,5; if (.@r>=7) { bonus2 bSkillAtk,"SL_SMA",10; } if (.@r>=9) { bonus2 bSkillUseSPrate,"SP_SPA",10; } - Id: 24656 AegisName: S_S_Shield Name: Es Shadow Shield Type: ShadowGear Jobs: SoulLinker: true Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAddSize,Size_All,5+.@r/2; - Id: 24657 AegisName: S_S_Armor Name: Es Shadow Armor Type: ShadowGear Jobs: SoulLinker: true Locations: Shadow_Armor: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillAtk,"SL_SMA",10; bonus2 bSkillAtk,"SP_SPA",(.@r/2); bonus2 bSkillAtk,"SP_SWHOO",(.@r/2); - Id: 24658 AegisName: S_Evilcurse_Earring Name: Evil Curse Shadow Earring Type: ShadowGear Jobs: SoulLinker: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Dark,10; } else if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Dark,6; } else { bonus2 bMagicAtkEle,Ele_Dark,3; } - Id: 24659 AegisName: S_Evilcurse_Pendant Name: Evil Curse Shadow Pendant Type: ShadowGear Jobs: SoulLinker: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAtkEle,Ele_Dark,5; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",(.@r/2)*3; - Id: 24660 AegisName: S_Evilcurse_Shoes Name: Evil Curse Shadow Shoes Type: ShadowGear Jobs: SoulLinker: true Locations: Shadow_Shoes: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bSkillCooldown,"SP_SOULCURSE",-1000-100*(.@r/2); - Id: 24661 AegisName: S_FullPene_Earring Name: Full Penetration Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-1*(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5-1*(.@r/2); if (.@r>=10) { bonus2 bAddRace,RC_All,3; bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; } - Id: 24662 AegisName: S_FullPene_Pendant Name: Full Penetration Shadow Pendant Type: ShadowGear Jobs: All: true Novice: false Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-1*(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5-1*(.@r/2); if (.@r>=10) { bonus2 bAddRace,RC_All,3; bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; } - Id: 24663 AegisName: S_FullPene_Armor Name: Full Penetration Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-1*(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5-1*(.@r/2); if (.@r>=10) { bonus2 bAddRace,RC_All,3; bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; } - Id: 24664 AegisName: S_FullPene_Shoes Name: Full Penetration Shadow Shoes Type: ShadowGear Jobs: All: true Novice: false Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreDefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Human,-5-(.@r/2); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-5-(.@r/2); if (.@r>=10) { bonus2 bAddRace,RC_All,3; bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; } - Id: 24665 AegisName: S_FullTemp_Earring Name: Full Tempest Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-5-(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-5-(.@r/2); if (.@r>=10) { bonus2 bMagicAddRace,RC_All,3; bonus2 bMagicAddRace,RC_Player_Human,-3; bonus2 bMagicAddRace,RC_Player_Doram,-3; } - Id: 24666 AegisName: S_FullTemp_Shoes Name: Full Tempest Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-5-(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-5-(.@r/2); if (.@r>=10) { bonus2 bMagicAddRace,RC_All,3; bonus2 bMagicAddRace,RC_Player_Human,-3; bonus2 bMagicAddRace,RC_Player_Doram,-3; } - Id: 24667 AegisName: S_FullTemp_Armor Name: Full Tempest Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-5-(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-5-(.@r/2); if (.@r>=10) { bonus2 bMagicAddRace,RC_All,3; bonus2 bMagicAddRace,RC_Player_Human,-3; bonus2 bMagicAddRace,RC_Player_Doram,-3; } - Id: 24668 AegisName: S_FullTemp_Pendant Name: Full Tempest Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bIgnoreMdefRaceRate,RC_All,5+(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-5-(.@r/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-5-(.@r/2); if (.@r>=10) { bonus2 bMagicAddRace,RC_All,3; bonus2 bMagicAddRace,RC_Player_Human,-3; bonus2 bMagicAddRace,RC_Player_Doram,-3; } - Id: 24669 AegisName: S_Mammoth_Armor Name: Mammoth Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritical,10+(.@r/2); if (.@r>=9) { bonus bCritAtkRate,5; } - Id: 24670 AegisName: S_Mammoth_Shoes Name: Mammoth Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,10+(.@r/2); if (.@r>=9) { bonus bAspd,1; } - Id: 24671 AegisName: S_Mammoth_Pendant Name: Mammoth Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bBaseAtk,10+(.@r/2); if (.@r>=9) { bonus bAtkRate,3; } - Id: 24672 AegisName: S_Mammoth_Earring Name: Mammoth Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritAtkRate,1+(.@r/2); if (.@r>=9) { bonus bLongAtkRate,3; bonus bShortAtkRate,3; } - Id: 24673 AegisName: S_Mammoth_Weapon Name: Mammoth Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bHit,10+(.@r/2); if (.@r>=9) { bonus bPerfectHitAddRate,5; } - Id: 24674 AegisName: S_Mammoth_Shield Name: Mammoth Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDef,5+(.@r/2); if (.@r>=9) { bonus bDelayrate,-3; } - Id: 24675 AegisName: S_TrueGem_Armor Name: True Gemstone Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=10) { bonus bVariableCastrate,-3; } - Id: 24676 AegisName: S_TrueGem_Shoes Name: True Gemstone Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=10) { bonus bVariableCastrate,-3; } - Id: 24677 AegisName: S_TrueGem_Earring Name: True Gemstone Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=10) { bonus bVariableCastrate,-3; } - Id: 24678 AegisName: S_TrueGem_Pendant Name: True Gemstone Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=10) { bonus bVariableCastrate,-3; } - Id: 24679 AegisName: S_M_Mammoth_Armor Name: Maximum Mammoth Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,3; bonus bLongAtkRate,(.@r/2); bonus bShortAtkRate,(.@r/2); if (.@r>=10) { bonus bMaxHPrate,3; } - Id: 24680 AegisName: S_M_Mammoth_Shoes Name: Maximum Mammoth Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,3; bonus bLongAtkRate,(.@r/2); bonus bShortAtkRate,(.@r/2); if (.@r>=10) { bonus bMaxHPrate,3; } - Id: 24681 AegisName: S_M_Mammoth_Earring Name: Maximum Mammoth Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,3; bonus bLongAtkRate,(.@r/2); bonus bShortAtkRate,(.@r/2); if (.@r>=10) { bonus bMaxHPrate,3; } - Id: 24682 AegisName: S_M_Mammoth_Pendant Name: Maximum Mammoth Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,3; bonus bLongAtkRate,(.@r/2); bonus bShortAtkRate,(.@r/2); if (.@r>=10) { bonus bMaxHPrate,3; } - Id: 24683 AegisName: S_EXP_Shield Name: Experience Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; .@val = .@r/2; if (BaseLevel<175) .@val += 20; else .@val += 10; if (.@r>=10) .@val += 5; bonus2 bExpAddRace,RC_All,.@val; - Id: 24684 AegisName: S_SNV_Weapon Name: Super Novice Booster Shadow Weapon Type: ShadowGear Jobs: SuperNovice: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24685 AegisName: S_Absorb_Shield Name: Absorb Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAtkRate,(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-3; if (.@r>=10) { bonus2 bHPDrainRate,20,2; bonus2 bSPDrainRate,10,2; } } - Id: 24686 AegisName: S_Absorb_Weapon Name: Absorb Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAtkRate,(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-3; if (.@r>=10) { bonus2 bHPDrainRate,20,2; bonus2 bSPDrainRate,10,2; } } - Id: 24687 AegisName: S_1Para_Weapon Name: Paradise Shadow Weapon Type: Shadowgear Locations: Shadow_Weapon: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; bonus bShortAtkRate,5; bonus bLongAtkRate,5; bonus2 bMagicAtkEle,Ele_All,5; - Id: 24688 AegisName: S_1Para_Shield Name: Paradise Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bVariableCastrate,-5; - Id: 24689 AegisName: S_1Para_Armor Name: Paradise Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,5; bonus bMaxHP,100; - Id: 24690 AegisName: S_1Para_Shoes Name: Paradise Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,5; bonus bMaxHP,100; - Id: 24691 AegisName: S_1Para_Earing Name: Paradise Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,5; bonus bMaxHP,100; - Id: 24692 AegisName: S_1Para_Pendant Name: Paradise Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,5; bonus bMaxHP,100; - Id: 24693 AegisName: S_2Para_Shield Name: Advanced Paradise Shadow Shield Type: Shadowgear Locations: Shadow_Shield: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,100; bonus bVariableCastrate,-10; - Id: 24694 AegisName: S_2Para_Armor Name: Advanced Paradise Shadow Armor Type: Shadowgear Locations: Shadow_Armor: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,15; bonus bMaxHP,100; - Id: 24695 AegisName: S_2Para_Shoes Name: Advanced Paradise Shadow Shoes Type: Shadowgear Locations: Shadow_Shoes: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,7; bonus bMaxHP,100; - Id: 24696 AegisName: S_2Para_Earing Name: Advanced Paradise Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,15; bonus bMaxHP,100; - Id: 24697 AegisName: S_2Para_Pendant Name: Advanced Paradise Shadow Pendant Type: Shadowgear Locations: Shadow_Left_Accessory: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,15; bonus bMaxHP,100; - Id: 24698 AegisName: S_2Para_RK_Weapon Name: Rune Knight Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24699 AegisName: S_2Para_LG_Weapon Name: Royal Guard Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24700 AegisName: S_2Para_NC_Weapon Name: Mechanic Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24701 AegisName: S_2Para_GN_Weapon Name: Genetic Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24702 AegisName: S_2Para_GC_Weapon Name: Guillotine Cross Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24703 AegisName: S_2Para_SC_Weapon Name: Shadow Chaser Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24704 AegisName: S_2Para_WL_Weapon Name: Warlock Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24705 AegisName: S_2Para_SO_Weapon Name: Sorcerer Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24706 AegisName: S_2Para_AB_Weapon Name: Arch Bishop Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24707 AegisName: S_2Para_SR_Weapon Name: Sura Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24708 AegisName: S_2Para_RA_Weapon Name: Ranger Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24709 AegisName: S_2Para_WM_Weapon # Name: Minstrel & Wanderer Advanced Paradise Shadow Weapon Name: Minstrel & Wanderer Adva Type: Shadowgear Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24710 AegisName: S_2Para_KO_Weapon Name: Kagerou & Oboro Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: KagerouOboro: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24711 AegisName: S_2Para_RL_Weapon Name: Rebellion Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Rebellion: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24712 AegisName: S_2Para_SJ_Weapon Name: Star Emperor Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24713 AegisName: S_2Para_SP_Weapon Name: Soul Reaper Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24714 AegisName: S_2Para_SU_Weapon Name: Doram Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24715 AegisName: S_2Para_NV_Weapon Name: Super Novice Advanced Paradise Shadow Weapon Type: Shadowgear Jobs: SuperNovice: true Locations: Shadow_Weapon: true EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,10; bonus bMatk,10; - Id: 24722 AegisName: S_AutoSpell_Shield Name: Auto Spell Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatk,15+(.@r/2); if (.@r==9) bonus3 bAutoSpell,"MG_NAPALMBEAT",7,70; else if (.@r>9) bonus3 bAutoSpell,"MG_NAPALMBEAT",10,100; - Id: 24723 AegisName: S_AutoSpell_Armor Name: Auto Spell Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bHit,10+(.@r/2); if (.@r>=9) { bonus bPerfectHitAddRate,5; } - Id: 24724 AegisName: S_AutoSpell_Shoes Name: Auto Spell Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,10+(.@r/2); if (.@r>=9) { bonus bAspd,1; } - Id: 24725 AegisName: S_AutoSpell_Weapon Name: Auto Spell Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bBaseAtk,15+(.@r/2); if (.@r==9) bonus3 bAutoSpell,"SM_BASH",7,70; else if (.@r>9) bonus3 bAutoSpell,"SM_BASH",10,100; - Id: 24726 AegisName: S_AutoSpell_Pendant Name: Auto Spell Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bHit,10+(.@r/2); if (.@r>=9) { bonus bPerfectHitAddRate,5; } - Id: 24727 AegisName: S_AutoSpell_Earring Name: Auto Spell Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bFlee,10+(.@r/2); if (.@r>=9) { bonus bAspd,1; } - Id: 24728 AegisName: S_M_AutoSpell_Armor Name: Major Auto Spell Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=9) { bonus bAspd,1; if (.@r>=10) { bonus3 bAutoSpell,"WL_FROSTMISTY",max(getskilllv("WL_FROSTMISTY"),3),70; } } - Id: 24729 AegisName: S_M_AutoSpell_Shoes Name: Major Auto Spell Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=10) { bonus bAspdRate,3; } - Id: 24730 AegisName: S_M_AutoSpell_Earring Name: Major Auto Spell Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,3; bonus bShortAtkRate,(.@r/2); if (.@r>=9) { bonus bAspd,1; if (.@r>=10) { bonus5 bAutoSpell,"SC_FATALMENACE",max(getskilllv("SC_FATALMENACE"),7),70,BF_SHORT|BF_NORMAL,1; } } - Id: 24731 AegisName: S_M_AutoSpell_Pendant Name: Major Auto Spell Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bAtkRate,3; bonus bShortAtkRate,(.@r/2); if (.@r>=10) { bonus bAspdRate,3; } - Id: 24732 AegisName: S_Hasty_Shield Name: Hasty Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,1+(.@r/2); bonus bAtkRate,1+(.@r/2); if (.@r>=7) { bonus bDef,15; bonus bFlee,15; if (.@r>=10) { bonus bSpeedRate,25; } } - Id: 24733 AegisName: S_Infinity_Shield Name: Infinity Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bAddSize,Size_All,(.@r/3); bonus2 bMagicAddSize,Size_All,(.@r/3); bonus2 bSubSize,Size_All,(.@r/3); if (.@r==10) bonus bNoSizeFix; - Id: 24734 AegisName: S_Durable_Weapon Name: Durable Weapon Shadow Type: ShadowGear Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bLongAtkRate,2; bonus bShortAtkRate,2; bonus bAtkRate,(.@r/2); if (.@r>=9) { bonus bAspd,1; if (.@r>=10) { bonus bLongAtkRate,7; bonus bShortAtkRate,7; } } - Id: 24735 AegisName: S_Durable_Shield Name: Durable Shield Shadow Type: ShadowGear Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bLongAtkRate,2; bonus bShortAtkRate,2; bonus bAtkRate,(.@r/2); if (.@r>=9) { bonus bAspd,1; if (.@r>=10) { bonus bLongAtkRate,7; bonus bShortAtkRate,7; } } - Id: 24736 AegisName: S_Clever_Weapon Name: Clever Weapon Shadow Type: ShadowGear Locations: Shadow_Weapon: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus2 bMagicAtkEle,Ele_All,2; bonus bMatkRate,(.@r/2); if (.@r>=9) { bonus bVariableCastrate,-5; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_All,7; } } - Id: 24737 AegisName: S_Clever_Shield Name: Clever Shield Shadow Type: ShadowGear Locations: Shadow_Shield: true EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus2 bMagicAtkEle,Ele_All,2; bonus bMatkRate,(.@r/2); if (.@r>=9) { bonus bVariableCastrate,-5; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_All,7; } } - Id: 24738 AegisName: S_CriticalHit_Weapon Name: Critical Hit Weapon Shadow Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bCritical,7; bonus bBaseAtk,15; bonus bCritAtkRate,(.@r/2); if (.@r>=7) { bonus bCritical,7; } - Id: 24739 AegisName: S_SU_Weapon Name: Summoner Booster Shadow Weapon Type: ShadowGear Jobs: Summoner: true Spirit_Handler: true Locations: Shadow_Weapon: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24740 AegisName: S_SJ_Weapon Name: Star Emperor Booster Shadow Weapon Type: ShadowGear Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24741 AegisName: S_KO_Weapon Name: Kagerou & Oboro Booster Shadow Weapon Type: ShadowGear Jobs: KagerouOboro: true Ninja: true Locations: Shadow_Weapon: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24742 AegisName: S_RL_Weapon Name: Rebellion Booster Shadow Weapon Type: ShadowGear Jobs: Rebellion: true Locations: Shadow_Weapon: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24743 AegisName: S_SP_Weapon Name: Soul Reaper Booster Shadow Weapon Type: ShadowGear Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Shadow_Weapon: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 24744 AegisName: S_NV_Weapon Name: Super Novice Booster Shadow Weapon Type: ShadowGear Jobs: Novice: true SuperNovice: true Locations: Shadow_Weapon: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Script: | bonus bMatk,10; bonus bBaseAtk,10; bonus bMaxHP,1500; bonus bMaxSP,300; - Id: 24745 AegisName: S_KingbirdAnc_Weapon Name: Kingbird Ancient Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bBaseAtk,15; bonus bHit,15; bonus bLongAtkRate,(.@r/2); if (.@r>=7) { bonus bHit,15; } - Id: 24746 AegisName: S_S_Reload_Shield Name: Separate Reload Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bDelayrate,-.@r; bonus bAspdRate,3*(.@r/2); if (.@r>=9) { bonus bMatkRate,3; bonus bAtkRate,3; } - Id: 24747 AegisName: S_SpellCaster_Armor Name: Spell Caster Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-.@r; bonus bMatkRate,(.@r/3); bonus bAtkRate,(.@r/3); - Id: 24748 AegisName: S_SpellCaster_Shoes Name: Spell Caster Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-.@r; bonus bMatkRate,(.@r/3); bonus bAtkRate,(.@r/3); - Id: 24749 AegisName: S_SpellCaster_Earring Name: Spell Caster Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-.@r; bonus bMatkRate,(.@r/3); bonus bAtkRate,(.@r/3); - Id: 24750 AegisName: S_SpellCaster_Pendant Name: Spell Caster Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bVariableCastrate,-.@r; bonus bMatkRate,(.@r/3); bonus bAtkRate,(.@r/3); - Id: 24751 AegisName: S_P_Power_Weapon Name: Physical Power Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bPow,(.@r/2); if (.@r>=7) { bonus bPAtk,3; if (.@r>=9) { bonus bPAtk,3; } } - Id: 24752 AegisName: S_P_Power_Shield Name: Physical Power Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bPow,(.@r/2); if (.@r>=7) { bonus bPAtk,3; if (.@r>=9) { bonus bPAtk,3; } } - Id: 24753 AegisName: S_M_Spell_Weapon Name: Magical Spell Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bSpl,(.@r/2); if (.@r>=7) { bonus bSMatk,3; if (.@r>=9) { bonus bSMatk,3; } } - Id: 24754 AegisName: S_M_Spell_Shield Name: Magical Spell Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bSpl,(.@r/2); if (.@r>=7) { bonus bSMatk,3; if (.@r>=9) { bonus bSMatk,3; } } - Id: 24755 AegisName: S_Concentration_Weapon Name: Concentration Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bCon,.@r; if (.@r>=7) { bonus bPAtk,2; bonus bSMatk,2; if (.@r>=9) { bonus bPAtk,2; bonus bSMatk,2; } } - Id: 24756 AegisName: S_Concentration_Shield Name: Concentration Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCon,.@r; if (.@r>=7) { bonus bPAtk,2; bonus bSMatk,2; if (.@r>=9) { bonus bPAtk,2; bonus bSMatk,2; } } - Id: 24757 AegisName: S_Wisdom_Weapon Name: Wisdom Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bWis,.@r; if (.@r>=7) { bonus bMRes,30; if (.@r>=9) { bonus bMRes,30; } } - Id: 24758 AegisName: S_Wisdom_Shield Name: Wisdom Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bWis,.@r; if (.@r>=7) { bonus bMRes,30; if (.@r>=9) { bonus bMRes,30; } } - Id: 24759 AegisName: S_Stamina_Weapon Name: Stamina Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bSta,.@r; if (.@r>=7) { bonus bRes,30; if (.@r>=9) { bonus bRes,30; } } - Id: 24760 AegisName: S_Stamina_Shield Name: Stamina Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bSta,.@r; if (.@r>=7) { bonus bRes,30; if (.@r>=9) { bonus bRes,30; } } - Id: 24761 AegisName: S_Creative_Weapon Name: Creative Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bCrt,(.@r/2); if (.@r>=7) { bonus bCRate,2; bonus bHPlus,2; if (.@r>=9) { bonus bCRate,2; bonus bHPlus,2; } } - Id: 24762 AegisName: S_Creative_Shield Name: Creative Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCrt,(.@r/2); if (.@r>=7) { bonus bCRate,2; bonus bHPlus,2; if (.@r>=9) { bonus bCRate,2; bonus bHPlus,2; } } - Id: 24763 AegisName: S_R_Bearers_Shoes Name: Lord Bearer's Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,(.@r/2); if (.@r>=7) { bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; if (.@r>=9) { bonus bMaxHPrate,5; } } - Id: 24764 AegisName: S_R_Bearers_Armor Name: Lord Bearer's Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,(.@r/2); if (.@r>=7) { bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; if (.@r>=9) { bonus bMaxHPrate,5; } } - Id: 24765 AegisName: S_R_Bearers_Pendant Name: Lord Bearer's Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,(.@r/2); if (.@r>=7) { bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; if (.@r>=9) { bonus bMaxHPrate,5; } } - Id: 24766 AegisName: S_R_Bearers_Earring Name: Lord Bearer's Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMaxHPrate,(.@r/2); if (.@r>=7) { bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; if (.@r>=9) { bonus bMaxHPrate,5; } } - Id: 24767 AegisName: S_Mega_Blitz_Shield Name: Mega Blitz Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bCritical,5+2*(.@r/3); bonus bCRate,(.@r/3); if (.@r>=7) { bonus bCritical,3; bonus bAspd,1; if (.@r>=9) { bonus bCritAtkRate,5; bonus bAspdRate,8; if (.@r>=10) { bonus bCritAtkRate,3; bonus bCRate,3; } } } - Id: 24768 AegisName: S_Mega_Blitz_Weapon Name: Mega Blitz Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bAspdRate,5; bonus bDelayrate,-(.@r/2); if (.@r>=7) { bonus bAspdRate,5; bonus bAspd,1; if (.@r>=9) { bonus bDelayrate,-2; if (.@r>=10) { bonus bPAtk,2; bonus bSMatk,2; } } } - Id: 24770 AegisName: S_EXP_Weapon Name: Experience Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; if (BaseLevel<175) { bonus2 bExpAddRace,RC_All,20; } if (BaseLevel>=175) { bonus2 bExpAddRace,RC_All,10; } if (.@r>=10) { bonus2 bExpAddRace,RC_All,5; } bonus2 bExpAddRace,RC_All,(.@r/2); - Id: 24778 AegisName: aegis_24778 Name: 1Lv Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24779 AegisName: aegis_24779 Name: 1Lv Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; - Id: 24780 AegisName: aegis_24780 Name: 1Lv Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24781 AegisName: aegis_24781 Name: 1Lv Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24782 AegisName: aegis_24782 Name: 1Lv Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24783 AegisName: aegis_24783 Name: 1Lv Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24792 AegisName: S_Master_Weapon Name: Master Shadow Weapon Type: ShadowGear Locations: Shadow_Weapon: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r; bonus bMatk,.@r; bonus bMatkRate,2; bonus bAtkRate,2; bonus bShortAtkRate,(.@r/2); bonus bLongAtkRate,(.@r/2); bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=7) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@r>=9) { bonus bPAtk,2; bonus bSMatk,2; } } - Id: 24793 AegisName: S_Master_Shield Name: Master Shadow Shield Type: ShadowGear Locations: Shadow_Shield: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,2; bonus bAtkRate,2; bonus bShortAtkRate,(.@r/2); bonus bLongAtkRate,(.@r/2); bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=7) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@r>=9) { bonus bPAtk,2; bonus bSMatk,2; } } - Id: 24800 AegisName: S_DK_Armor Name: M. Dragon Knight Shadow Armor Type: ShadowGear Jobs: Knight: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24801 AegisName: S_DK_Shoes Name: M. Dragon Knight Shadow Shoes Type: ShadowGear Jobs: Knight: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24802 AegisName: S_DK_Earring Name: M. Dragon Knight Shadow Earring Type: ShadowGear Jobs: Knight: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24803 AegisName: S_DK_Pendant Name: M. Dragon Knight Shadow Pendant Type: ShadowGear Jobs: Knight: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24804 AegisName: S_IG_Armor Name: M. Imperial Guard Shadow Armor Type: ShadowGear Jobs: Crusader: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24805 AegisName: S_IG_Shoes Name: M. Imperial Guard Shadow Shoes Type: ShadowGear Jobs: Crusader: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24806 AegisName: S_IG_Earring Name: M. Imperial Guard Shadow Earring Type: ShadowGear Jobs: Crusader: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24807 AegisName: S_IG_Pendant Name: M. Imperial Guard Shadow Pendant Type: ShadowGear Jobs: Crusader: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24808 AegisName: S_SHC_Armor Name: M. Shadow Cross Shadow Armor Type: ShadowGear Jobs: Assassin: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24809 AegisName: S_SHC_Shoes Name: M. Shadow Cross Shadow Shoes Type: ShadowGear Jobs: Assassin: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24810 AegisName: S_SHC_Earring Name: M. Shadow Cross Shadow Earring Type: ShadowGear Jobs: Assassin: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24811 AegisName: S_SHC_Pendant Name: M. Shadow Cross Shadow Pendant Type: ShadowGear Jobs: Assassin: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24812 AegisName: S_ABC_Armor Name: M. Abyss Chaser Shadow Armor Type: ShadowGear Jobs: Rogue: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24813 AegisName: S_ABC_Shoes Name: M. Abyss Chaser Shadow Shoes Type: ShadowGear Jobs: Rogue: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24814 AegisName: S_ABC_Earring Name: M. Abyss Chaser Shadow Earring Type: ShadowGear Jobs: Rogue: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24815 AegisName: S_ABC_Pendant Name: M. Abyss Chaser Shadow Pendant Type: ShadowGear Jobs: Rogue: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24816 AegisName: S_CD_Armor Name: M. Cardinal Shadow Armor Type: ShadowGear Jobs: Priest: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24817 AegisName: S_CD_Shoes Name: M. Cardinal Shadow Shoes Type: ShadowGear Jobs: Priest: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24818 AegisName: S_CD_Earring Name: M. Cardinal Shadow Earring Type: ShadowGear Jobs: Priest: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24819 AegisName: S_CD_Pendant Name: M. Cardinal Shadow Pendant Type: ShadowGear Jobs: Priest: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24820 AegisName: S_IQ_Armor Name: M. Inquisitor Shadow Armor Type: ShadowGear Jobs: Monk: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24821 AegisName: S_IQ_Shoes Name: M. Inquisitor Shadow Shoes Type: ShadowGear Jobs: Monk: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24822 AegisName: S_IQ_Earring Name: M. Inquisitor Shadow Earring Type: ShadowGear Jobs: Monk: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24823 AegisName: S_IQ_Pendant Name: M. Inquisitor Shadow Pendant Type: ShadowGear Jobs: Monk: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24824 AegisName: S_MT_Armor Name: M. Meister Shadow Armor Type: ShadowGear Jobs: Blacksmith: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24825 AegisName: S_MT_Shoes Name: M. Meister Shadow Shoes Type: ShadowGear Jobs: Blacksmith: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24826 AegisName: S_MT_Earring Name: M. Meister Shadow Earring Type: ShadowGear Jobs: Blacksmith: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24827 AegisName: S_MT_Pendant Name: M. Meister Shadow Pendant Type: ShadowGear Jobs: Blacksmith: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24828 AegisName: S_BO_Armor Name: M. Biolo Shadow Armor Type: ShadowGear Jobs: Alchemist: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24829 AegisName: S_BO_Shoes Name: M. Biolo Shadow Shoes Type: ShadowGear Jobs: Alchemist: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24830 AegisName: S_BO_Earring Name: M. Biolo Shadow Earring Type: ShadowGear Jobs: Alchemist: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24831 AegisName: S_BO_Pendant Name: M. Biolo Shadow Pendant Type: ShadowGear Jobs: Alchemist: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24832 AegisName: S_WH_Armor Name: M. Windhawk Shadow Armor Type: ShadowGear Jobs: Hunter: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24833 AegisName: S_WH_Shoes Name: M. Windhawk Shadow Shoes Type: ShadowGear Jobs: Hunter: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24834 AegisName: S_WH_Earring Name: M. Windhawk Shadow Earring Type: ShadowGear Jobs: Hunter: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24835 AegisName: S_WH_Pendant Name: M. Windhawk Shadow Pendant Type: ShadowGear Jobs: Hunter: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24836 AegisName: S_TR_Armor Name: M. Troubadour & Trouvere Shadow Armor Type: ShadowGear Jobs: BardDancer: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24837 AegisName: S_TR_Shoes Name: M. Troubadour & Trouvere Shadow Shoes Type: ShadowGear Jobs: BardDancer: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24838 AegisName: S_TR_Earring Name: M. Troubadour & Trouvere Shadow Earring Type: ShadowGear Jobs: BardDancer: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24839 AegisName: S_TR_Pendant Name: M. Troubadour & Trouvere Shadow Pendant Type: ShadowGear Jobs: BardDancer: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24840 AegisName: S_AG_Armor Name: M. Arch Mage Shadow Armor Type: ShadowGear Jobs: Wizard: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24841 AegisName: S_AG_Shoes Name: M. Arch Mage Shadow Shoes Type: ShadowGear Jobs: Wizard: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24842 AegisName: S_AG_Earring Name: M. Arch Mage Shadow Earring Type: ShadowGear Jobs: Wizard: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24843 AegisName: S_AG_Pendant Name: M. Arch Mage Shadow Pendant Type: ShadowGear Jobs: Wizard: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24844 AegisName: S_EM_Armor Name: M. Elemental Master Shadow Armor Type: ShadowGear Jobs: Sage: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24845 AegisName: S_EM_Shoes Name: M. Elemental Master Shadow Shoes Type: ShadowGear Jobs: Sage: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24846 AegisName: S_EM_Earring Name: M. Elemental Master Shadow Earring Type: ShadowGear Jobs: Sage: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24847 AegisName: S_EM_Pendant Name: M. Elemental Master Shadow Pendant Type: ShadowGear Jobs: Sage: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24848 AegisName: S_NW_Armor Name: M. Night Watch Shadow Armor Type: ShadowGear Jobs: Rebellion: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24849 AegisName: S_NW_Shoes Name: M. Night Watch Shadow Shoes Type: ShadowGear Jobs: Rebellion: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24850 AegisName: S_NW_Earring Name: M. Night Watch Shadow Earring Type: ShadowGear Jobs: Rebellion: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24851 AegisName: S_NW_Pendant Name: M. Night Watch Shadow Pendant Type: ShadowGear Jobs: Rebellion: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24852 AegisName: S_SH_Armor Name: M. Spirit Handler Shadow Armor Type: ShadowGear Jobs: Summoner: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24853 AegisName: S_SH_Shoes Name: M. Spirit Handler Shadow Shoes Type: ShadowGear Jobs: Summoner: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24854 AegisName: S_SH_Earring Name: M. Spirit Handler Shadow Earring Type: ShadowGear Jobs: Summoner: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24855 AegisName: S_SH_Pendant Name: M. Spirit Handler Shadow Pendant Type: ShadowGear Jobs: Summoner: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24856 AegisName: S_SS_Armor Name: M. Shinkiro & Shiranui Shadow Armor Type: ShadowGear Jobs: KagerouOboro: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24857 AegisName: S_SS_Shoes Name: M. Shinkiro & Shiranui Shadow Shoes Type: ShadowGear Jobs: KagerouOboro: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24858 AegisName: S_SS_Earring Name: M. Shinkiro & Shiranui Shadow Earring Type: ShadowGear Jobs: KagerouOboro: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24859 AegisName: S_SS_Pendant Name: M. Shinkiro & Shiranui Shadow Pendant Type: ShadowGear Jobs: KagerouOboro: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24860 AegisName: S_SKE_Armor Name: M. Sky Emperor Shadow Armor Type: ShadowGear Jobs: StarGladiator: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24861 AegisName: S_SKE_Shoes Name: M. Sky Emperor Shadow Shoes Type: ShadowGear Jobs: StarGladiator: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24862 AegisName: S_SKE_Earring Name: M. Sky Emperor Shadow Earring Type: ShadowGear Jobs: StarGladiator: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24863 AegisName: S_SKE_Pendant Name: M. Sky Emperor Shadow Pendant Type: ShadowGear Jobs: StarGladiator: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24864 AegisName: S_SOA_Armor Name: M. Soul Ascetic Shadow Armor Type: ShadowGear Jobs: SoulLinker: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24865 AegisName: S_SOA_Shoes Name: M. Soul Ascetic Shadow Shoes Type: ShadowGear Jobs: SoulLinker: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24866 AegisName: S_SOA_Earring Name: M. Soul Ascetic Shadow Earring Type: ShadowGear Jobs: SoulLinker: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24867 AegisName: S_SOA_Pendant Name: M. Soul Ascetic Shadow Pendant Type: ShadowGear Jobs: SoulLinker: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24868 AegisName: S_HN_Armor Name: M. Hyper Novice Shadow Armor Type: ShadowGear Jobs: SuperNovice: true Classes: Fourth: true Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24869 AegisName: S_HN_Shoes Name: M. Hyper Novice Shadow Shoes Type: ShadowGear Jobs: SuperNovice: true Classes: Fourth: true Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24870 AegisName: S_HN_Earring Name: M. Hyper Novice Shadow Earring Type: ShadowGear Jobs: SuperNovice: true Classes: Fourth: true Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24871 AegisName: S_HN_Pendant Name: M. Hyper Novice Shadow Pendant Type: ShadowGear Jobs: SuperNovice: true Classes: Fourth: true Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | bonus bMaxHP,getrefine()*10; - Id: 24872 AegisName: S_Full_Power_Armor Name: Full Power Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; bonus bLongAtkRate,(.@r/2); bonus bShortAtkRate,(.@r/2); if (.@r>=10) { bonus bPAtk,2; } - Id: 24873 AegisName: S_Full_Power_Shoes Name: Full Power Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; bonus bLongAtkRate,(.@r/2); bonus bShortAtkRate,(.@r/2); if (.@r>=10) { bonus bPAtk,2; } - Id: 24874 AegisName: S_Full_Rate_Armor Name: Full Rate Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bCritical,3; bonus bCritAtkRate,(.@r/2); if (.@r>=10) { bonus bCRate,2; } - Id: 24875 AegisName: S_Full_Rate_Shoes Name: Full Rate Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bCritical,3; bonus bCritAtkRate,(.@r/2); if (.@r>=10) { bonus bCRate,2; } - Id: 24876 AegisName: S_Focusing_Pendant Name: Focusing Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; bonus bVariableCastrate,-(.@r/2); if (.@r>=10) { bonus bPAtk,2; } - Id: 24877 AegisName: S_Focusing_Earring Name: Focusing Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; bonus bVariableCastrate,-(.@r/2); if (.@r>=10) { bonus bPAtk,2; } - Id: 24878 AegisName: S_Stout_Pendant Name: Stout Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bDef,30; bonus bRes,3*(.@r/2); if (.@r>=10) { bonus bRes,15; } - Id: 24879 AegisName: S_Stout_Earring Name: Stout Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bDef,30; bonus bRes,3*(.@r/2); if (.@r>=10) { bonus bRes,15; } - Id: 24883 AegisName: S_Full_Spell_Armor Name: Full Spell Shadow Armor Type: ShadowGear Locations: Shadow_Armor: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=10) { bonus bSMatk,2; } - Id: 24884 AegisName: S_Full_Spell_Shoes Name: Full Spell Shadow Shoes Type: ShadowGear Locations: Shadow_Shoes: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus2 bMagicAtkEle,Ele_All,(.@r/2); if (.@r>=10) { bonus bSMatk,2; } - Id: 24885 AegisName: S_Centering_Pendant Name: Centering Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus bVariableCastrate,-(.@r/2); if (.@r>=10) { bonus bSMatk,2; } - Id: 24886 AegisName: S_Centering_Earring Name: Centering Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMatkRate,3; bonus bVariableCastrate,-(.@r/2); if (.@r>=10) { bonus bSMatk,2; } - Id: 24887 AegisName: S_Witty_Pendant Name: Witty Shadow Pendant Type: ShadowGear Locations: Shadow_Left_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMdef,10; bonus bMRes,3*(.@r/2); if (.@r>=10) { bonus bMRes,15; } - Id: 24888 AegisName: S_Witty_Earring Name: Witty Shadow Earring Type: ShadowGear Locations: Shadow_Right_Accessory: true EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; bonus bMdef,10; bonus bMRes,3*(.@r/2); if (.@r>=10) { bonus bMRes,15; } - Id: 26001 AegisName: Toughen_Metal_Lance Name: Enhanced Metal Lance Type: Weapon SubType: 2hSpear Buy: 20 Attack: 125 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,9*.@r+8*(min(BaseLevel,150)/10); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; bonus2 bSkillAtk,"LG_OVERBRAND",10; - Id: 26004 AegisName: Diva_Lance Name: Diva Lance Type: Weapon SubType: 2hSpear Weight: 3500 Attack: 200 MagicAttack: 230 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 26005 AegisName: Mirage_Lance Name: Mirage Lance Type: Weapon SubType: 2hSpear Weight: 3500 Attack: 200 MagicAttack: 230 Range: 5 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 26006 AegisName: Sinister_Lance_J Name: Lance of Evil Type: Weapon SubType: 2hSpear Buy: 100000 Weight: 1200 Attack: 150 Range: 3 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 26007 AegisName: Spectral_Spear_IL Name: Illusion Spectral Spear Type: Weapon SubType: 2hSpear Buy: 20 Weight: 2000 Attack: 240 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); .@val = 3*(.@r/2); bonus2 bSubRace,RC_Undead,10+.@val; bonus2 bSubRace,RC_Demon,10+.@val; bonus2 bSubEle,Ele_Dark,10+.@val; bonus2 bAddEle,Ele_Dark,20+.@val; bonus2 bAddEle,Ele_Undead,20+.@val; bonus2 bAddRace,RC_Demon,20+.@val; bonus bHPGainValue,50; bonus bSPGainValue,(.@r/2); bonus2 bAddEff2,Eff_Confusion,1000; - Id: 26008 AegisName: Neev_Glaive Name: Neev Glaive Type: Weapon SubType: 2hSpear Buy: 100000 Weight: 3500 Attack: 150 MagicAttack: 110 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 26015 AegisName: Rebeginer_LG_Lance Name: Beginner Royal Guard's Lance Type: Weapon SubType: 2hSpear Attack: 170 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | bonus bAspdRate,10; if (getrefine()>=7) { bonus2 bSkillAtk,"LG_OVERBRAND",15; } - Id: 26016 AegisName: T_Lance_Of_Kingdom Name: Royal Knight's Lance Type: Weapon SubType: 2hSpear Buy: 50000 Weight: 1000 Attack: 205 Range: 3 Slots: 2 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus bAtkRate,5; if (.@r>=9) bonus2 bAddRace,RC_All,15; - Id: 26019 AegisName: Woe_T_Lance1_Z Name: Lesser Guild Member's Lance Type: Weapon SubType: 2hSpear Weight: 1300 Attack: 220 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Stun,1000+((.@r-10)*100); bonus3 bAddEffOnSkill,"CR_HOLYCROSS",Eff_Silence,1000+((.@r-10)*100); } - Id: 26021 AegisName: Variant_Lance Name: Abyss Lance Type: Weapon SubType: 2hSpear Weight: 3500 Attack: 200 MagicAttack: 230 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 26024 AegisName: Ein_BHSPEAR Name: Block Lance Type: Weapon SubType: 2hSpear Weight: 3000 Attack: 235 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"LK_SPIRALPIERCE",2*(BaseLevel/10); if (getskilllv("LK_SPIRALPIERCE") == 5) bonus bBaseAtk,30; if (.@r>=7) { bonus bAtkRate,5; bonus bAspdRate,10; } if (.@r>=9) { bonus bHit,15; bonus bStr,3; } - Id: 26100 AegisName: P_Foxtail2 Name: Eden Group Foxtail Staff II Type: Weapon SubType: Staff Buy: 20 Attack: 135 MagicAttack: 165 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 40 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,4; bonus bInt,4; bonus bLongAtkRate,6; - Id: 26101 AegisName: P_Foxtail3 Name: Eden Group Foxtail Staff III Type: Weapon SubType: Staff Buy: 20 Attack: 150 MagicAttack: 195 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 60 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,5; bonus bInt,5; bonus bLongAtkRate,7; - Id: 26102 AegisName: UnrivaledStaff Name: Unrivaled Staff Type: Weapon SubType: Staff Buy: 20 Weight: 1000 Attack: 160 MagicAttack: 145 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: 3 EquipLevelMin: 50 Refineable: true Script: | bonus bAtkEle,Ele_Earth; .@r = getrefine(); if (.@r >= 7) { bonus2 bMagicAddRace,RC_Brute,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus2 bMagicAddRace,RC_Plant,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; } if (.@r >= 9) { bonus2 bMagicAddRace,RC_Brute,15; bonus2 bMagicAddRace,RC_Player_Doram,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bMagicAddEle,Ele_Wind,15; bonus2 bMagicAddEle,Ele_Earth,15; } - Id: 26104 AegisName: Blue_Staff Name: Blue Staff Type: Weapon SubType: Staff Buy: 20 Weight: 1000 Attack: 160 MagicAttack: 145 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: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Water; if (.@r>=7) { bonus2 bMagicAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Formless,10; bonus2 bMagicAddEle,Ele_Fire,10; } if (.@r>=9) { bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Formless,15; bonus2 bMagicAddEle,Ele_Fire,15; } - Id: 26105 AegisName: Diva_Wand Name: Diva Wand Type: Weapon SubType: Staff Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,2*.@r; if (.@r>=7) bonus bMatkRate,4; if (.@r>=9) bonus bMatkRate,4; - Id: 26106 AegisName: Mirage_Wand Name: Mirage Wand Type: Weapon SubType: Staff Weight: 300 Attack: 60 MagicAttack: 180 Range: 5 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,2*.@r; if (.@r>=7) bonus bMatkRate,4; if (.@r>=9) bonus bMatkRate,4; - Id: 26107 AegisName: Staff_Of_Elder Name: Elder Staff Type: Weapon SubType: Staff Weight: 500 Attack: 60 MagicAttack: 150 Range: 1 Slots: 3 Jobs: Acolyte: true Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@bonus = 10; if (.@r>=7) { .@bonus += 5; } if (.@r>=9) { .@bonus += 10; } bonus bHealPower,.@bonus; - Id: 26108 AegisName: Sinister_Rod_J Name: Rod of Evil Type: Weapon SubType: Staff Buy: 100000 Weight: 300 Attack: 40 MagicAttack: 100 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,pow(getrefine(),2); - Id: 26109 AegisName: Staff_Of_Bordeaux_IL Name: Illusion Staff of Bordeaux Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 60 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Script: | bonus bInt,3; bonus bDex,2; if (getskilllv("SA_DRAGONOLOGY") == 5) { .@val = getrefine()/3; bonus bMatkRate,(5+.@val); bonus bUseSPrate,(-15-(5*.@val)); } - Id: 26110 AegisName: CandyCaneRod Name: Candy Cane Rod Type: Weapon SubType: Staff Buy: 20 Weight: 500 Attack: 10 MagicAttack: 140 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: 4 EquipLevelMin: 99 Refineable: true Script: | bonus bInt,2; bonus bFlee,2*getrefine(); if (getrefine()>= 10) { bonus bFlee2,10; } - Id: 26111 AegisName: Metal_Foxtail Name: Metal Foxtail Type: Weapon SubType: Staff Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine() * 3; bonus bBaseAtk,.@r; bonus bMatk,.@r; if (BaseLevel >= 20) { .@r = min(BaseLevel,120)/10*3; bonus bBaseAtk,.@r; bonus bMatk,.@r; } bonus bUnbreakableWeapon; - Id: 26112 AegisName: Probation_Foxtail Name: Trial Summoner's Foxtail Type: Weapon SubType: Staff Buy: 20 Attack: 220 MagicAttack: 220 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; bonus bMatk,3*(min(BaseLevel,160)/10); bonus bBaseAtk,3*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bDelayrate,-2*getskilllv("SU_PICKYPECK"); bonus bVariableCastrate,-2*getskilllv("SU_SV_STEMSPEAR"); } - Id: 26118 AegisName: Shadow_Staff_K Name: Shadow Staff Type: Weapon SubType: Staff Weight: 500 Attack: 40 MagicAttack: 155 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r*10; if (.@r>=3) bonus2 bSkillAtk,"SO_EARTHGRAVE",.@r/3; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; - Id: 26119 AegisName: Rebeginer_SO_Rod Name: Beginner Sorcerer's Staff Type: Weapon SubType: Staff Attack: 70 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; if (getrefine()>=7) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; } - Id: 26120 AegisName: Rebeginer_DO_Rod Name: Beginner Summoner's Foxtail Type: Weapon SubType: Staff Attack: 150 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,130; bonus bUnbreakableWeapon; bonus bVariableCastrate,-10; if (getrefine()>=7) { bonus2 bSkillAtk,"SU_CN_METEOR",15; } - Id: 26138 AegisName: Wand_Of_Flame Name: Hellfire Staff Type: Weapon SubType: 2hStaff Buy: 50000 Weight: 800 Attack: 110 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; - Id: 26139 AegisName: Wand_Of_Ice Name: Icicle Staff Type: Weapon SubType: 2hStaff Buy: 50000 Weight: 800 Attack: 110 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bInt,5; bonus bMatk,15*(.@r/2); bonus bUnbreakableWeapon; if (.@r>=9) .@val = 15; else if (.@r>=7) .@val = 5; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Holy,.@val; - Id: 26140 AegisName: WitchsBroomStick Name: Witch's Broom Type: Weapon SubType: Staff Weight: 300 Attack: 117 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Formless,10; bonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,10; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bMatk,35; if (.@r>=9) { bonus2 bMagicAddRace,RC_Formless,10; if (.@r>=11) { bonus bDelayrate,-10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bSMatk,2; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus bSpl,3; if (.@g >= ENCHANTGRADE_B) { bonus bVariableCastrate,-5; } } } - Id: 26143 AegisName: Diva_Foxtail Name: Diva Foxtail Type: Weapon SubType: Staff Weight: 400 Attack: 150 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,2*.@r; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; bonus bMatkRate,4; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; bonus bMatkRate,4; } - Id: 26144 AegisName: Mirage_Foxtail Name: Mirage Foxtail Type: Weapon SubType: Staff Weight: 400 Attack: 150 MagicAttack: 180 Range: 5 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (getskilllv("SU_SOULATTACK") == 1) { bonus bBaseAtk,20; } bonus bHealPower,2*.@r; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; bonus bMatkRate,4; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; bonus bMatkRate,4; } - Id: 26146 AegisName: Woe_Healstaff1_Z Name: Lesser Guild Member's Healing Staff Type: Weapon SubType: Staff Weight: 500 Attack: 70 MagicAttack: 125 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,10+.@r; bonus bDelayrate,-5; bonus2 bSkillUseSPrate,"AL_INCAGI",2+.@r; bonus2 bSkillUseSPrate,"AL_BLESSING",2+.@r; if (.@r>=7) bonus bHealPower,5; if (.@r>=9) bonus bHealPower,10; if (.@r>=10) autobonus3 "{ .@r = getrefine(); bonus bHealPower,25+(.@r-10); }",100,20000,"AL_HEAL"; - Id: 26147 AegisName: Woe_Wand1_Z Name: Lesser Guild Member's Arc Wand Type: Weapon SubType: Staff Weight: 500 Attack: 60 MagicAttack: 115 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMatk,5*(.@r/2); bonus2 bMagicAddRace,RC_Player_Human,15+.@r; bonus2 bMagicAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; } if (.@r>=10) { bonus2 bVariableCastrate,"SA_LANDPROTECTOR",-30; autobonus3 "{ bonus bNoGemStone; }",1000,10000,"SA_DELUGE"; autobonus3 "{ bonus bNoGemStone; }",1000,10000,"SA_VIOLENTGALE"; autobonus3 "{ bonus bNoGemStone; }",1000,10000,"SA_VOLCANO"; } - Id: 26149 AegisName: Variant_Wand Name: Abyss Wand Type: Weapon SubType: Staff Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bHealPower,.@r*2; if (.@r>=7) { bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 26150 AegisName: Variant_Foxtail Name: Abyss Foxtail Type: Weapon SubType: Staff Weight: 400 Attack: 150 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bHealPower,.@r*2; if (.@r>=7) { bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 26151 AegisName: Rutilus_Stick_OS Name: Rutilus Stick-OS Type: Weapon SubType: Staff Buy: 20 Weight: 900 Attack: 80 MagicAttack: 175 Range: 1 Slots: 2 Jobs: SuperNovice: true Wizard: true Priest: true SoulLinker: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,5; bonus2 bMagicAddEle,Ele_Earth,5; if (.@r >= 7) { bonus bVariableCastrate,-7; if (.@r >= 9) { autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,30; }",40,10000,BF_MAGIC,"{ specialeffect2 255; }"; if (.@r >= 11) { bonus bDelayrate,-10; } } } - Id: 26152 AegisName: Staff_Of_Puffy_jp Name: Staff of Puffy Type: Weapon SubType: Staff Weight: 300 Attack: 70 MagicAttack: 150 Range: 5 Slots: 1 Jobs: Priest: true Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (getskilllv("SO_SPELLFIST")>=5) { bonus2 bSkillAtk,"MG_FIREBOLT",.@r*3; bonus2 bSkillAtk,"MG_COLDBOLT",.@r*3; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@r*3; } if (.@r>=10) { skill "TF_DOUBLE",3; } - Id: 26154 AegisName: SoulWeight Name: Spirit Pendulum Type: Weapon SubType: Staff Weight: 1100 Attack: 70 MagicAttack: 160 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r*10; if (.@r>=3) bonus bMaxSPrate,.@r/3*2; if (.@r>=7) bonus2 bSkillAtk,"SP_SPA",15; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bSkillAtk,"SP_SWHOO",20; - Id: 26155 AegisName: MeawFoxtail Name: Meowmeow Foxtail Type: Weapon SubType: Staff Buy: 20 Weight: 1100 Attack: 300 MagicAttack: 300 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillAtk,"SU_CN_METEOR",20; } } } - Id: 26156 AegisName: Evt_Shadow_Staff_K Name: Sealed Shadow Staff Type: Weapon SubType: Staff Attack: 40 MagicAttack: 155 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } - Id: 26158 AegisName: Crimson_Rose_Stick Name: Crimson Rose Stick Type: Weapon SubType: Staff Buy: 20 Weight: 700 Attack: 100 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r >= 9) { bonus2 bSkillAtk,"WL_HELLINFERNO",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; } - Id: 26159 AegisName: Psychic_Spear_Rod Name: Psychic Spear Rod Type: Weapon SubType: Staff Buy: 20 Weight: 800 Attack: 120 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r >= 9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; } if (.@r >= 11) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } - Id: 26160 AegisName: Dust_Grave Name: Dust Grave Type: Weapon SubType: Staff Buy: 20 Weight: 800 Attack: 120 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); if (.@r >= 11) .@val = 50; else if (.@r >= 9) .@val = 30; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@val; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@val; bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; - Id: 26161 AegisName: Ponitendtia Name: Penitentia Type: Weapon SubType: Staff Buy: 20 Weight: 700 Attack: 100 MagicAttack: 175 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r >= 9) { bonus2 bSkillAtk,"PR_MAGNUS",(.@r>=11) ? 50 : 30; bonus2 bSkillAtk,"AB_JUDEX",30; } - Id: 26162 AegisName: Ein_1HWAND Name: Welding Wand Type: Weapon SubType: Staff Weight: 1200 Attack: 160 Range: 1 Slots: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,200; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,7; bonus2 bMagicAtkEle,Ele_Fire,7; bonus2 bMagicAtkEle,Ele_Water,7; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bMatk,40; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,8; bonus2 bMagicAtkEle,Ele_Fire,8; bonus2 bMagicAtkEle,Ele_Water,8; autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_MAGIC; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 26163 AegisName: Rainbow_Foxtail Name: Rainbow Foxtail Type: Weapon SubType: Staff Buy: 20 Weight: 400 Attack: 110 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Spirit_Handler: true Summoner: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBOLT",4,40; bonus3 bAutoSpell,"MG_COLDBOLT",4,40; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",4,40; bonus3 bAutoSpell,"WZ_EARTHSPIKE",4,40; bonus bBaseAtk,10*.@r; bonus bMatk,10*.@r; bonus bAspdRate,.@r; - Id: 26164 AegisName: ElectricFox_OS Name: Electric Fox-OS Type: Weapon SubType: Staff Weight: 1200 Attack: 250 MagicAttack: 350 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bMatkRate,5; .@r = getrefine(); if (.@r>=7) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20; } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=11) { bonus2 bSkillAtk,"SU_CN_METEOR",30; } - Id: 26165 AegisName: R_Cleric_Staff Name: Royal Cleric Staff Type: Weapon SubType: Staff Weight: 1000 Attack: 100 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,5; bonus bMatk,170; bonus bUnbreakableWeapon; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"AB_ADORAMUS",20; } if (.@r>=11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } - Id: 26166 AegisName: R_Magician_Wand Name: Royal Magician Wand Type: Weapon SubType: Staff Weight: 800 Attack: 80 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,5; bonus bMatk,180; bonus bUnbreakableWeapon; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"WL_HELLINFERNO",20; bonus2 bSkillAtk,"WL_CRIMSONROCK",20; } if (.@r>=11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } - Id: 26167 AegisName: Aquarius_Staff_J Name: Aquarius Staff Type: Weapon SubType: Staff Buy: 20 Weight: 300 MagicAttack: 10 Range: 1 Slots: 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: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatk,50+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { bonus bAspdRate,10; bonus bDelayrate,-10; bonus bMatkRate,25; bonus2 bSkillAtk,"WL_HELLINFERNO",50; bonus2 bSubRace,RC_DemiHuman,10; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; } } - Id: 26168 AegisName: Crimson_Rose_Stick_J Name: Crimson Rose Stick Type: Weapon SubType: Staff Buy: 200000 Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"WL_CRIMSONROCK",30; - Id: 26169 AegisName: Psychic_Spear_Rod_J Name: Psychic Spear Rod Type: Weapon SubType: Staff Buy: 200000 Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; - Id: 26170 AegisName: Dust_Grave_J Name: Dust Grave Type: Weapon SubType: Staff Buy: 200000 Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"WZ_EARTHSPIKE",30; - Id: 26171 AegisName: Ponitendtia_J Name: Ponitendtia Type: Weapon SubType: Staff Buy: 200000 Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"PR_MAGNUS",30; - Id: 26172 AegisName: R_Foxtail_rod Name: Royal Foxtail Type: Weapon SubType: Staff Weight: 1200 Attack: 275 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,5; bonus bMatk,350; bonus bUnbreakableWeapon; bonus bMatk,4*.@r; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_PICKYPECK",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 26175 AegisName: Chromium_Staff_EXE Name: Chromium Staff Type: Weapon SubType: 2hStaff Weight: 1300 Attack: 120 Range: 1 Slots: 1 Jobs: Wizard: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bInt,3; bonus bMatk,180; if (.@r>=5) { bonus bMatkRate,2; bonus bAspd,1; } if (.@r>=7) { bonus bMatk,10; bonus2 bSkillAtk,"WZ_JUPITEL",10; bonus2 bVariableCastrate,"WZ_JUPITEL",-10; } if (.@r>=9) { bonus bMatk,20; bonus2 bSkillAtk,"WZ_JUPITEL",20; bonus2 bVariableCastrate,"WZ_JUPITEL",-20; } if (.@r>=10) { bonus bMatkRate,3; bonus bMaxHP,700; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Wind,2; } if (.@r>=12) { bonus bDelayrate,-5; bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bMagicAtkEle,Ele_Wind,3; } - Id: 26176 AegisName: Karlite_Staff_EXE Name: Karlite Staff Type: Weapon SubType: Staff Weight: 800 Attack: 110 Range: 1 Slots: 1 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bInt,3; bonus bMatk,100; if (.@r>=5) { bonus bMatkRate,2; bonus bAspd,1; } if (.@r>=7) { bonus bMatk,10; bonus2 bSkillAtk,"SL_SMA",20; } if (.@r>=9) { bonus bMatk,20; bonus2 bVariableCastrate,"SL_SMA",-20; skill "HW_GRAVITATION",5; } if (.@r>=10) { bonus bMatkRate,3; bonus bMaxHP,700; bonus2 bMagicAtkEle,Ele_Dark,2; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Fire,2; bonus2 bMagicAtkEle,Ele_Ghost,2; bonus2 bMagicAtkEle,Ele_Holy,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Wind,2; } if (.@r>=12) { bonus bDelayrate,-5; bonus2 bMagicAtkEle,Ele_Dark,3; bonus2 bMagicAtkEle,Ele_Earth,3; bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bMagicAtkEle,Ele_Ghost,3; bonus2 bMagicAtkEle,Ele_Holy,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bMagicAtkEle,Ele_Wind,3; } - Id: 26177 AegisName: Wizards_Memory Name: Wizard's Memory Type: Weapon SubType: Staff Buy: 20 Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,2*.@r; bonus2 bSkillAtk,"WL_FROSTMISTY",BaseLevel; bonus2 bSkillAtk,"WL_JACKFROST",BaseLevel; - Id: 26178 AegisName: Comp_Shadow_Staff_K Name: "[Not For Sale] Shadow Staff" Type: Weapon SubType: Staff Weight: 500 Attack: 40 MagicAttack: 155 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r*10; bonus2 bSkillAtk,"SO_EARTHGRAVE",.@r/3; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; - Id: 26200 AegisName: Hippie_Rope Name: Hippie Rope Type: Weapon SubType: Whip Weight: 1000 Attack: 140 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@lvl = getskilllv("WM_LESSON"); bonus bAspdRate,.@lvl; if (.@r>=7) bonus bBaseAtk,(5*.@lvl); if (.@r>=9) bonus bAspd,1; - Id: 26201 AegisName: Diva_Blade_Whip Name: Diva Blade Whip Type: Weapon SubType: Whip Weight: 500 Attack: 150 MagicAttack: 120 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",150; if (.@r>=9) bonus2 bSkillAtk,"CG_ARROWVULCAN",50; - Id: 26202 AegisName: Mirage_Blade_Whip Name: Mirage Blade Whip Type: Weapon SubType: Whip Weight: 500 Attack: 150 MagicAttack: 120 Range: 5 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) bonus2 bSkillAtk,"CG_ARROWVULCAN",150; if (.@r>=9) bonus2 bSkillAtk,"CG_ARROWVULCAN",50; - Id: 26203 AegisName: Sinister_Wire_J Name: Wire of Evil Type: Weapon SubType: Whip Buy: 100000 Weight: 500 Attack: 100 MagicAttack: 100 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,pow(getrefine(),2); - Id: 26204 AegisName: Hippie_Rope_J Name: Hippie Rope Type: Weapon SubType: Whip Weight: 1000 Attack: 140 MagicAttack: 120 Range: 2 Slots: 3 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bVit,.@r; bonus bMaxHPrate,.@r; if (.@r>=7) { bonus2 bSkillAtk,"CG_ARROWVULCAN",150; bonus2 bSubRace,RC_DemiHuman,5; } if (.@r>=9) { bonus2 bSkillAtk,"CG_ARROWVULCAN",50; bonus2 bSubRace,RC_DemiHuman,5; } - Id: 26210 AegisName: Woe_Whip1_Z Name: Lesser Guild Member's Lariat Type: Weapon SubType: Whip Weight: 400 Attack: 70 Range: 2 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,15+.@r; bonus2 bAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,20+(.@r-10); bonus bVariableCastrate,-30; autobonus3 "{ .@r = getrefine(); bonus2 bSkillAtk,\"DC_THROWARROW\",30+(.@r-10); }",1000,60000,"BD_ADAPTATION"; } - Id: 26212 AegisName: Heart_Whip Name: Heart Whip Type: Weapon SubType: Whip Weight: 1200 Attack: 100 MagicAttack: 190 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; - Id: 26213 AegisName: Scarlet_Ribbon Name: Scarlet Ribbon Type: Weapon SubType: Whip Weight: 1200 Attack: 180 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; - Id: 26215 AegisName: Ein_1HWHIP Name: Safety Whip Type: Weapon SubType: Whip Weight: 1400 Attack: 200 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,40; } if (.@r>=9) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } - Id: 26216 AegisName: R_Wheep Name: Royal Whip Type: Weapon SubType: Whip Weight: 1000 Attack: 100 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bMatk,180; bonus bUnbreakableWeapon; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; bonus2 bSkillAtk,"WM_METALICSOUND",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; } if (.@r>=11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; } - Id: 26217 AegisName: Heart_Whip_J Name: Heart Whip Type: Weapon SubType: Whip Buy: 200000 Weight: 500 Attack: 150 MagicAttack: 120 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"WM_METALICSOUND",30; - Id: 26218 AegisName: Scarlet_Ribbon_J Name: Scarlet Ribbon Type: Weapon SubType: Whip Buy: 200000 Weight: 500 Attack: 150 MagicAttack: 120 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"CG_ARROWVULCAN",30; - Id: 26221 AegisName: Dark_Illu_Whips_TH Name: Dark Illusion Whip Type: Weapon SubType: Whip Weight: 1000 Attack: 160 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillCooldown,"CG_ARROWVULCAN",-100; if (.@r>=9) { bonus bLongAtkRate,7; if (.@r>=11) { bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus bDelayrate,-10; } } } - Id: 28000 AegisName: Thanos_Katar Name: Thanos Katar Type: Weapon SubType: Katar Buy: 10 Weight: 1800 Attack: 220 MagicAttack: 80 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 28001 AegisName: Katar_Of_Evil_Slayer Name: Evil Slayer Ripper Katar Type: Weapon SubType: Katar Weight: 1200 Attack: 120 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; .@r = getrefine(); if (.@r>=9) { .@dmg = 5; if (.@r>=12) { .@dmg += 7; } bonus bAtkRate,.@dmg; } - Id: 28002 AegisName: Half_BF_Katar2 Name: Half BF Katar2 Type: Weapon SubType: Katar Buy: 20 Attack: 130 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 80 Refineable: true Script: | bonus bStr,1; bonus bDex,1; bonus bLuk,1; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus bCritAtkRate,10; bonus bAspdRate,3; bonus bUnbreakableWeapon; - Id: 28005 AegisName: Ru_Blue_Katar Name: Blue Katar Type: Weapon SubType: Katar Buy: 10 Weight: 1200 Attack: 190 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,5; bonus bStr,5; - Id: 28006 AegisName: Ru_Gold_Katar Name: Ru Gold Katar Type: Weapon SubType: Katar Weight: 1200 Attack: 190 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bAgi,8; bonus bStr,8; - Id: 28007 AegisName: Scarlet_Katar Name: Crimson Katar Type: Weapon SubType: Katar Buy: 20 Weight: 1300 Attack: 130 Range: 1 Slots: 2 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); - Id: 28008 AegisName: Sinister_Katar Name: Katar of Vicious Mind Type: Weapon SubType: Katar Buy: 20 Weight: 1800 Attack: 180 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); - Id: 28010 AegisName: Katar_170 Name: Juliette D. Rachel Type: Weapon SubType: Katar Buy: 20 Weight: 2500 Attack: 300 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bAddClass,Class_All,(.@r/2); bonus bAspdRate,.@r; bonus bUnbreakableWeapon; - Id: 28011 AegisName: Union_Katar Name: Unity Katar Type: Weapon SubType: Katar Buy: 20 Weight: 650 Attack: 123 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 28014 AegisName: Kings_Double_Edge Name: Old King's Double Edge Type: Weapon SubType: Katar Buy: 20 Weight: 2800 Attack: 150 Range: 1 Slots: 3 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,GC_CROSSIMPACT,3*.@r; bonus2 bSkillAtk,GC_CROSSRIPPERSLASHER,2*.@r; bonus2 bSkillAtk,GC_ROLLINGCUTTER,.@r; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bAspdRate,5; if (.@r>=10) bonus bDefRatioAtkClass,Class_All; - Id: 28015 AegisName: Toughen_Metal_Katar Name: Enhanced Metal Katar Type: Weapon SubType: Katar Buy: 20 Attack: 100 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; bonus bCritAtkRate,2*.@r; bonus bAspdRate,2*.@r; bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10)); - Id: 28018 AegisName: Diva_Katar Name: Diva Katar Type: Weapon SubType: Katar Weight: 2800 Attack: 150 MagicAttack: 250 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28019 AegisName: Mirage_Katar Name: Mirage Katar Type: Weapon SubType: Katar Weight: 2800 Attack: 150 MagicAttack: 250 Range: 5 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28020 AegisName: Sinister_Katar_J Name: Katar of Evil Type: Weapon SubType: Katar Buy: 100000 Weight: 800 Attack: 110 Range: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 28022 AegisName: Infiltrator_IL Name: Illusion Infiltrator Type: Weapon SubType: Katar Weight: 1500 Attack: 200 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddRace,RC_DemiHuman,60; bonus2 bAddRace,RC_Player_Human,60; bonus bDef,3; .@flee = 5; .@flee2 = 2; if (getrefine() >= 9) { .@flee += 5; .@flee2 += 2; bonus2 bAddClass,Class_All,5; } bonus bFlee,.@flee; bonus bFlee2,.@flee2; - Id: 28023 AegisName: Ghoul_Leg_IL Name: Illusion Sharpened Legbone of Ghoul Type: Weapon SubType: Katar Weight: 1700 Attack: 220 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | autobonus "{ bonus bDefEle,Ele_Undead; sc_start SC_ENDURE,6000,1; }",40,6000,BF_WEAPON|BF_SHORT,"{ active_transform 1036,6000; specialeffect2 EF_POTION_BERSERK; /* todo replace by 3753 when implemented */ }"; - Id: 28024 AegisName: Probation_Katar Name: Trial Guillotine Cross's Katar Type: Weapon SubType: Katar Buy: 20 Attack: 180 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bAspdRate,getskilllv("AS_KATAR"); } - Id: 28026 AegisName: Neev_Various_Jur Name: Neev Katar Type: Weapon SubType: Katar Buy: 100000 Weight: 2800 Attack: 150 MagicAttack: 250 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 28027 AegisName: Rebeginer_GC_Katar Name: Beginner Guillotine Cross's Katar Type: Weapon SubType: Katar Attack: 170 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | bonus bAspdRate,10; if (getrefine()>=7) { bonus bCritAtkRate,7; } - Id: 28036 AegisName: Woe_Katar1_Z Name: Lesser Guild Member's Jamadhar Type: Weapon SubType: Katar Weight: 600 Attack: 125 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus "{ .@r = getrefine(); bonus bCritAtkRate,20+((.@r-10)*2); }",100,7000,BF_WEAPON; - Id: 28037 AegisName: Variant_Katar Name: Abyss Katar Type: Weapon SubType: Katar Weight: 2800 Attack: 150 MagicAttack: 250 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28038 AegisName: Meuchler_OS Name: Meuchler-OS Type: Weapon SubType: Katar Buy: 20 Weight: 1300 Attack: 190 Range: 1 Slots: 2 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; if (.@r >= 11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } - Id: 28039 AegisName: Shiver_Katar_K Name: Katar of Shiver Type: Weapon SubType: Katar Weight: 1200 Attack: 185 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus bCritAtkRate,(.@r/3)*4; if (.@r>=7) { .@val = 15; if (.@r>=11) .@val += 20; bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Player_Human,.@val; bonus2 bAddRace,RC_Brute,.@val; bonus2 bAddRace,RC_Player_Doram,.@val; } if (.@r>=9) bonus bAspdRate,10; - Id: 28040 AegisName: Evt_Shiver_Katar_K Name: Sealed Katar of Shiver Type: Weapon SubType: Katar Attack: 185 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bCritAtkRate,4*(.@r/3); if (.@r>=9) { bonus2 bAddRace,RC_Brute,35; bonus2 bAddRace,RC_DemiHuman,35; bonus2 bAddRace,RC_Player_Human,35; bonus2 bAddRace,RC_Player_Doram,35; bonus bAspdRate,10; } else if (.@r>=7) { bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } - Id: 28042 AegisName: Reaper_Cross Name: Ripper Cross Type: Weapon SubType: Katar Buy: 20 Weight: 1500 Attack: 250 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20; - Id: 28044 AegisName: Agudo_Filo Name: Agudo Filo Type: Weapon SubType: Katar Buy: 20 Weight: 2000 Attack: 270 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bCritAtkRate,5; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableWeapon; bonus bAtkRate,7; } - Id: 28045 AegisName: Ein_BHKATAR Name: Bolt Crusher Type: Weapon SubType: Katar Weight: 2000 Attack: 300 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,60; } if (.@r>=9) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 28046 AegisName: R_Katar Name: Royal Katar Type: Weapon SubType: Katar Weight: 1500 Attack: 200 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; bonus bBaseAtk,5*.@r; if (.@r>=9) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 28047 AegisName: Scorpio_Katar_J Name: Scorpio Katar Type: Weapon SubType: Katar Buy: 20 Weight: 1000 Attack: 10 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,100+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { bonus bFlee,50; bonus bAtkRate,50; bonus2 bSubClass,Class_Boss,50; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - Id: 28048 AegisName: Reaper_Cross_J Name: Ripper Cross Type: Weapon SubType: Katar Buy: 200000 Weight: 2800 Attack: 150 MagicAttack: 250 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",30; - Id: 28049 AegisName: Agudo_Filo_J Name: Agate Filo Type: Weapon SubType: Katar Buy: 200000 Weight: 2800 Attack: 150 MagicAttack: 250 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"AS_SONICBLOW",30; - Id: 28053 AegisName: Comp_Shiver_Katar_K_TH Name: "[Not For Sale] Katar of Shiver" Type: Weapon SubType: Katar Weight: 1200 Attack: 185 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus bCritAtkRate,(.@r/3)*4; if (.@r>=7) { .@val = 15; if (.@r>=11) .@val += 20; bonus2 bAddRace,RC_DemiHuman,.@val; bonus2 bAddRace,RC_Player_Human,.@val; bonus2 bAddRace,RC_Brute,.@val; bonus2 bAddRace,RC_Player_Doram,.@val; } if (.@r>=9) bonus bAspdRate,10; - Id: 28100 AegisName: Thanos_Axe Name: Thanos Axe Type: Weapon SubType: 2hAxe Buy: 10 Weight: 4000 Attack: 300 MagicAttack: 80 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | bonus bInt,6; bonus bVit,6; bonus bLuk,-6; bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,5; bonus2 bHPLossRate,100,10000; UnEquipScript: | heal -1000,0; - Id: 28101 AegisName: Tornado_Axe Name: Tornado Axe Type: Weapon SubType: 2hAxe Buy: 30000 Weight: 4000 Attack: 320 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Classes: All_Upper: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkEle,Ele_Wind; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; - Id: 28102 AegisName: Half_BF_Two_Handed_Axe1 Name: Half BF Two Handed Axe1 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 Script: | bonus bStr,3; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; - Id: 28103 AegisName: Ru_Blue_Axe_M Name: Blue Twohand Axe Type: Weapon SubType: 2hAxe Buy: 10 Weight: 3000 Attack: 330 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Script: | bonus bStr,5; bonus bVit,5; - Id: 28104 AegisName: Ru_Gold_Axe_M Name: Ru Gold Axe M Type: Weapon SubType: 2hAxe Weight: 3000 Attack: 330 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bStr,8; bonus bVit,8; - Id: 28105 AegisName: Axe_Of_Infinite Name: Infinity Axe Type: Weapon SubType: 2hAxe Buy: 20 Weight: 500 Attack: 265 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 28106 AegisName: Scarlet_Twohand_Axe Name: Crimson Two-Handed Axe Type: Weapon SubType: 2hAxe Buy: 20 Weight: 2000 Attack: 200 Range: 1 Slots: 2 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bUnbreakableWeapon; - Id: 28107 AegisName: Sinister_Twohand_Axe Name: Two Handed Axe of Vicious Mind Type: Weapon SubType: 2hAxe Buy: 20 Weight: 2500 Attack: 250 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; - Id: 28110 AegisName: Union_Twohand_Axe Name: Unity Two-Handed Axe Type: Weapon SubType: 2hAxe Buy: 20 Weight: 1000 Attack: 190 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 28113 AegisName: Toughen_Metal_THand_Axe Name: Enhanced Metal Two-Handed Axe Type: Weapon SubType: 2hAxe Buy: 20 Attack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"NC_AXETORNADO",10; bonus bUnbreakableWeapon; bonus bBaseAtk,9*getrefine()+8*(min(BaseLevel,150)/10); - Id: 28114 AegisName: Veteran_Axe_ Name: Veteran Axe Type: Weapon SubType: 2hAxe Weight: 3000 Attack: 250 Range: 1 Slots: 3 Jobs: Alchemist: true Blacksmith: true Merchant: 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; bonus4 bAutoSpellOnSkill,"BS_HAMMERFALL","SM_MAGNUM",3,50; - Id: 28116 AegisName: Mine_Worker_Pickax Name: Mine Worker's Pickaxe Type: Weapon SubType: 2hAxe Buy: 10 Weight: 4000 Attack: 300 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; autobonus "{ bonus bCritical,20; }",50,7000,BF_SHORT,"{ specialeffect2 EF_ENCHANCE; }"; .@r = getrefine(); if (.@r>=9) { bonus bCritAtkRate,15; } else if (.@r>=7) { bonus bCritAtkRate,5; } - Id: 28117 AegisName: Diva_Twohand_Axe Name: Diva Twohand Axe Type: Weapon SubType: 2hAxe Weight: 4000 Attack: 320 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28118 AegisName: Mirage_Twohand_Axe Name: Mirage Twohand Axe Type: Weapon SubType: 2hAxe Weight: 4000 Attack: 320 MagicAttack: 200 Range: 5 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28119 AegisName: Sinister_Twohand_Axe_J Name: Two-Handed Axe of Evil Type: Weapon SubType: 2hAxe Buy: 100000 Weight: 1100 Attack: 250 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 28120 AegisName: Probation_TH_Axe Name: Trial Mechanic's Two-Handed Axe Type: Weapon SubType: 2hAxe Buy: 20 Attack: 200 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NC_AXETORNADO",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus2 bSkillCooldown,"NC_AXETORNADO",-100*getskilllv("BS_WEAPONRESEARCH"); } - Id: 28121 AegisName: Neev_Guillotine Name: Neev Guillotine Type: Weapon SubType: 2hAxe Buy: 100000 Weight: 4000 Attack: 180 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 28122 AegisName: Neev_Buster Name: Neev Buster Type: Weapon SubType: 2hAxe Buy: 100000 Weight: 3500 Attack: 180 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 28127 AegisName: Mine_Worker_Pickax_J Name: Mine Worker's Pickaxe Type: Weapon SubType: 2hAxe Weight: 400 Attack: 300 Range: 1 Slots: 3 Jobs: All: true Alchemist: false Blacksmith: false Crusader: false Knight: false Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-3000; bonus bVit,.@r; bonus bAtk,.@r*10; if (.@r>=9) bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; - Id: 28130 AegisName: Avenger Name: Avenger Type: Weapon SubType: 2hAxe Weight: 6000 Attack: 270 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); if (.@r>=2) { bonus bBaseAtk,.@r/2*10; } if (.@r>=3) { bonus2 bSkillAtk,"NC_AXETORNADO",.@r/3*10; } if (.@r>=9) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; } - Id: 28133 AegisName: Woe_Twohand_Axe1_Z Name: Lesser Guild Member's Two-Handed Axe Type: Weapon SubType: 2hAxe Weight: 1500 Attack: 175 Range: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus bAspdRate,10; } if (.@r>=10) autobonus3 "{ bonus bBreakWeaponRate,10000; }",10+(.@r-10),20000,"BS_OVERTHRUST"; - Id: 28135 AegisName: Variant_Twohand_Axe Name: Abyss Two Hand Axe Type: Weapon SubType: 2hAxe Weight: 4000 Attack: 320 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28136 AegisName: Blasti_OS Name: Blasti-OS Type: Weapon SubType: 2hAxe Buy: 20 Weight: 4500 Attack: 400 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@red = 10; bonus bUnbreakableWeapon; if (.@r >= 7) { .@red += 15; if (.@r >= 9) { bonus bLongAtkRate,15; if (.@r >= 11) { bonus bDelayrate,-10; } } } bonus2 bSubSize,Size_Medium,.@red; bonus2 bSubSize,Size_Large,.@red; - Id: 28137 AegisName: Evt_Avenger Name: Sealed Avenger Type: Weapon SubType: 1hAxe Attack: 270 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"NC_POWERSWING",10*(.@r/3); if (.@r>=7) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; } if (.@r>=9) { bonus2 bAddSize,Size_All,15; } - Id: 28138 AegisName: Maxi_Spanner Name: Maxi Spanner Type: Weapon SubType: 2hAxe Weight: 4500 Attack: 340 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Small,10; bonus2 bSubSize,Size_Medium,10; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillCooldown,"NC_MAGMA_ERUPTION",-1000; } if (.@r>=11) bonus2 bSkillAtk,"NC_AXETORNADO",15; - Id: 28140 AegisName: Ein_BHAXE Name: Saw Axe Type: Weapon SubType: 1hAxe Weight: 5000 Attack: 350 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NC_ARMSCANNON",10; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,60; } if (.@r>=9) { bonus bLongAtkRate,10; autobonus "{ bonus2 bAddSize,Size_All,15; }",1,5000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 28141 AegisName: G_Knight_BattleAxe Name: Guardian Knight Battle Axe Type: Weapon SubType: 2hAxe Weight: 5000 Attack: 270 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bSubSize,Size_Medium,10; bonus2 bSubSize,Size_Large,10; bonus bAtkRate,5; bonus bUnbreakableWeapon; bonus bLongAtkRate,.@r; if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillAtk,"NC_AXETORNADO",20; bonus2 bSkillAtk,"NC_MAGMA_ERUPTION",20; if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } } - Id: 28142 AegisName: Maxi_Spanner_J Name: Maxi Spanner Type: Weapon SubType: 2hAxe Buy: 200000 Weight: 4000 Attack: 320 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"WS_CARTTERMINATION",30; - Id: 28144 AegisName: aegis_28144 Name: Level 5 Two-Handed Axe # !todo check english name Type: Weapon SubType: 1hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 28200 AegisName: END_OF_HORIZON Name: End Of The Horizon Type: Weapon SubType: Grenade Buy: 2700000 Weight: 2400 Attack: 410 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | bonus3 bAddEff,Eff_Stun,500,ATF_LONG; bonus3 bAddEff,Eff_Blind,500,ATF_LONG; - Id: 28201 AegisName: Southern_Cross_R Name: Southern Cross Type: Weapon SubType: Grenade Buy: 2800000 Weight: 2000 Attack: 480 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 141 Refineable: true Script: | bonus2 bAddEff,Eff_Curse,300; bonus4 bAutoSpell,"KO_JYUMONJIKIRI",1,100,1; - Id: 28202 AegisName: Southern_Cross_R_ Name: Southern Cross Type: Weapon SubType: Grenade Buy: 2800000 Weight: 2000 Attack: 480 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 141 Refineable: true Script: | bonus2 bAddEff,Eff_Curse,300; bonus4 bAutoSpell,"KO_JYUMONJIKIRI",1,100,1; - Id: 28203 AegisName: Half_BF_Rifle1 Name: Half BF Rifle1 Type: Weapon SubType: Rifle Attack: 50 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 80 Refineable: true Script: | bonus bDex,2; bonus bHit,8; bonus bCritical,8; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bVariableCastrate,"GS_TRACKING",-20; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus bUnbreakableWeapon; - Id: 28204 AegisName: Half_BF_Shotgun1 Name: Half BF Shotgun1 Type: Weapon SubType: Shotgun Attack: 100 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 80 Refineable: true Script: | bonus bDex,2; bonus bSplashRange,1; bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Human,30; bonus2 bIgnoreDefRaceRate,RC_DemiHuman,10; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; autobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }"; bonus bUnbreakableWeapon; - Id: 28215 AegisName: Probation_Rifle Name: Trial Rebel's Rifle Type: Weapon SubType: Rifle Buy: 20 Attack: 200 Range: 9 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,10; bonus bCritical,20; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; bonus bBaseAtk,((min(BaseLevel,160)/10)*6); if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_TRACKING"); } - Id: 28216 AegisName: Probation_Gatling_Gun Name: Trial Rebel's Gatling Gun Type: Weapon SubType: Gatling Buy: 20 Attack: 180 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHit,-20; bonus bCritical,10; bonus bAspd,1; bonus2 bSkillAtk,"RL_FIRE_RAIN",20; bonus bBaseAtk,((min(BaseLevel,160)/10)*6); if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_GATLINGFEVER"); } - Id: 28217 AegisName: Probation_Launcher Name: Trial Rebel's Grenade Launcher Type: Weapon SubType: Grenade Buy: 20 Attack: 350 Range: 9 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"RL_D_TAIL",20; bonus bBaseAtk,((min(BaseLevel,160)/10)*6); if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_GROUNDDRIFT"); } - Id: 28218 AegisName: Probation_Shotgun Name: Trial Rebel's Shotgun Type: Weapon SubType: Shotgun Buy: 20 Attack: 180 Range: 9 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bSplashRange,1; bonus bHit,-15; bonus2 bSkillAtk,"RL_S_STORM",20; bonus bBaseAtk,((min(BaseLevel,160)/10)*6); if (getrefine()>6) { bonus bLongAtkRate,getskilllv("GS_DUST"); } - Id: 28223 AegisName: Just_Finish Name: Finisher Type: Weapon SubType: Rifle Buy: 20 Weight: 2000 Attack: 200 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_AM_BLAST",30; bonus2 bSkillAtk,"RL_MASS_SPIRAL",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_AM_BLAST",-1000; } } - Id: 28224 AegisName: Dust_Fire Name: Dustfire Type: Weapon SubType: Shotgun Buy: 20 Weight: 1300 Attack: 300 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus3 bAddEff,Eff_Blind,50,ATF_LONG; if (.@r >= 7) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@r >= 9) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",15; } } - Id: 28225 AegisName: Burning_Rose Name: Burning Rose Type: Weapon SubType: Gatling Buy: 20 Weight: 2500 Attack: 200 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; } } - Id: 28226 AegisName: Revenger Name: Avenger Type: Weapon SubType: Grenade Buy: 20 Weight: 1800 Attack: 350 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,20; if (.@r >= 7) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_H_MINE",-1000; } } - Id: 28227 AegisName: Diva_Rifle Name: Diva Rifle Type: Weapon SubType: Rifle Weight: 850 Attack: 170 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",(readparam(bInt)/10)*7; if (readparam(bInt)>=110) bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28228 AegisName: Mirage_Rifle Name: Mirage Rifle Type: Weapon SubType: Rifle Weight: 850 Attack: 170 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,2*getskilllv("GS_SNAKEEYE"); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",(readparam(bInt)/10)*7; if (readparam(bInt)>=110) bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28229 AegisName: Diva_Gatling_Gun Name: Diva Gatling Gun Type: Weapon SubType: Gatling Weight: 2500 Attack: 120 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_R_TRIP",(readparam(bAgi)/10)*7; if (readparam(bAgi)>=110) bonus2 bSkillAtk,"RL_R_TRIP",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28230 AegisName: Mirage_Gatling_Gun Name: Mirage Gatling Gun Type: Weapon SubType: Gatling Weight: 2500 Attack: 120 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,2*getskilllv("GS_SNAKEEYE"); bonus2 bSkillAtk,"RL_R_TRIP",(readparam(bAgi)/10)*7; if (readparam(bAgi)>=110) bonus2 bSkillAtk,"RL_R_TRIP",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28231 AegisName: Diva_Launcher Name: Diva Launcher Type: Weapon SubType: Grenade Weight: 1400 Attack: 210 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_D_TAIL",(readparam(bLuk)/10)*7; if (readparam(bLuk)>=110) bonus2 bSkillAtk,"RL_D_TAIL",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28232 AegisName: Mirage_Launcher Name: Mirage Launcher Type: Weapon SubType: Grenade Weight: 1400 Attack: 210 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,2*getskilllv("GS_SNAKEEYE"); bonus2 bSkillAtk,"RL_D_TAIL",(readparam(bLuk)/10)*7; if (readparam(bLuk)>=110) bonus2 bSkillAtk,"RL_D_TAIL",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28233 AegisName: Diva_Shotgun Name: Diva Shotgun Type: Weapon SubType: Shotgun Weight: 3000 Attack: 180 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus2 bSkillAtk,"RL_SLUGSHOT",(readparam(bStr)/10)*7; if (readparam(bStr)>=110) bonus2 bSkillAtk,"RL_SLUGSHOT",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28234 AegisName: Mirage_Shotgun Name: Mirage Shotgun Type: Weapon SubType: Shotgun Weight: 3000 Attack: 180 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus2 bSkillAtk,"RL_SLUGSHOT",(readparam(bStr)/10)*7; bonus bBaseAtk,2*getskilllv("GS_SNAKEEYE"); if (readparam(bStr)>=110) bonus2 bSkillAtk,"RL_SLUGSHOT",30; if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28235 AegisName: Neev_Rifle Name: Neev Rifle Type: Weapon SubType: Rifle Buy: 100000 Weight: 850 Attack: 170 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",7*(readparam(bInt)/10); if (readparam(bInt)>=110) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",30; } if (BaseLevel>=175) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 28236 AegisName: Calf_Kingcobra_J Name: Metal Kingcobra Type: Weapon SubType: Rifle Buy: 20 Weight: 850 Attack: 170 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bVit,3; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSubRace,RC_Player_Doram,30; bonus bLongAtkRate,50; bonus2 bSkillCooldown,"RL_AM_BLAST",-5000; bonus2 bSkillAtk,"RL_R_TRIP",7*(readparam(bInt)/10); bonus2 bFixedCastrate,"RL_AM_BLAST",-10*getrefine(); if (readparam(bInt)>=110) bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",30; - Id: 28237 AegisName: Calf_Diamondback_J Name: Metal Diamondback Type: Weapon SubType: Gatling Buy: 20 Weight: 2500 Attack: 120 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bVit,3; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSubRace,RC_Player_Doram,30; bonus bLongAtkRate,50; bonus2 bSkillAtk,"RL_R_TRIP",(((readparam(bAgi)/10)*7)+(.@r*30)); if (readparam(bAgi)>=110) bonus2 bSkillAtk,"RL_R_TRIP",30; - Id: 28238 AegisName: Calf_Anaconda_J Name: Metal Anaconda Type: Weapon SubType: Shotgun Buy: 20 Weight: 3000 Attack: 180 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bVit,3; bonus bSplashRange,1; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSubRace,RC_Player_Doram,30; bonus bLongAtkRate,50; bonus2 bSkillCooldown,"RL_S_STORM",-2000; bonus2 bSkillAtk,"RL_S_STORM",15*getrefine(); bonus2 bSkillAtk,"RL_SLUGSHOT",7*(readparam(bStr)/10); if (readparam(bStr)>=110) bonus2 bSkillAtk,"RL_SLUGSHOT",30; - Id: 28239 AegisName: Calf_Python_J Name: Metal Python Type: Weapon SubType: Grenade Buy: 20 Weight: 1400 Attack: 210 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bVit,3; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSubRace,RC_Player_Doram,30; bonus bLongAtkRate,50; bonus2 bSkillCooldown,"RL_D_TAIL",-4500; bonus2 bVariableCastrate,"RL_D_TAIL",-10*getrefine(); bonus2 bSkillAtk,"RL_D_TAIL",7*(readparam(bLuk)/10); if (readparam(bLuk)>=110) bonus2 bSkillAtk,"RL_D_TAIL",30; - Id: 28240 AegisName: Calf_Kingcobra Name: Calf Kingcobra Type: Weapon SubType: Rifle Weight: 900 Attack: 230 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,10 + (.@r > 6 ? 5 : 0); bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if (.@r > 8) { bonus bCritAtkRate,15; } - Id: 28241 AegisName: Calf_Diamondback Name: Calf Diamondback Type: Weapon SubType: Gatling Weight: 3000 Attack: 220 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bDex,2; bonus bAtkRate,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 11 ? 5 : 0); if (.@r > 6) { bonus2 bSkillAtk,"RL_R_TRIP",20; } if (.@r > 8) { bonus2 bSkillUseSPrate,"RL_R_TRIP",5; } - Id: 28242 AegisName: Calf_Anaconda Name: Calf Anaconda Type: Weapon SubType: Shotgun Buy: 10 Weight: 1400 Attack: 305 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus bMaxSPrate,2; bonus bLongAtkRate,(.@r/2)*5 + (.@r > 8 ? 5 : 0); if (.@r > 6) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",20; } if (.@r > 11) { bonus2 bSkillUseSPrate,"RL_BANISHING_BUSTER",15; } - Id: 28243 AegisName: Calf_Python Name: Calf Python Type: Weapon SubType: Grenade Buy: 10 Weight: 2000 Attack: 360 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bDex,2; bonus bAtkRate,2; bonus bLongAtkRate,(.@r/2)*5; if (.@r > 6) { bonus bAspdRate,5; } if (.@r > 8) { bonus2 bSkillAtk,"RL_D_TAIL",15 + (.@r > 11 ? 15 : 0); } - Id: 28244 AegisName: Gate_KeeperDD_IL Name: Illusion Gate Keeper DD Type: Weapon SubType: Shotgun Weight: 1300 Attack: 240 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bDex,1; bonus bSplashRange,1; .@val = 5*(.@r/2); if (.@r >= 7) { bonus bAspdRate,15; if (.@r >= 9) { .@val += 5; if (.@r >= 11) { bonus5 bAutoSpell,"GS_SPREADATTACK",max(6,getskilllv("GS_SPREADATTACK")),50,BF_LONG|BF_WEAPON,1; } } } bonus bLongAtkRate,.@val; - Id: 28249 AegisName: Variant_Rifle Name: Abyss Rifle Type: Weapon SubType: Rifle Weight: 850 Attack: 170 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",7*(readparam(bInt)/10); if (readparam(bInt)>=110) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",30; } if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28250 AegisName: Variant_Gatling_Gun Name: Abyss Gatling Gun Type: Weapon SubType: Gatling Weight: 2500 Attack: 120 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSkillAtk,"RL_R_TRIP",7*(readparam(bAgi)/10); if (readparam(bAgi)>=110) { bonus2 bSkillAtk,"RL_R_TRIP",30; } if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28251 AegisName: Variant_Shotgun Name: Abyss Shotgun Type: Weapon SubType: Shotgun Weight: 3000 Attack: 180 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bSplashRange,1; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSkillAtk,"RL_SLUGSHOT",7*(readparam(bStr)/10); if (readparam(bStr)>=110) { bonus2 bSkillAtk,"RL_SLUGSHOT",30; } if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28252 AegisName: Variant_Launcher Name: Abyss Grenade Gun Type: Weapon SubType: Grenade Weight: 1400 Attack: 210 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSkillAtk,"RL_D_TAIL",7*(readparam(bLuk)/10); if (readparam(bLuk)>=110) { bonus2 bSkillAtk,"RL_D_TAIL",30; } if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28253 AegisName: HR_S55_OS Name: HR-S55-OS Type: Weapon SubType: Rifle Buy: 20 Weight: 1000 Attack: 250 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; if (.@r >= 7) { bonus bLongAtkRate,7; if (.@r >= 9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r >= 11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; } } } - Id: 28254 AegisName: Butcher_IL Name: Illusion Butcher Type: Weapon SubType: Gatling Buy: 20 Weight: 2500 Attack: 210 Range: 9 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,2*(readparam(bStr)/15); bonus bBaseAtk,10*.@r; if (.@r >= 7) { bonus2 bSkillAtk,"RL_FIRE_RAIN",20; if (.@r >= 9) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@r >= 11) { bonus2 bAddRace,RC_Brute,30; bonus2 bAddRace,RC_Demon,30; } } } - Id: 28255 AegisName: Master_Soul_Rifle Name: Master Soul Rifle Type: Weapon SubType: Rifle Buy: 20 Weight: 1000 Attack: 150 MagicAttack: 210 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/3); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bMatkRate,5; if (.@r >= 9) { .@chance = 1; /* unknown rate*/ if (.@r >= 11) { .@chance += 1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,1,BF_LONG,1; } bonus5 bAutoSpell,"MG_SOULSTRIKE",10,.@chance,BF_LONG,1; } } - Id: 28256 AegisName: Demon_S_Shot Name: Demon Slayer Shot Type: Weapon SubType: Shotgun Buy: 20 Weight: 1400 Attack: 275 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bAddClass,Class_Boss,10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } } - Id: 28257 AegisName: Golden_L_Launcher Name: Golden Lord Launcher Type: Weapon SubType: Grenade Buy: 20 Weight: 2100 Attack: 320 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,15*(.@r/3); if (.@r >= 7) { .@val = 15; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_D_TAIL",-1000; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_D_TAIL",.@val; } - Id: 28258 AegisName: The_Black_Gatling Name: The Black Type: Weapon SubType: Gatling Buy: 20 Weight: 2700 Attack: 205 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { .@val = 15; bonus2 bSkillUseSPrate,"RL_R_TRIP",-10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_R_TRIP",.@val; } - Id: 28261 AegisName: Comp_Demon_S_Shot Name: "[Not For Sale] Demon Slayer Shot" Type: Weapon SubType: Shotgun Weight: 1400 Attack: 275 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r >= 7) { bonus2 bAddClass,Class_Boss,10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } } - Id: 28302 AegisName: Vesper_Core01_ Name: Vesper Core 01 Type: Armor Buy: 20 Weight: 500 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: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,3; bonus bInt,2; bonus bMaxSPrate,5; - Id: 28303 AegisName: Vesper_Core02_ Name: Vesper Core 02 Type: Armor Buy: 20 Weight: 500 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: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,3; bonus bStr,3; bonus bBaseAtk,10; - Id: 28304 AegisName: Vesper_Core03_ Name: Vesper Core 03 Type: Armor Buy: 20 Weight: 500 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: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,3; bonus bAgi,3; bonus bFlee,5; - Id: 28305 AegisName: Vesper_Core04_ Name: Vesper Core 04 Type: Armor Buy: 20 Weight: 500 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: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,3; bonus bDex,3; bonus bHit,10; - Id: 28306 AegisName: Bless_Of_Moon Name: Luna's Blessing Type: Armor Buy: 20 Weight: 100 Defense: 5 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; bonus bMdef,2; bonus3 bAutoSpell,"CG_TAROTCARD",5,100; - Id: 28310 AegisName: Earring_Of_Sarah_L Name: Sarah's Left Earring Type: Armor Buy: 10 Weight: 100 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "AL_HEAL",1; - Id: 28311 AegisName: Earring_Of_Sarah_R Name: Sarah's Right Earring Type: Armor Buy: 10 Weight: 100 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "AL_TELEPORT",1; - Id: 28312 AegisName: Platinum_Ring Name: Platinum Ring Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 36 Script: | bonus bLuk,2; bonus bMdef,3; - Id: 28313 AegisName: Operation_Glove Name: Operation Glove Type: Armor Weight: 50 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bAspdRate,1; bonus bBaseAtk,10; bonus bFlee,-10; - Id: 28314 AegisName: Hand_Of_Glory Name: Glorious Hand Type: Armor Weight: 50 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bHit,10; - Id: 28315 AegisName: RCC2013_ARMLET Name: RCC2013_ARMLET Type: Armor Buy: 200 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bAddClass,Class_All,1; - Id: 28316 AegisName: RCC2013_ARMLET_ Name: RCC2013_ARMLET_ Type: Armor Buy: 200 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bAddClass,Class_All,1; - Id: 28317 AegisName: RCC2013_RING Name: RCC2013_RING Type: Armor Buy: 200 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bAddClass,Class_All,1; - Id: 28318 AegisName: RCC2013_RING_ Name: RCC2013_RING_ Type: Armor Buy: 200 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bAddClass,Class_All,1; - Id: 28319 AegisName: Cauda_Daemonica Name: Cauda Daemonica Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 - Id: 28320 AegisName: Assassin_Acc Name: Assassin's Despair Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bAspd,1; - Id: 28321 AegisName: Falconer_Claw Name: Falconer Claw Type: Armor Weight: 100 Defense: 5 Slots: 1 Jobs: Hunter: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bDex,1; bonus2 bSkillAtk,"HT_BLITZBEAT",getskilllv("HT_STEELCROW")*10; - Id: 28322 AegisName: Falconer_Glove Name: Falconer Glove Type: Armor Weight: 100 Defense: 5 Slots: 1 Jobs: Hunter: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bDex,1; bonus bUseSPrate,-5; - Id: 28323 AegisName: Exorcist_Gloves Name: Divine Gloves Type: Armor Weight: 1000 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus3 bAutoSpellWhenHit,"PR_TURNUNDEAD",1,30; - Id: 28324 AegisName: Steam_Starter_Ring Name: Steam Starter Ring Type: Armor Weight: 10 Locations: Both_Accessory: true ArmorLevel: 1 Script: | skill "AL_HEAL",1; bonus2 bExpAddRace,RC_All,max(0,101-BaseLevel); - Id: 28326 AegisName: Broken_Chip_1 Name: Broken Chips 01 Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,4; - Id: 28327 AegisName: Broken_Chip_2 Name: Broken Chips 02 Type: Armor Buy: 10 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bInt,4; - Id: 28332 AegisName: Jewel_Ring Name: Jewerly Ring Type: Armor Buy: 10 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | /* bonus bLuk,20; Event bonus */ autobonus "{ bonus bAspd,2; bonus bVariableCastrate,-30; }",50,5000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_ENCHANCE; }"; - Id: 28333 AegisName: Gold_PC_Ring Name: Gold PC Room Ring Type: Armor Buy: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (vip_status(VIP_STATUS_ACTIVE)) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bAddClass,Class_All,3; bonus bMatkRate,3; } - Id: 28342 AegisName: Critical_Anklet Name: Critical Anklet Type: Armor Weight: 200 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bCritical,5; bonus bMdef,3; - Id: 28351 AegisName: Whike_Black_Tail_S Name: Whike Black Tail Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 45 Script: | bonus bCritical,7; bonus bAspdRate,3; - Id: 28352 AegisName: VesperGear1 Name: Vesper Gear 01 Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMdef,3; bonus bMatkRate,5; - Id: 28353 AegisName: VesperGear2 Name: Vesper Gear 02 Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMdef,3; bonus2 bAddClass,Class_All,5; - Id: 28354 AegisName: DowntownMap_ Name: City Map Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Script: | skill "AL_INCAGI",3; - Id: 28355 AegisName: ShiningHolyWater_ Name: Shining Holy Water Type: Armor Weight: 150 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bHPRegenRate,100,10000; bonus2 bSPRegenRate,5,10000; bonus2 bAddDefMonster,3445,20; bonus2 bAddDefMonster,3446,20; bonus2 bAddDefMonster,3447,20; bonus2 bAddDefMonster,3448,20; bonus2 bAddDefMonster,3449,20; bonus2 bAddDefMonster,3450,20; bonus2 bAddDefMonster,3451,20; bonus2 bAddDefMonster,3452,20; - Id: 28356 AegisName: BadgeOfProntera_ Name: Prontera Badge Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Delay: Duration: 900000 Script: | skill "ALL_PRONTERA_RECALL",2; - Id: 28357 AegisName: VesperGear3 Name: Vesper Gear 03 Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMdef,3; bonus bFlee,10; - Id: 28358 AegisName: Cursed_Lucky_Clover Name: Cursed Lucky Clover Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bLuk,2; bonus bFlee2,3; bonus2 bAddEff2,Eff_Curse,50; UnEquipScript: | sc_end SC_CLOAKING; /*FIXME: Because the combo has Cloaking skill*/ - Id: 28359 AegisName: VesperGear4 Name: Vesper Gear 04 Type: Armor Buy: 20 Weight: 100 Defense: 1 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMdef,3; bonus bHit,10; - Id: 28370 AegisName: Broken_Chip_1_J Name: Broken Chip (Green) Type: Armor Weight: 100 Defense: 1 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddClass,Class_All,5; bonus bDelayrate,-5; - Id: 28371 AegisName: Broken_Chip_2_J Name: Broken Chip (Red) Type: Armor Weight: 100 Defense: 1 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bMagicAddClass,Class_All,5; bonus bVariableCastrate,-10; - Id: 28372 AegisName: Imperial_Ring Name: Imperial Ring Type: Armor Weight: 500 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bStr,1; bonus bInt,1; bonus bMaxHPrate,3; bonus bMaxSPrate,3; - Id: 28374 AegisName: Foxtail_Ring Name: Foxtail Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,5; .@lvl = min(BaseLevel/5,10); bonus bBaseAtk,2*.@lvl; bonus bMatk,2*.@lvl; bonus bMaxHP,10*.@lvl; bonus bMaxSP,5*.@lvl; - Id: 28377 AegisName: Magical_Ring Name: Magical Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Wind,5; if (BaseLevel > 4) { bonus2 bSkillAtk,"MG_FIREBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_COLDBOLT",BaseLevel/5; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",BaseLevel/5; bonus2 bSkillAtk,"WZ_EARTHSPIKE",BaseLevel/5; } - Id: 28379 AegisName: Shadow_Ring Name: Shadow Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | .@s = getskilllv("RG_STEALCOIN"); .@a = getskilllv("RG_RAID"); bonus3 bAutoSpell,"RG_STEALCOIN",min(1,.@s),50; bonus2 bSkillAtk,"RG_BACKSTAP",2*BaseLevel; bonus2 bAddEff,Eff_Stun,.@a*300; autobonus3 "{ bonus2 bSkillAtk,\"SC_TRIANGLESHOT\",BaseLevel/3; }",1000,20000,"SC_ESCAPE"; - Id: 28380 AegisName: Fresh_G_Necklace Name: Fresh Grass Necklace Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bFlee2,5; bonus2 bSkillCooldown,"SU_SCAROFTAROU",-5000; - Id: 28381 AegisName: Pretty_G_Necklace Name: Cute Grass Necklace Type: Armor Buy: 20 Weight: 10 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bHealPower,5; bonus2 bSkillCooldown,"SU_TUNAPARTY",-7000; - Id: 28382 AegisName: Charm_G_Necklace Name: Charm Grass Necklace Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,5; bonus2 bVariableCastrate,"SU_CN_METEOR",-1000; - Id: 28386 AegisName: Fallen_Monk_Rosary Name: Fallen Monk Rosary Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bAspdRate,5; bonus bCritical,5; bonus2 bSkillUseSP,"CH_SOULCOLLECT",-5; if (BaseLevel > 14) bonus2 bSkillAtk,"SR_DRAGONCOMBO",BaseLevel/15; if (BaseLevel > 19) bonus2 bSkillAtk,"SR_KNUCKLEARROW",BaseLevel/20; if (BaseLevel > 29) bonus2 bSkillAtk,"SR_SKYNETBLOW",BaseLevel/30; - Id: 28387 AegisName: Bishop_Necklace Name: Bishop Necklace Type: Armor Buy: 20 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 - Id: 28388 AegisName: Bloody_Iron_Ball_ Name: Bloodied Shackle Ball Type: Armor Weight: 4000 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 - Id: 28391 AegisName: S_Thief_earring Name: Thief Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 28392 AegisName: S_Archer_earring Name: Archer Shadow Earring Type: Shadowgear Locations: Shadow_Right_Accessory: true EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,.@r*10; autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bHit,.@val; }",200,5000,"AC_DOUBLE","{ specialeffect2 EF_POTION_BERSERK; }"; - Id: 28394 AegisName: King_of_Spirit_Ring Name: Spirit King's Ring Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bVit,5; bonus bDelayrate,-5; bonus2 bSkillAtk,"SO_DIAMONDDUST",(BaseLevel/8); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-2000; bonus2 bSkillAtk,"SO_EARTHGRAVE",(BaseLevel/8); bonus2 bSkillCooldown,"SO_EARTHGRAVE",-2000; bonus2 bSkillVariableCast,"SO_VARETYR_SPEAR",-1500; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-500; bonus2 bVariableCastrate,"SO_WARMER",-50; bonus2 bFixedCastrate,"SO_WARMER",-50; bonus2 bSkillCooldown,"SO_WARMER",-15000; - Id: 28410 AegisName: Sapphire_Wrist Name: Sapphire Wrist Type: Armor Weight: 500 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bDex,5; bonus bLuk,5; bonus bInt,5; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",BaseLevel/5; bonus2 bVariableCastrate,"CR_ACIDDEMONSTRATION",-(BaseLevel/4); .@n = getskilllv("CR_SLIMPITCHER"); bonus bDex,.@n/2; bonus bLuk,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20; - Id: 28411 AegisName: Emerald_Earring Name: Emerald Earrings Type: Armor Weight: 500 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bDex,5; bonus bAgi,5; bonus bInt,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",BaseLevel; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",BaseLevel; bonus2 bSkillAtk,"DC_THROWARROW",BaseLevel; bonus2 bSkillAtk,"WM_METALICSOUND",2*(BaseLevel/5); .@n = getskilllv("WM_METALICSOUND"); bonus2 bVariableCastrate,"WM_METALICSOUND",.@n/2; bonus bDex,.@n/2; bonus bAgi,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20; - Id: 28412 AegisName: The_One_Apple_Ring Name: Green Apple Ring 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: | bonus bSpeedRate,25; bonus2 bExpAddRace,RC_All,20; - Id: 28413 AegisName: LowSaurelCharm Name: Lesser Mackerel Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,1; - Id: 28414 AegisName: MiddleSaurelCharm Name: Intermediate Mackerel Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 140 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,2; - Id: 28415 AegisName: HigherSaurelCharm Name: Greater Mackerel Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 175 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,3; - Id: 28416 AegisName: LowLeafCharm Name: Lesser Leaf Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; - Id: 28417 AegisName: MiddleLeafCharm Name: Intermediate Leaf Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 140 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,2; - Id: 28418 AegisName: HigherLeafCharm Name: Greater Leaf Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 175 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,3; - Id: 28419 AegisName: LowRabbitCharm Name: Lesser Rabbit Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,1; - Id: 28420 AegisName: MiddleRabbitCharm Name: Intermediate Rabbit Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 140 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; - Id: 28421 AegisName: HigherRabbitCharm Name: Greater Rabbit Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 175 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,3; - Id: 28422 AegisName: ShiningTwigCharm Name: Shiny Branch Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",(readparam(bInt)/6)*getskilllv("SU_SV_STEMSPEAR"); - Id: 28423 AegisName: FreshTunaCharm Name: Fresh Tuna Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillCooldown,"SU_TUNAPARTY",-5000; bonus3 bAutoSpellWhenHit,"SU_TUNAPARTY",max(1,getskilllv("SU_TUNAPARTY")),10; - Id: 28424 AegisName: PlumpyWormCharm Name: Chubby Worm Talisman Type: Armor Weight: 100 Defense: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",(readparam(bDex)/6)*getskilllv("SU_PICKYPECK"); - Id: 28425 AegisName: Mercenary_Ring_A Name: Mercenary Ring Type A Type: Armor Buy: 20 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bVit,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bMaxHP,1000; bonus bMaxSP,200; } - Id: 28426 AegisName: Mercenary_Ring_B Name: Mercenary Ring Type B Type: Armor Buy: 20 Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bInt,3; if (BaseClass == Job_Gunslinger || BaseJob == Job_Novice || BaseJob == Job_SuperNovice || BaseClass == Job_Ninja || BaseClass == Job_Taekwon) { bonus bVariableCastrate,-30; } - Id: 28427 AegisName: Blue_4leaf_Necklace Name: Blue Clover Necklace Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,20; bonus3 bAutoSpellWhenHit,"WZ_STORMGUST",1,25; - Id: 28428 AegisName: 4SeasonsClover Name: Four Seasons Clover Necklace Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,5; bonus bAllStats,1; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAtkRate,3; bonus bMatkRate,3; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; bonus2 bSubRace,RC_All,5; skill "HW_NAPALMVULCAN",3; - Id: 28429 AegisName: Arquien's_Necklace Name: Arquien's Necklace Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus2 bSkillAtk,"MC_CARTREVOLUTION",BaseLevel; bonus2 bSkillAtk,"NC_AXETORNADO",(BaseLevel/3); bonus2 bSkillAtk,"NC_POWERSWING",(BaseLevel/5); bonus2 bSkillUseSP,"NC_POWERSWING",2; bonus2 bAddMonsterDropItem,529,2000; bonus2 bAddMonsterDropItem,530,2000; bonus2 bAddMonsterDropItem,573,150; bonus2 bAddItemHealRate,529,100; bonus2 bAddItemHealRate,530,100; - Id: 28430 AegisName: Archpriest_Ring Name: Arch Bishop Ring Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bLuk,2; bonus bFlee2,5; bonus bUseSPrate,-5; bonus bHealPower,15; bonus bAddItemHealRate,15; - Id: 28431 AegisName: Sprint_Ring_ Name: Sprint Ring Type: Armor Buy: 20 Weight: 100 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: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVariableCastrate,-10; bonus bDelayrate,5; - Id: 28432 AegisName: Spiritual_Ring_ Name: Spiritual Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bInt,2; bonus bDex,1; - Id: 28433 AegisName: Luminous_Blue_Stone Name: Luminous Blue Stone Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bAgi,2; bonus bCritical,5; bonus bAspdRate,5; bonus bCritAtkRate,2; skill "MG_SIGHT",1; if (readparam(bLuk)>=100) { bonus bCritical,10; bonus bCritAtkRate,10; } - Id: 28434 AegisName: Boxer_Glove Name: Boxing Gloves Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bStr,2; bonus bMaxSP,100; bonus2 bAddRace,RC_All,2; skill "MO_ABSORBSPIRITS",1; if (readparam(bStr)>99) bonus2 bAddRace,RC_All,5; - Id: 28435 AegisName: Secret_Scroll_Of_Ninja Name: Shinobi Secret Scroll Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: KagerouOboro: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAgi,5; bonus bMaxHPrate,5; bonus bAtkRate,5; bonus bMatkRate,5; if (eaclass()&EAJL_THIRD && BaseJob == Job_Kagerou) { skill "AS_CLOAKING",getskilllv("KG_KAGEMUSYA"); skill "RG_TUNNELDRIVE",getskilllv("KG_KAGEMUSYA"); } if (eaclass()&EAJL_THIRD && BaseJob == Job_Oboro) { bonus4 bAutoSpellOnSkill,"KO_MAKIBISHI","NPC_CURSEATTACK",5,1000; bonus4 bAutoSpellOnSkill,"KO_MAKIBISHI","NPC_POISON",5,1000; } - Id: 28436 AegisName: Elvira_Pendant Name: Elvira Pendant Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMatkRate,6; bonus bDelayrate,-6; - Id: 28437 AegisName: ArchPriest_Glove Name: Hibram's Gloves Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | skill "AL_HEAL",3; bonus bInt,2; bonus bMatkRate,2; bonus bUseSPrate,-5; if (readparam(bInt)>=110) bonus bMatkRate,5; - Id: 28438 AegisName: Fairy_Leaf_Powder Name: Fairy Leaf Powder Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bDex,2; bonus bDelayrate,-5; bonus bLongAtkRate,2; skill "SM_MAGNUM",3; if (readparam(bDex)>=100) bonus bLongAtkRate,5; - Id: 28439 AegisName: SeeOtter_Fan Name: Sea Otter Mini Fan Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus2 bExpAddRace,RC_All,5; bonus bAllStats,1; - Id: 28440 AegisName: FurSeal_Fan Name: Seal Mini Fan Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus2 bExpAddRace,RC_All,5; bonus bAllStats,1; - Id: 28441 AegisName: Vigilante_Bedge Name: Vigilante Badge Type: Armor Weight: 200 Defense: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bFlee,10; bonus2 bWeaponDamageRate,W_BOW,5; - Id: 28442 AegisName: Hippie_Feather Name: Hippie Feather Type: Armor Weight: 200 Defense: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bCritical,5; bonus bFlee,5; - Id: 28443 AegisName: Para_Team_Ring100A Name: Awakened Eden Group Ring of Strength I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,2; - Id: 28444 AegisName: Para_Team_Necklace100A Name: Awakened Eden Group Necklace of Strength I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,1; - Id: 28445 AegisName: Para_Team_Ring115A Name: Awakened Eden Group Ring of Strength II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; - Id: 28446 AegisName: Para_Team_Necklace115A Name: Awakened Eden Group Necklace of Strength II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,2; - Id: 28447 AegisName: Para_Team_Ring130A Name: Awakened Eden Group Ring of Strength III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,4; - Id: 28448 AegisName: Para_Team_Necklace130A Name: Awakened Eden Group Necklace of Strength III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,3; - Id: 28449 AegisName: Para_Team_Ring145A Name: Awakened Eden Group Ring of Strength IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,5; - Id: 28450 AegisName: Para_Team_Necklace145A Name: Awakened Eden Group Necklace of Strength IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,4; - Id: 28451 AegisName: Para_Team_Ring160A Name: Awakened Eden Group Ring of Strength V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,5; skill "AL_HEAL",1; - Id: 28452 AegisName: Para_Team_Necklace160A Name: Awakened Eden Group Necklace of Strength V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bStr,4; skill "AL_TELEPORT",1; - Id: 28453 AegisName: Para_Team_Ring100B Name: Awakened Eden Group Ring of Magic I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,2; - Id: 28454 AegisName: Para_Team_Necklace100B Name: Awakened Eden Group Necklace of Magic I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,1; - Id: 28455 AegisName: Para_Team_Ring115B Name: Awakened Eden Group Ring of Magic II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; - Id: 28456 AegisName: Para_Team_Necklace115B Name: Awakened Eden Group Necklace of Magic II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,2; - Id: 28457 AegisName: Para_Team_Ring130B Name: Awakened Eden Group Ring of Magic III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,4; - Id: 28458 AegisName: Para_Team_Necklace130B Name: Awakened Eden Group Necklace of Magic III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,3; - Id: 28459 AegisName: Para_Team_Ring145B Name: Awakened Eden Group Ring of Magic IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,5; - Id: 28460 AegisName: Para_Team_Necklace145B Name: Awakened Eden Group Necklace of Magic IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,4; - Id: 28461 AegisName: Para_Team_Ring160B Name: Awakened Eden Group Ring of Magic V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,5; skill "AL_HEAL",1; - Id: 28462 AegisName: Para_Team_Necklace160B Name: Awakened Eden Group Necklace of Magic V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bInt,4; skill "AL_TELEPORT",1; - Id: 28463 AegisName: Para_Team_Ring100C Name: Awakened Eden Group Ring of Agility I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,1; - Id: 28464 AegisName: Para_Team_Necklace100C Name: Awakened Eden Group Necklace of Agility I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,1; - Id: 28465 AegisName: Para_Team_Ring115C Name: Awakened Eden Group Ring of Agility II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,2; - Id: 28466 AegisName: Para_Team_Necklace115C Name: Awakened Eden Group Necklace of Agility II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,2; - Id: 28467 AegisName: Para_Team_Ring130C Name: Awakened Eden Group Ring of Agility III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,3; - Id: 28468 AegisName: Para_Team_Necklace130C Name: Awakened Eden Group Necklace of Agility III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,3; - Id: 28469 AegisName: Para_Team_Ring145C Name: Awakened Eden Group Ring of Agility IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,4; - Id: 28470 AegisName: Para_Team_Necklace145C Name: Awakened Eden Group Necklace of Agility IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,4; - Id: 28471 AegisName: Para_Team_Ring160C Name: Awakened Eden Group Ring of Agility V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,4; skill "AL_HEAL",1; - Id: 28472 AegisName: Para_Team_Necklace160C Name: Awakened Eden Group Necklace of Agility V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDex,4; skill "AL_TELEPORT",1; - Id: 28473 AegisName: Para_Team_Ring100D Name: Eden Group Ring of Recovery I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHealPower,2; - Id: 28474 AegisName: Para_Team_Necklace100D Name: Eden Group Necklace of Recovery I Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,1; - Id: 28475 AegisName: Para_Team_Ring115D Name: Eden Group Ring of Recovery II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHealPower,3; - Id: 28476 AegisName: Para_Team_Necklace115D Name: Eden Group Necklace of Recovery II Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 115 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,2; - Id: 28477 AegisName: Para_Team_Ring130D Name: Eden Group Ring of Recovery III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHealPower,4; - Id: 28478 AegisName: Para_Team_Necklace130D Name: Eden Group Necklace of Recovery III Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,3; - Id: 28479 AegisName: Para_Team_Ring145D Name: Eden Group Ring of Recovery IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHealPower,5; - Id: 28480 AegisName: Para_Team_Necklace145D Name: Eden Group Necklace of Recovery IV Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 145 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,4; - Id: 28481 AegisName: Para_Team_Ring160D Name: Eden Group Ring of Recovery V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bHealPower,5; skill "AL_HEAL",1; - Id: 28482 AegisName: Para_Team_Necklace160D Name: Eden Group Necklace of Recovery V Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVit,4; skill "AL_TELEPORT",1; - Id: 28483 AegisName: ProtectRingofKing Name: Royal Guardian Ring Type: Armor Weight: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 99 Script: | .@b = min(BaseLevel/25,7); bonus bMaxHPrate,.@b; bonus bMaxSPrate,.@b; - Id: 28484 AegisName: Scarf_Of_Rebellion Name: Rebellion's Scarf Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@M = getskilllv("RL_MASS_SPIRAL"); .@F = getskilllv("RL_FIRE_RAIN"); .@S = getskilllv("RL_S_STORM"); .@D = getskilllv("RL_D_TAIL"); .@E = getskilllv("RL_E_CHAIN"); bonus bAtkRate,5; bonus bAspdRate,2*.@M; bonus bVariableCastrate,-10; bonus bDelayrate,-(.@F); bonus2 bSkillCooldown,"RL_HEAT_BARREL",-4000*.@S; bonus2 bSkillCooldown,"RL_S_STORM",-100*.@S; bonus bCritAtkRate,3*.@D; bonus2 bSkillAtk,"RL_FIRE_RAIN",5*.@F; bonus2 bSkillAtk,"RL_MASS_SPIRAL",5*.@M; bonus2 bSkillAtk,"RL_QD_SHOT",5*.@E; bonus2 bSkillAtk,"RL_S_STORM",5*.@S; bonus2 bSkillUseSP,"RL_FIREDANCE",10; bonus2 bSkillUseSP,"RL_FIRE_RAIN",4*.@F; bonus2 bSkillUseSP,"RL_MASS_SPIRAL",2*.@M; if (.@D > 0) { autobonus3 "{ .@a = getskilllv(\"RL_D_TAIL\"); bonus3 bAutoSpell,\"RL_D_TAIL\",.@a,10*(1+.@a); }",1000,50000,"RL_C_MARKER","{ specialeffect2 EF_POTION_BERSERK; }"; } - Id: 28485 AegisName: Shinobi's_Sash_H Name: Shinobi Sash H Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatkRate,5; bonus bAspdRate,5; bonus bDelayrate,-5; .@a = (getskilllv("KO_GENWAKU")+getskilllv("KO_JYUSATSU")+getskilllv("KO_KYOUGAKU")); bonus2 bMagicAddEle,Ele_Dark,4*.@a; bonus2 bSkillAtk,"NJ_BAKUENRYU",10*getskilllv("NJ_KOUENKA"); bonus2 bSkillAtk,"NJ_KAMAITACHI",10*getskilllv("NJ_HUUJIN"); bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20*getskilllv("NJ_HYOUSENSOU"); - Id: 28491 AegisName: Matagi_Swordaxe Name: Hunting Knife Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bLuk,2; bonus bHit,10; bonus bCriticalLong,5; skill "TF_HIDING",1; if (readparam(bLuk)>=100) { bonus bHit,5; bonus bCriticalLong,10; } - Id: 28492 AegisName: Tip_Of_Thief_Vol1 Name: Thieve's Guide Vol.1 Type: Armor Buy: 20 Weight: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,5; bonus bAgi,5; bonus bInt,5; if (getskilllv("SC_ENERVATION")>2) skill "SN_WINDWALK",5; if (getskilllv("SC_GROOMY")>2) skill "HP_ASSUMPTIO",5; if (getskilllv("SC_IGNORANCE")>2) skill "WS_OVERTHRUSTMAX",5; if (getskilllv("SC_LAZINESS")>2) skill "ASC_METEORASSAULT",5; if (getskilllv("SC_UNLUCKY")>2) skill "LK_BERSERK",1; if (getskilllv("SC_WEAKNESS")>2) skill "HW_MAGICPOWER",5; if (getskilllv("RG_GRAFFITI")>0) { bonus bStr,5; bonus bAgi,5; bonus bInt,5; } - Id: 28495 AegisName: Badge_Of_Vigilante1 Name: Sheriff's Left Badge Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (readparam(bStr) > 89) bonus bAtkRate,3; if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bDex) > 89) bonus bLongAtkRate,3; - Id: 28496 AegisName: Badge_Of_Vigilante2 Name: Sheriff's Right Badge Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (readparam(bVit) > 89) bonus bMaxHP,1000; if (readparam(bInt) > 89) bonus bMatkRate,3; if (readparam(bDex) > 89) bonus bVariableCastrate,-5; - Id: 28499 AegisName: BadgeOfProntera__J Name: Proof of Glory Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; if (BaseLevel>=150) { bonus bAllStats,1; bonus2 bAddRace,RC_All,2; bonus2 bMagicAddRace,RC_All,2; } - Id: 28500 AegisName: Fanatic_Necklace Name: Zealous Necklace Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 - Id: 28501 AegisName: Horn_Of_Kirin Name: Kirin Horn Type: Armor Buy: 20 Weight: 500 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bAgi,2; bonus bAspdRate,2; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Brute,1; bonus2 bSubRace,RC_Player_Doram,1; bonus2 bSubRace,RC_Fish,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Demon,2; bonus2 bSubRace,RC_Undead,2; skill "AL_INCAGI",6; if (readparam(bAgi)>=100) { bonus bAspdRate,5; } - Id: 28502 AegisName: Mob_Scarf Name: Mob Scarf Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1568 Script: | skill "SA_SPELLBREAKER",2; - Id: 28503 AegisName: Keraunos Name: Keraunos Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHPrate,5; bonus2 bAddClass,Class_All,5; bonus bAspdRate,5; bonus2 bVariableCastrate,"SR_GATEOFHELL",-3*(BaseLevel/20); bonus2 bVariableCastrate,"SR_RIDEINLIGHTNING",-5*(BaseLevel/15); bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-3000; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",5; - Id: 28505 AegisName: RingOfDevil Name: Demon God's Ring Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddRace,RC_All,5; bonus bMatkRate,5; - Id: 28506 AegisName: StormStone Name: Storm Stone Type: Armor Buy: 30000 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bMaxSPrate,5; bonus bAspdRate,5; bonus bAtkRate,5; - Id: 28507 AegisName: Glove_Of_Wizard Name: Magician's Gloves Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Ghost,5; bonus2 bIgnoreMdefRaceRate,RC_All,50; - Id: 28508 AegisName: Skul_Ring_IL Name: Illusion Skull Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddEff,Eff_Curse,5000; bonus2 bAddEff2,Eff_Curse,5000; - Id: 28509 AegisName: Ring_IL Name: Illusion Ring Type: Armor Weight: 200 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,3; if (readparam(bStr) >= 100) { bonus bBaseAtk,30; } - Id: 28510 AegisName: Vampire's_Servant Name: A Vampire's Servant Type: Armor Weight: 100 Defense: 1 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bSPDrainRate,10,1; - Id: 28511 AegisName: Time_Keeper_Ring Name: Time Keeper Ring Type: Armor Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,50+15*(BaseLevel/2); - Id: 28513 AegisName: Celine_Brooch Name: Celine's Brooch Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHP,500; bonus bMaxSP,250; bonus bMatkRate,5; bonus bAspd,1; bonus bVariableCastrate,-10; - Id: 28514 AegisName: Bless_Flower_Ring Name: Flower Ring of Benediction Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 28515 AegisName: Imperial_Ring_BR Name: Imperial Ring Type: Armor Weight: 500 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bStr,1; bonus bInt,1; bonus bMaxHPrate,3; bonus bMaxSPrate,3; - Id: 28516 AegisName: 2017RTCRING Name: 2017 RTC Ring Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHP,300; bonus bMaxSP,100; - Id: 28517 AegisName: Ring_Of_The_Abyss_King Name: Abyss King Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bStr,2; bonus bAgi,1; bonus bAtkRate,6; bonus bHPGainValue,300; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",BaseLevel/3; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",BaseLevel/10; - Id: 28518 AegisName: Cursed_Demon_Ring Name: Curse-Spell Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMdef,15; bonus bAllStats,1; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 28519 AegisName: So_Heon_Saber Name: Seohyun's Small Sword Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMatk,50; bonus bHealPower,10; - Id: 28520 AegisName: EgirRing Name: Egir Ring Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,5; bonus bAllStats,1; bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_Water,10; - Id: 28521 AegisName: Giant_Protection Name: Giant's Protection Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bAddClass,Class_All,5; if (readparam(bStr)>=120) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,50; } - Id: 28522 AegisName: Ring_Of_Fallen Name: Ring of The Fallen Type: Armor Buy: 10 Weight: 10 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bDex,1; bonus bMaxHP,200; - Id: 28523 AegisName: Ring_Of_Disaster Name: Ring of Calamity Type: Armor Buy: 10 Weight: 10 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus bDex,1; bonus bMaxSP,150; - Id: 28531 AegisName: Glove_Of_Smith Name: Blacksmith's Gloves Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bDelayrate,-10; bonus2 bAddClass,Class_Boss,5; bonus2 bIgnoreDefRaceRate,RC_All,50; - Id: 28533 AegisName: ChemicalGlove Name: Chemical Glove Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | .@s = getskilllv("GN_REMODELING_CART"); bonus bHit,20; bonus bAspdRate,5+.@s; bonus bBaseAtk,15*.@s; bonus bMaxHPrate,2*.@s; bonus2 bSkillUseSP,"GN_CART_TORNADO",.@s; bonus2 bAddItemHealRate,501,100; bonus2 bAddItemHealRate,502,100; bonus2 bAddItemHealRate,503,100; bonus2 bAddItemHealRate,504,100; bonus2 bSkillAtk,"MC_CARTREVOLUTION",BaseLevel; bonus2 bSkillAtk,"GN_CARTCANNON",2*(BaseLevel/20); bonus2 bSkillAtk,"GN_CART_TORNADO",2*(BaseLevel/30); - Id: 28534 AegisName: RKC_2017_Pendant Name: RKC Participant Memorial Ring Type: Armor Weight: 200 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUseSPrate,-3; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus bAtkRate,3; bonus bMatkRate,3; bonus2 bHPDrainRate,10,3; autobonus "{ bonus2 bHPRegenRate,300,1000; }",10,5000,BF_MAGIC; - Id: 28535 AegisName: RKC_2017_Ring Name: RKC Winner Memorial Ring Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUseSPrate,-7; bonus bLongAtkRate,3; bonus bCritAtkRate,3; bonus2 bMagicAtkEle,Ele_All,3; bonus2 bSPDrainRate,10,1; autobonus "{ bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; - Id: 28536 AegisName: Emerald_Earring_TW Name: Emerald Earring Type: Armor Weight: 500 Defense: 3 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bDex,5; bonus bAgi,5; bonus bInt,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",BaseLevel; bonus2 bSkillAtk,"BA_MUSICALSTRIKE",BaseLevel; bonus2 bSkillAtk,"DC_THROWARROW",BaseLevel; bonus2 bSkillAtk,"WM_METALICSOUND",2*(BaseLevel/5); .@n = getskilllv("WM_METALICSOUND"); bonus2 bVariableCastrate,"WM_METALICSOUND",.@n/2; bonus bDex,.@n/2; bonus bAgi,.@n/2; bonus bInt,.@n/2; bonus bMatk,(.@n/2)*20; - Id: 28538 AegisName: Glove_Of_Wizard_BR Name: Magician's Gloves Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bVariableCastrate,-5; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bIgnoreMdefRaceRate,RC_All,20; - Id: 28539 AegisName: 60Lv_Ring Name: Subjugation Team's Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 60 Script: | bonus bStr,2; bonus bInt,2; - Id: 28540 AegisName: 70Lv_Ring Name: Expedition's Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bStr,3; - Id: 28541 AegisName: 70Lv_Mring Name: Expedition's Magic Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bInt,3; - Id: 28542 AegisName: 80Lv_Aring Name: Contingent Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bStr,3; bonus bAgi,1; - Id: 28543 AegisName: 80Lv_Gloves Name: Contingent Glove Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bDex,3; bonus bAgi,1; - Id: 28544 AegisName: 80Lv_Mring Name: Contingent Magic Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bInt,3; bonus bDex,1; - Id: 28545 AegisName: 80Lv_Necklace Name: Contingent Necklace Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bInt,3; bonus bVit,1; - Id: 28546 AegisName: 90Lv_Aring Name: Conqueror's Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bStr,3; bonus bAgi,2; - Id: 28547 AegisName: 90Lv_Gloves Name: Conqueror's Glove Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bDex,3; bonus bAgi,2; - Id: 28548 AegisName: 90Lv_Mring Name: Conqueror's Magic Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bInt,3; bonus bDex,2; - Id: 28549 AegisName: 90Lv_Necklace Name: Conqueror's Necklace Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bInt,3; bonus bVit,2; - Id: 28551 AegisName: Imperial_Glove Name: Imperial Glove Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddClass,Class_All,5; bonus bVariableCastrate,-10; bonus bNoCastCancel; - Id: 28552 AegisName: Two_Dragon_Ring Name: Ring of Mad Flame & White Magic Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | .@p = getitempos(); if (.@p == EQP_ACC_L) { bonus bMaxHPrate,15; bonus bVariableCastrate,-15; bonus2 bSkillCooldown,"RK_DRAGONBREATH",-500; } if (.@p == EQP_ACC_R) { bonus bMaxSPrate,15; bonus bDelayrate,-15; bonus2 bSkillCooldown,"RK_DRAGONBREATH_WATER",-500; } - Id: 28560 AegisName: YinYang_Talisman Name: Yin Yang Talisman Type: Armor Buy: 20 Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bMatkRate,5; bonus bHit,20; bonus bAspdRate,5; - Id: 28561 AegisName: Ring_Of_Brave Name: Ring of Hero Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; if (readparam(bStr) >= 120) { bonus bBaseAtk,50; bonus bMaxHPrate,5; bonus bMaxSPrate,5; } - Id: 28562 AegisName: True_Hunting_Ring1 Name: True Hunting Physical Ring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bAspdRate,7; - Id: 28563 AegisName: True_Hunting_Ring2 Name: True Hunting Magical Ring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bVariableCastrate,-7; - Id: 28564 AegisName: Valkyrie_Drop Name: Valkyrie Drop Type: Armor Buy: 20 Weight: 30 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = getskilllv("PR_IMPOSITIO"); bonus bSPrecovRate,50; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bVariableCastrate,"AB_ORATIO",-50; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bMagicAddSize,Size_All,3*.@a; bonus2 bSkillAtk,"PR_MAGNUS",3*(BaseLevel/2); if (.@a == 5) skill "ALL_ODINS_POWER",2; - Id: 28565 AegisName: Perverse_Demon_Mask Name: Perverse Demon Mask Type: Armor Buy: 20 Weight: 60 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | .@s = readparam(bStr); .@a = readparam(bAgi); .@d = readparam(bDex); .@v = readparam(bVit); .@l = readparam(bLuk); .@i = readparam(bInt); bonus bStr,3*(.@i/18); bonus bAgi,3*(.@l/18); bonus bVit,3*(.@d/18); bonus bInt,3*(.@s/18); bonus bDex,3*(.@v/18); bonus bLuk,3*(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bFlee2,(.@a/18); bonus bMaxHPrate,(.@d/18); bonus bVariableCastrate,-(.@v/18); bonus bDelayrate,-(.@i/18); bonus2 bIgnoreDefClassRate,Class_All,15*(.@l/18); bonus2 bIgnoreMdefRaceRate,RC_All,15*(.@s/18); - Id: 28566 AegisName: Rebeginer_Ring Name: Beginner's Ring Type: Armor Buy: 20 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; - Id: 28567 AegisName: King_of_Spirit_Ring_TW Name: Ring of the Elf King Type: Armor Weight: 200 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bVit,5; bonus bDelayrate,-5; bonus2 bVariableCastrate,"SO_WARMER",-50; bonus2 bSkillCooldown,"SO_WARMER",-15000; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-500; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-500; bonus2 bSkillAtk,"SO_EARTHGRAVE",BaseLevel/8; bonus2 bSkillAtk,"SO_DIAMONDDUST",BaseLevel/8; - Id: 28573 AegisName: Emerald_Ring Name: Emerald Ring Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = getskilllv("AC_DOUBLE")/2; bonus bAgi,5+(.@a); bonus bVit,5+(.@a); bonus bDex,5+(.@a); bonus bBaseAtk,(20*.@a); bonus2 bSkillAtk,"AC_DOUBLE",BaseLevel; bonus2 bSkillAtk,"AC_SHOWER",BaseLevel; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",2*(BaseLevel/10); bonus2 bSkillUseSP,"WM_RANDOMIZESPELL",18; - Id: 28575 AegisName: Verus_Core Name: Verus Core Type: Armor Buy: 10 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bAspdRate,10; bonus2 bAddEle,Ele_All,5; bonus bPerfectHitAddRate,20; - Id: 28577 AegisName: Fresh_G_Necklace_J Name: Fresh Grass Necklace Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = ((getskilllv("SU_PICKYPECK")+getskilllv("SU_ARCLOUSEDASH")+getskilllv("SU_SCAROFTAROU")+getskilllv("SU_LUNATICCARROTBEAT")+getskilllv("SU_HISS")+getskilllv("SU_POWEROFFLOCK")+getskilllv("SU_SVG_SPIRIT"))/5); bonus bAspdRate,5+.@a; bonus bAtkRate,5+(.@a*2); bonus bMaxHPrate,.@a; bonus bMaxSPrate,.@a; - Id: 28578 AegisName: Pretty_G_Necklace_J Name: Cute Grass Necklace Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = ((getskilllv("SU_FRESHSHRIMP")+getskilllv("SU_BUNCHOFSHRIMP")+getskilllv("SU_TUNABELLY")+getskilllv("SU_TUNAPARTY")+getskilllv("SU_GROOMING")+getskilllv("SU_PURRING")+getskilllv("SU_SHRIMPARTY"))/5); bonus bFlee2,5; bonus bUseSPrate,-5; bonus bSPrecovRate,10+(.@a*10); bonus bHealPower,5+(.@a*4); bonus bMaxHPrate,.@a*2; bonus bMaxSPrate,.@a*2; - Id: 28579 AegisName: Charm_G_Necklace_J Name: Magic Grass Necklace Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = ((getskilllv("SU_SV_STEMSPEAR")+getskilllv("SU_SV_ROOTTWIST")+getskilllv("SU_CN_METEOR")+getskilllv("SU_CN_POWDERING")+getskilllv("SU_CHATTERING")+getskilllv("SU_MEOWMEOW")+getskilllv("SU_NYANGGRASS"))/5); bonus bMatkRate,5+(.@a*2); bonus bVariableCastrate,-5+.@a; bonus bMaxHPrate,.@a; bonus bMaxSPrate,.@a; - Id: 28580 AegisName: LowSaurelCharm_J Name: Horse Mackerel Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bVariableCastrate,-5; bonus bDelayrate,-5; skill "AL_HEAL",3; skill "AL_BLESSING",3; bonus bHealPower,10; - Id: 28581 AegisName: MiddleSaurelCharm_J Name: High Grade Horse Mackerel Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bVariableCastrate,-10; bonus bDelayrate,-10; skill "AL_HEAL",5; skill "AL_BLESSING",5; bonus bHealPower,20; - Id: 28582 AegisName: HigherSaurelCharm_J Name: Special Horse Mackerel Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-15; bonus bDelayrate,-15; bonus bUseSPrate,-5; skill "AL_HEAL",10; skill "AL_BLESSING",10; bonus bHealPower,2*(BaseLevel/10); - Id: 28583 AegisName: LowLeafCharm_J Name: Leaf Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bMatkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSkillAtk,"SU_CN_METEOR",5; bonus2 bVariableCastrate,"SU_CN_METEOR",-10; - Id: 28584 AegisName: MiddleLeafCharm_J Name: High Grade Leaf Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bMatkRate,5; bonus bVariableCastrate,-10; bonus bDelayrate,-10; bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus2 bVariableCastrate,"SU_CN_METEOR",-20; - Id: 28585 AegisName: HigherLeafCharm_J Name: Special Leaf Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatkRate,10; bonus bVariableCastrate,-15; bonus bDelayrate,-15; bonus2 bSkillAtk,"SU_CN_METEOR",BaseLevel/10; bonus2 bVariableCastrate,"SU_CN_METEOR",-3*(BaseLevel/10); - Id: 28586 AegisName: LowRabbitCharm_J Name: Rabbit Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAtkRate,5; bonus bVariableCastrate,-5; bonus bDelayrate,-5; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",5; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-10; - Id: 28587 AegisName: MiddleRabbitCharm_J Name: High Grade Rabbit Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAtkRate,5; bonus bVariableCastrate,-10; bonus bDelayrate,-10; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",10; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-20; - Id: 28588 AegisName: HigherRabbitCharm_J Name: Special Rabbit Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,10; bonus bVariableCastrate,-15; bonus bDelayrate,-15; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",BaseLevel/10; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-3*(BaseLevel/10); - Id: 28589 AegisName: ShiningTwigCharm_J Name: Shining Branch Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatkRate,10; bonus bAspdRate,10; bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",-50; bonus2 bSkillUseSP,"SU_SV_STEMSPEAR",10; - Id: 28590 AegisName: FreshTunaCharm_J Name: Fresh Tuna Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bFlee2,5; skill "AL_HEAL",10; bonus bHealPower,20; bonus2 bSkillUseSP,"SU_TUNABELLY",20; bonus2 bSkillUseSP,"SU_TUNAPARTY",20; - Id: 28591 AegisName: PlumpyWormCharm_J Name: Chubby Earthworm Amulet Type: Armor Buy: 20 Weight: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,10; bonus bAspdRate,10; bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillUseSP,"SU_PICKYPECK",10; - Id: 28592 AegisName: Angel_Poring_Earing Name: Angel Poring Earrings Type: Armor Weight: 50 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHPrate,3; bonus bMaxSPrate,3; - Id: 28593 AegisName: Angel_Poring_Ring Name: Angel Poring Ring Type: Armor Weight: 50 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; - Id: 28594 AegisName: Temporal_Ring Name: Temporal Ring Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; bonus bMatk,50; - Id: 28595 AegisName: BlueDragonRing_TW Name: Ring of the Blue Dragon Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,1; bonus bMdef,10; if (BaseClass == Job_Swordman) { bonus bMaxHPrate,7; bonus2 bSkillAtk,"RK_SONICWAVE",50; autobonus3 "{ bonus bAspd,2; }",1000,30000,"PA_SACRIFICE"; } if (BaseClass == Job_Mage) { bonus bMatkRate,5; bonus5 bAutoSpellOnSkill,"WL_FROSTMISTY","MG_SAFETYWALL",5,1000,1; bonus5 bAutoSpellOnSkill,"PF_FOGWALL","MG_SAFETYWALL",5,1000,1; } if (BaseClass == Job_Thief) { bonus bFlee,10; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-60000; bonus2 bVariableCastrate,"SC_MANHOLE",-100; } if (BaseClass == Job_Acolyte) { bonus bDelayrate,-5; autobonus3 "{ bonus bMaxHPrate,25; bonus bDelayrate,-20; }",1000,30000,"AB_OFFERTORIUM"; autobonus3 "{ bonus bMaxHPrate,25; bonus bDelayrate,-20; }",1000,10000,"SR_RAISINGDRAGON"; } if (BaseClass == Job_Archer) { bonus bAspd,1; autobonus3 "{ bonus bVariableCastrate,-100; }",1000,5000,"RA_WUGBITE"; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",BaseLevel*2; } if (BaseClass == Job_Merchant) { bonus bAtkRate,5; bonus2 bSkillAtk,"GN_CART_TORNADO",20; bonus5 bAutoSpellOnSkill,"NC_SELFDESTRUCTION","GN_CARTBOOST",5,1000,1; } if (BaseClass == Job_Novice || BaseClass == Job_Taekwon || Class == Job_Ninja || Class == Job_Gunslinger) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 28596 AegisName: Toy_Ring Name: Toy Ring Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = (getskilllv("SM_SWORD")/2); .@b = (getskilllv("GN_TRAINING_SWORD")/2); bonus bStr,5+(.@a+.@b); bonus bAgi,5+(.@a+.@b); bonus bVit,5+(.@a+.@b); bonus bBaseAtk,10*(.@a+.@b); skill "BS_HAMMERFALL",5; bonus2 bSkillAtk,"SM_BASH",BaseLevel; bonus2 bSkillAtk,"KN_BOWLINGBASH",3*(BaseLevel/5); - Id: 28597 AegisName: CherryBlossom_Badge_TW Name: Cherry Badge Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bMdef,5; bonus bAgi,2; bonus3 bAutoSpellWhenHit,"PR_KYRIE",3,20; - Id: 28598 AegisName: Supplement_Part_Chip Name: Supplemental Chip Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("NC_ARMSCANNON") >= 3) bonus bDelayrate,-30; if (getskilllv("NC_NEUTRALBARRIER") >= 3) { bonus2 bVariableCastrate,"NC_ARMSCANNON",-50; bonus2 bVariableCastrate,"NC_FLAMELAUNCHER",-50; bonus2 bVariableCastrate,"NC_COLDSLOWER",-50; } if (getskilllv("NC_PILEBUNKER") >= 3) { bonus bStr,5; bonus bVit,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("NC_RESEARCHFE") >= 5) bonus bNoMadoFuel; - Id: 28600 AegisName: Ru_Blue_Book Name: Blue Book Type: Weapon SubType: Book Buy: 10 Weight: 500 Attack: 160 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | bonus bAgi,5; bonus bDex,5; - Id: 28601 AegisName: Ru_Gold_Book Name: Ru Gold Book Type: Weapon SubType: Book Weight: 500 Attack: 160 Range: 1 Slots: 2 Jobs: Archer: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bVit,8; bonus bInt,8; - Id: 28602 AegisName: Demon_Hunting_Bible Name: Demon Hunting Bible Type: Weapon SubType: Book Weight: 500 Attack: 30 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | bonus bInt,2; bonus bDex,2; .@b = readparam(bInt); bonus2 bSkillAtk,"PR_MAGNUS",30+min(.@b,120); bonus bHealPower,10; bonus bAddItemHealRate,10; .@r = (getrefine()*1000); autobonus2 "{ bonus bIgnoreMdefRace,RC_All; }",50,1000+.@r,BF_WEAPON,"{ specialeffect2 EF_FLOWERCAST; }"; bonus bUnbreakableWeapon; bonus bAtkEle,Ele_Holy; - Id: 28604 AegisName: Scarlet_Bible Name: Crimson Bible Type: Weapon SubType: Book Buy: 20 Weight: 450 Attack: 45 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); - Id: 28605 AegisName: Sinister_Book Name: Book of Vicious Mind Type: Weapon SubType: Book Buy: 20 Weight: 950 Attack: 95 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2); bonus bUnbreakableWeapon; - Id: 28606 AegisName: Union_Bible Name: Unity Bible Type: Weapon SubType: Book Buy: 20 Weight: 220 Attack: 42 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,pow(getrefine(),2)*125/100; - Id: 28607 AegisName: Toughen_Metal_Book Name: Enhanced Metal Book Type: Weapon SubType: Book Buy: 20 Attack: 70 MagicAttack: 40 Range: 1 Slots: 1 Jobs: Priest: true Sage: true Taekwon: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus bHealPower,10; bonus bMatk,5*.@r+3*(min(BaseLevel,150)/10); bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10)); if (BaseJob == Job_Wizard) { bonus bMatk,10; } - Id: 28608 AegisName: Origin_Of_Elemental Name: Elemental Origin Type: Weapon SubType: Book Buy: 20 Weight: 800 Attack: 120 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bInt,4; .@bonus = 10; if (.@r>=7) { .@bonus += 10; } if (.@r>=9) { .@bonus += 10; } bonus2 bSkillAtk,"MG_FIREBOLT",.@bonus; bonus2 bSkillAtk,"MG_COLDBOLT",.@bonus; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",.@bonus; bonus2 bSkillAtk,"WZ_EARTHSPIKE",.@bonus; - Id: 28609 AegisName: Diva_Book Name: Diva Book Type: Weapon SubType: Book Weight: 800 Attack: 120 MagicAttack: 140 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bHealPower,2*.@r; if (.@r>=7) bonus bMatkRate,4; if (.@r>=9) bonus bMatkRate,4; - Id: 28610 AegisName: Mirage_Book Name: Mirage Book Type: Weapon SubType: Book Weight: 800 Attack: 120 MagicAttack: 140 Range: 5 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bHealPower,2*.@r; if (.@r>=7) bonus bMatkRate,4; if (.@r>=9) bonus bMatkRate,4; - Id: 28611 AegisName: Sinister_Book_J Name: Book of Evil Type: Weapon SubType: Book Buy: 100000 Weight: 600 Attack: 90 MagicAttack: 100 Range: 1 Jobs: Priest: true Sage: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,pow(getrefine(),2); - Id: 28612 AegisName: Book_Of_The_Apo_IL Name: Illusion Apocalypse Type: Weapon SubType: Book Weight: 800 Attack: 170 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddEle,Ele_Earth,.@val; bonus2 bAddEle,Ele_Fire,.@val; bonus2 bAddEle,Ele_Wind,.@val; bonus2 bSubEle,Ele_Holy,-30; - Id: 28613 AegisName: Probation_Magicbook Name: Trial Sorcerer's Magic Book Type: Weapon SubType: Book Buy: 20 Attack: 60 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"SO_EARTHGRAVE",20; bonus bMatk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bMatkRate,getskilllv("SA_ADVANCEDBOOK"); } - Id: 28614 AegisName: Probation_Bible Name: Trial Archbishop's Bible Type: Weapon SubType: Book Buy: 20 Attack: 120 MagicAttack: 140 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",20; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",20; bonus bMatk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bMatkRate,getskilllv("PR_KYRIE"); } - Id: 28615 AegisName: Origin_Of_Elemental_J Name: Elemental Origin Type: Weapon SubType: Book Weight: 800 Attack: 180 MagicAttack: 150 Range: 1 Slots: 3 Jobs: Priest: true Sage: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bSkillVariableCast,"SO_PSYCHIC_WAVE",-3000; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Neutral,20; } - Id: 28616 AegisName: Rebeginer_AB_Bible Name: Beginner Archbishop's Bible Type: Weapon SubType: Book Attack: 100 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVariableCastrate,-10; if (getrefine()>=7) { bonus2 bSkillAtk,"AB_ADORAMUS",15; } - Id: 28617 AegisName: Demon_Hunting_Bible_BR Name: Holy Bible Type: Weapon SubType: Book Weight: 500 Attack: 30 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 110 Refineable: true Script: | .@r = getrefine(); bonus bInt,2; bonus bDex,2; bonus bHealPower2,10; bonus bAddItemHealRate,10; bonus2 bSkillAtk,"PR_MAGNUS",40+(2*(readparam(bInt)/3)); if (.@r>=1) autobonus2 "{ bonus2 bIgnoreDefClassRate,Class_Normal,100; bonus2 bIgnoreDefClassRate,Class_Boss,100; }",50,1000*(.@r/2),BF_WEAPON; - Id: 28618 AegisName: Time_Kamiji Name: Book of the Sun God Type: Weapon SubType: Book Buy: 10 Weight: 500 Attack: 180 MagicAttack: 170 Range: 1 Slots: 4 Jobs: Priest: true Sage: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,200*.@r; bonus bMaxSP,50*.@r; bonus bAspdRate,.@r; if (.@r>=10) bonus3 bAutoSpell,"WZ_METEOR",5,200; else if (.@r>=8) bonus3 bAutoSpell,"WZ_METEOR",4,150; else bonus3 bAutoSpell,"WZ_METEOR",3,100; - Id: 28619 AegisName: Prisoner_Dairy Name: Prisoner's Diary Type: Weapon SubType: Book Buy: 50000 Weight: 800 Attack: 210 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 175 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,20*(.@r/2); if (.@r>=9) .@val = 25; else if (.@r>=7) .@val = 10; if (.@r>=11) { bonus2 bAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bAddEle,Ele_Undead,15; bonus2 bMagicAddEle,Ele_Undead,15; } bonus2 bAddRace,RC_Demon,.@val; bonus2 bAddRace,RC_Undead,.@val; bonus2 bMagicAddRace,RC_Demon,.@val; bonus2 bMagicAddRace,RC_Undead,.@val; - Id: 28626 AegisName: Tablet_IL Name: Illusion Tablet Type: Weapon SubType: Book Weight: 800 Attack: 170 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@val = 10 + 10*(min(getrefine(),10)/3); bonus2 bAddEle,Ele_Dark,.@val; bonus2 bAddEle,Ele_Undead,.@val; bonus2 bAddEle,Ele_Poison,.@val; bonus2 bAddEle,Ele_Ghost,.@val; bonus2 bSubEle,Ele_Dark,-30; - Id: 28627 AegisName: Variant_Book Name: Abyss Book Type: Weapon SubType: Book Weight: 800 Attack: 120 MagicAttack: 140 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bHealPower,.@r*2; if (.@r>=7) { bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bMagicAddClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28629 AegisName: Circuit_Board_OS Name: Circuit Board-OS Type: Weapon SubType: Book Buy: 20 Weight: 1200 Attack: 180 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,3; if (.@r >= 7) { bonus bAspdRate,7; if (.@r >= 9) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Small,20; bonus2 bMagicAddSize,Size_Medium,20; if (.@r >= 11) { bonus bCritAtkRate,20; } } } - Id: 28630 AegisName: Demon_Hunting_Bible_K Name: Exoricist's Bible Type: Weapon SubType: Book Weight: 500 Attack: 165 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bMatk,.@r/2*10; } if (.@r>=3) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",.@r/3*25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",.@r/3*25; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",30; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",30; } - Id: 28631 AegisName: OneSkyOneSun Name: Thousand Sun Type: Weapon SubType: Book Weight: 900 Attack: 160 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus bMaxSPrate,(.@r/3)*2; if (.@r>=7) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"SJ_SOLARBURST",20; } - Id: 28632 AegisName: Evt_D_H_Bible_K Name: Sealed Exorcism Bible Type: Weapon SubType: Book Attack: 165 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25*(.@r/3); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",30; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",30; } - Id: 28633 AegisName: Boltigin Name: Boltijin Type: Weapon SubType: Book Buy: 20 Weight: 800 Attack: 120 MagicAttack: 175 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; if (.@r>=9) .@val = 30; if (.@r>=11) { bonus2 bSkillAtk,"WZ_EARTHSPIKE",50; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",50; } bonus2 bSkillAtk,"MG_FIREBOLT",20+.@val; bonus2 bSkillAtk,"MG_COLDBOLT",20+.@val; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20+.@val; - Id: 28635 AegisName: Ein_1HBOOK Name: Safety Manual Type: Weapon SubType: Book Weight: 700 Attack: 200 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bCritical,3; bonus bAtkRate,10; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,40; } if (.@r>=9) { autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; bonus bCritAtkRate,15; } if (.@r>=11) { bonus bCritAtkRate,15; bonus bDelayrate,-20; } - Id: 28636 AegisName: R_Sage_Book Name: Royal Sage Book Type: Weapon SubType: Book Weight: 1000 Attack: 90 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus bMatk,170; bonus bUnbreakableWeapon; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"SO_DIAMONDDUST",20; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; } if (.@r>=11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } - Id: 28637 AegisName: Boltigin_J Name: Boltigin Type: Weapon SubType: Book Buy: 200000 Weight: 800 Attack: 120 MagicAttack: 140 Range: 1 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30; - Id: 28643 AegisName: Pollux_Book_J Name: Pollux Book Type: Weapon SubType: Book Buy: 20 Weight: 500 Attack: 10 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,50+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus bAtkRate,50; bonus bSPDrainValue,2; bonus2 bSubClass,Class_Boss,10; autobonus "{ bonus bBaseAtk,150; }",20,3000,BF_WEAPON; if (.@r >=7) { .@val = 50; if (.@r>=9) .@val = 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - Id: 28645 AegisName: aegis_28645 Name: "[Not For Sale] Book of the Sun God" Type: Weapon SubType: Book Weight: 500 Attack: 180 MagicAttack: 170 Range: 1 Slots: 3 Jobs: Priest: true Sage: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,200*.@r; bonus bMaxSP,50*.@r; bonus bAspdRate,.@r; .@val = 3; if (.@r>=12) .@val++; if (.@r>=14) .@val++; bonus3 bAutoSpell,"WZ_METEOR",.@val,50; - Id: 28646 AegisName: Comp_D_Hunt_Bible_K Name: "[Not For Sale] Exoricist's Bible" Type: Weapon SubType: Book Weight: 500 Attack: 165 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,(.@r/2)*10; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",(.@r/3)*25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",(.@r/3)*25; if (.@r>=9) bonus bAspdRate,10; if (.@r>=11) bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",30; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",30; - Id: 28700 AegisName: Ru_Gold_Dagger Name: Ru Gold Dagger Type: Weapon SubType: Dagger Weight: 1000 Attack: 160 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bStr,8; bonus bInt,8; - Id: 28701 AegisName: Ru_Gold_Knife Name: Ru Gold Knife Type: Weapon SubType: Dagger Weight: 500 Attack: 160 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true Script: | bonus bVit,8; bonus bInt,8; - Id: 28702 AegisName: Ru_Gold_Ashura Name: Ru Gold Ashura Type: Weapon SubType: Dagger Weight: 1000 Attack: 150 MagicAttack: 150 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 120 Refineable: true - Id: 28703 AegisName: Dagger_Of_Infinite Name: Infinity Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 500 Attack: 125 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 28705 AegisName: Scarlet_Dagger Name: Crimson Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 550 Attack: 55 Range: 1 Slots: 2 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 70 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(((BaseLevel-70)/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bMatk,(.@r<=15?(pow(.@r,2)/2):225); - Id: 28706 AegisName: Sinister_Dagger Name: Dagger of Vicious Mind Type: Weapon SubType: Dagger Buy: 20 Weight: 1050 Attack: 105 MagicAttack: 50 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 160 Refineable: true Script: | bonus bBaseAtk,pow(min(getrefine(),15),2); bonus bMatk,pow(min(getrefine(),15),2)/2; - Id: 28708 AegisName: Dagger_of_Trust Name: Thunder Sword Type: Weapon SubType: Dagger Weight: 1000 Attack: 150 Range: 1 Slots: 3 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; if (.@r>=7) { .@val = 10; if (.@r>=9) .@val += 15; bonus2 bAddEle,Ele_Water,.@val; bonus2 bAddRace,RC_Fish,.@val; } - Id: 28712 AegisName: Kings_Eager Name: Sword of Ruin Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 120 Range: 1 Slots: 3 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSkillAtk,GC_CROSSIMPACT,10; - Id: 28713 AegisName: Kings_Bless Name: Glory King Sword Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 120 Range: 1 Slots: 3 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | bonus bAspdRate,5; - Id: 28714 AegisName: Toughen_Metal_Dagger Name: Enhanced Metal Dagger Type: Weapon SubType: Dagger Buy: 20 Attack: 90 MagicAttack: 40 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Mage: true Merchant: true Ninja: true Novice: true SuperNovice: true Sage: true SoulLinker: true Swordman: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,40+(4*.@r)+3*(min(BaseLevel,150)/10); bonus bAspd,1; bonus bAspdRate,2*.@r; bonus bBaseAtk,7*(.@r+(min(BaseLevel,150)/10)); - Id: 28715 AegisName: UnrivaledDagger Name: Unrivaled Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 1000 Attack: 150 Range: 1 Slots: 3 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Earth; if (.@r >= 7) { bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; } if (.@r >= 9) { bonus2 bAddRace,RC_Brute,15; bonus2 bAddRace,RC_Player_Doram,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Wind,15; bonus2 bAddEle,Ele_Earth,15; } - Id: 28717 AegisName: Valkyrie_Knife Name: Valkyrie Knife Type: Weapon SubType: Dagger Buy: 50 Weight: 100 Attack: 50 MagicAttack: 50 Range: 1 Slots: 4 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: | .@r = getrefine(); .@b = readparam(bDex)/10; if (BaseClass == Job_Novice) { bonus bMaxHP,300+(200*.@r); bonus bMaxSP,300+(20*.@r); bonus bBaseAtk,100; bonus bMatk,150+(15*.@r); bonus bUseSPrate,-5; bonus bUnbreakableWeapon; bonus bInt,2*.@r; bonus bDex,(2*.@r)-(.@r*.@b); bonus bCritical,7*.@r; bonus bAspdRate,10*.@r; bonus bCritAtkRate,.@r; } if (BaseClass == Job_Thief) { bonus bMaxSP,100; bonus bMatk,150; bonus bCritAtkRate,.@r; } if (BaseClass == Job_Mage) { bonus bMaxHP,200*.@r; bonus bMaxSP,20*.@r; } if (BaseJob == Job_Hunter) { bonus bMaxHP,200; bonus bUseSPrate,-5; bonus bInt,2*.@r; bonus bDex,2*.@r; } if (BaseJob == Job_Bard || BaseJob == Job_Dancer) { bonus bBaseAtk,100; bonus bAspdRate,10*.@r; bonus bUnbreakableWeapon; bonus bDex,-1*(.@r*.@b); } if (.@r>=7 && (BaseClass == Job_Novice || BaseJob == Job_Mage)) { bonus2 bSubRace,RC_DemiHuman,10; } - Id: 28719 AegisName: Diffusion_Lacma Name: "[Katsua]Lacma" Type: Weapon SubType: Dagger Buy: 20 Weight: 650 Attack: 45 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Mage: true Merchant: true Ninja: true Novice: true SuperNovice: true Sage: true SoulLinker: true Swordman: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); if (.@r>=3) { bonus bMatk,40; bonus bBaseAtk,40; } if (.@r>=6) { bonus2 bAddSize,Size_Medium,8; bonus2 bMagicAddSize,Size_Medium,8; autobonus "{ bonus bNoSizeFix; }",1,5000,BF_WEAPON; } if (.@r>=9) { bonus2 bAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Medium,20; } if (.@r>=12) { bonus bNoSizeFix; } if (vip_status(VIP_STATUS_ACTIVE)) { bonus bSPDrainValue,1; bonus2 bAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Medium,5; if (.@r>=8) { bonus bNoSizeFix; if (.@r>=9) { autobonus "{ bonus bSPDrainValue,2; }",1,5000,BF_WEAPON; } } } - Id: 28720 AegisName: Blue_Dagger Name: Blue Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 1000 Attack: 150 Range: 1 Slots: 3 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Water; if (.@r>=7) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Formless,10; bonus2 bAddEle,Ele_Fire,10; } if (.@r>=9) { bonus2 bAddRace,RC_Demon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bAddEle,Ele_Fire,15; } - Id: 28721 AegisName: Monokage Name: Monokage Type: Weapon SubType: Dagger Buy: 10 Weight: 800 Attack: 100 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"KO_BAKURETSU",getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,5; } else if (.@r>=7) { bonus bLongAtkRate,2; } - Id: 28722 AegisName: Diva_Dagger Name: Diva Dagger Type: Weapon SubType: Dagger Weight: 600 Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28723 AegisName: Mirage_Dagger Name: Mirage Dagger Type: Weapon SubType: Dagger Weight: 600 Attack: 120 MagicAttack: 120 Range: 5 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 28724 AegisName: Sinister_Dagger_J Name: Dagger of Evil Type: Weapon SubType: Dagger Buy: 100000 Weight: 200 Attack: 100 Range: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Rogue: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 28725 AegisName: Moonlight_Sword_IL Name: Illusion Moonlight Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 700 Attack: 150 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 99 Refineable: true Script: | bonus bMaxSPrate,10; .@val = 3; if (getrefine() >= 10) { .@val += 4; } bonus bSPDrainValue,.@val; - Id: 28726 AegisName: Probation_Dagger Name: Trial Shadow Chaser's Dagger Type: Weapon SubType: Dagger Buy: 20 Attack: 120 MagicAttack: 140 Range: 1 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,10; bonus bMatk,3*(min(BaseLevel,160)/10); bonus bBaseAtk,3*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bMatkRate,getskilllv("RG_SNATCHER"); } - Id: 28737 AegisName: Mist_Sword Name: Mist Sword Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 120 Range: 1 Slots: 3 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Ninja: true Rogue: true Sage: true SoulLinker: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Ghost; bonus bFlee,(.@r>=9?50:(.@r>=7?30:10)); bonus2 bSkillCooldown,"KO_BAKURETSU",-1000; bonus2 bSkillCooldown,"KO_SETSUDAN",-1000; - Id: 28738 AegisName: Monokage_J Name: Monokage Type: Weapon SubType: Dagger Weight: 800 Attack: 100 Range: 1 Slots: 3 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@lvl = getskilllv("NJ_KASUMIKIRI"); bonus bFlee,.@lvl*5; bonus bCritical,.@lvl*5; bonus2 bSkillAtk,"NJ_KIRIKAGE",BaseLevel; bonus2 bSkillAtk,"NJ_KASUMIKIRI",BaseLevel*3; - Id: 28740 AegisName: Rebeginer_SC_Dagger Name: Beginner Shadow Chaser's Dagger Type: Weapon SubType: Dagger Attack: 120 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,10; if (getrefine()>=7) { bonus2 bMagicAtkEle,Ele_All,7; } - Id: 28744 AegisName: Magic_Sword Name: Madogum Type: Weapon SubType: Dagger Weight: 800 Attack: 150 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bMatk,.@r/2*10; } if (.@r>=3) { bonus bAspdRate,.@r/3*2; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; } if (.@r>=11) { bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",3,50,BF_WEAPON|BF_SHORT,1; } - Id: 28745 AegisName: Counter_Dagger_IL Name: Illusion Counter Dagger Type: Weapon SubType: Dagger Weight: 900 Attack: 170 Range: 1 Slots: 2 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bCritical,90; bonus bCritAtkRate,(3*(.@r/2)); if (.@r >= 7) { bonus bAtkRate,5; if (.@r >= 9) { bonus2 bAddSize,Size_All,20; if (.@r >= 11) { bonus2 bAddEle,Ele_All,20; } } } - Id: 28751 AegisName: Woe_Knife1_Z Name: Lesser Guild Member's Gladius Type: Weapon SubType: Dagger Weight: 300 Attack: 90 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,15+.@r; bonus2 bAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,30; autobonus3 "{ bonus2 bSkillAtk,\"RG_RAID\",50; }",1000,20000,"TF_HIDING"; } - Id: 28753 AegisName: Variant_Dagger Name: Abyss Dagger Type: Weapon SubType: Dagger Weight: 600 Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 28755 AegisName: Kuroiro_OS Name: Kuroiro-OS Type: Weapon SubType: Dagger Buy: 20 Weight: 900 Attack: 150 MagicAttack: 150 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@dmg = 5; if (.@r >= 7) { .@dmg += 10; if (.@r >= 9) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",20; if (.@r >= 11) { bonus2 bAddRace,RC_Demon,10; bonus2 bMagicAddRace,RC_Demon,10; bonus2 bAddRace,RC_Undead,10; bonus2 bMagicAddRace,RC_Undead,10; } } } bonus2 bAddEle,Ele_Undead,.@dmg; bonus2 bMagicAddEle,Ele_Undead,.@dmg; bonus2 bAddEle,Ele_Dark,.@dmg; bonus2 bMagicAddEle,Ele_Dark,.@dmg; - Id: 28759 AegisName: Evt_Magic_Sword Name: Sealed Mado Sword Type: Weapon SubType: Dagger Attack: 150 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; } if (.@r>=9) { bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",3,100,BF_SHORT|BF_WEAPON,1; } - Id: 28761 AegisName: Scarlet_Athame Name: Scarlet Athame Type: Weapon SubType: Dagger Buy: 20 Weight: 300 Attack: 30 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Rogue: true Sage: true SoulLinker: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); skill "WZ_METEOR",1; bonus2 bMagicAtkEle,Ele_Fire,3*.@r; if (.@r>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkDef,5; } if (.@r>=7) skill "WZ_METEOR",min(10,.@r); if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkDef,5; } /*Todo Leap Impired State to Enemy 10 Second When Dealing Magic Attack (Add 5 Second of Cooldown to Skill Related on Movement)*/ /*Skill Related : Charge Attack, Warg Strike, Front Slide, Back Slide (NC), Dark Illusion, Pinpoint Attack, Feint Bomb, Escape, Snap, Shadow Leap, Shadow Slash, Fallen Angel, Lope, Illusion - Shadow, Back Slide (TF), Knuckle Arrow, Flying Kick, Cross Slash*/ - Id: 28762 AegisName: Bazerald_IL Name: Illusion Bazerald Type: Weapon SubType: Dagger Buy: 20 Weight: 500 Attack: 120 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 120 Refineable: true Script: | bonus bAtkEle,Ele_Fire; bonus bInt,5; .@r = getrefine(); bonus bMatkRate,(.@r/2); if (.@r >= 7) { bonus2 bMagicAtkEle,Ele_Fire,10; if (.@r >= 9) { bonus2 bSkillAtk,"MG_FIREBOLT",40; bonus2 bSkillAtk,"MG_FIREBALL",40; if (.@r >= 11) { bonus2 bSkillAtk,"WZ_METEOR",30; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } } } - Id: 28763 AegisName: Sharp_Wind_Sword Name: Surudoi Kaze Type: Weapon SubType: Dagger Buy: 20 Weight: 1000 Attack: 150 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true - Id: 28764 AegisName: Fog_Dew_Sword Name: Kiri no Tsuyu Type: Weapon SubType: Dagger Buy: 20 Weight: 1000 Attack: 150 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true - Id: 28765 AegisName: Judgement_Slasher Name: Judgement Slasher Type: Weapon SubType: Dagger Buy: 20 Weight: 1100 Attack: 195 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true - Id: 28766 AegisName: Repent_Slasher Name: Repent Slasher Type: Weapon SubType: Dagger Buy: 20 Weight: 700 Attack: 100 Range: 1 Slots: 3 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true - Id: 28767 AegisName: Jack_The_Knife Name: Jack The Knife Type: Weapon SubType: Dagger Buy: 20 Weight: 900 Attack: 185 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus2 bSkillAtk,"RG_BACKSTAP",40; if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) bonus2 bSkillUseSPrate,"SC_FATALMENACE",10; - Id: 28768 AegisName: Platinum_Dagger Name: Platinum Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 1500 Attack: 150 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus bMatkRate,5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Earth,15; } if (.@r>=11) autobonus "{ bonus bMatk,100; bonus2 bMagicAddSize,Size_All,30; }",50,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }"; /* Unknow Rates and Specialeffect */ - Id: 28771 AegisName: Ein_1HDAGGER Name: Metal Detector Mk47 Type: Weapon SubType: Dagger Weight: 1000 Attack: 200 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,40; } if (.@r>=9) { bonus2 bSkillAtk,"GC_CROSSIMPACT",15; autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 28772 AegisName: Ein_1HMAGGER Name: Jewel Detector Mk47 Type: Weapon SubType: Dagger Weight: 1000 Attack: 190 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,10; bonus2 bMagicAtkEle,Ele_Neutral,7; bonus2 bMagicAtkEle,Ele_Fire,7; if (.@r>=7) { bonus bAspdRate,10; bonus bMatk,40; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,8; bonus2 bMagicAtkEle,Ele_Fire,8; autobonus "{ bonus2 bMagicAddSize,Size_All,15; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 28774 AegisName: R_Gladius_R Name: Royal Gladius (R) Type: Weapon SubType: Dagger Weight: 1500 Attack: 200 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | bonus bAtkRate,5; - Id: 28775 AegisName: R_Gladius_L Name: Royal Gladius (L) Type: Weapon SubType: Dagger Weight: 1000 Attack: 100 Range: 1 Slots: 3 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true - Id: 28776 AegisName: R_Magician_Dagger Name: Royal Magician Dagger Type: Weapon SubType: Dagger Weight: 1500 Attack: 200 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,5; bonus bMatk,170; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,15; } if (.@r>=11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; } - Id: 28777 AegisName: Judgement_Slasher_J Name: Judgement Slasher Type: Weapon SubType: Dagger Buy: 200000 Weight: 600 Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"ASC_METEORASSAULT",30; - Id: 28778 AegisName: Repent_Slasher_J Name: Repent Slasher Type: Weapon SubType: Dagger Buy: 200000 Weight: 600 Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"ASC_BREAKER",30; - Id: 28779 AegisName: Jack_The_Knife_J Name: Shark Knife Type: Weapon SubType: Dagger Buy: 200000 Weight: 600 Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"RG_BACKSTAP",30; - Id: 28780 AegisName: Platinum_Dagger_J Name: Platinum Dagger Type: Weapon SubType: Dagger Buy: 200000 Weight: 600 Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"RG_RAID",30; - Id: 28784 AegisName: Procyon_Dagger_J Name: Procyon Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 500 MagicAttack: 10 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatk,50+BaseLevel; bonus bVariableCastrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Taekwon) { bonus bAspdRate,10; bonus bMatkRate,25; bonus2 bSubClass,Class_Boss,10; bonus2 bMagicAtkEle,Ele_Dark,25; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - Id: 28786 AegisName: Comp_Magic_Sword Name: "[Not For Sale] Madogum" Type: Weapon SubType: Dagger Weight: 800 Attack: 150 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,(.@r/2)*10; bonus bAspdRate,(.@r/3)*2; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",3,50,BF_WEAPON|BF_SHORT,1; - Id: 28787 AegisName: aegis_28787 Name: Rotten Garden Knife Type: Weapon SubType: Dagger Weight: 400 Attack: 10 Range: 1 Slots: 4 Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-5; bonus2 bSubSize,Size_All,-25; if (getitempos() == EQP_HAND_L) { if (.@r>=10) bonus2 bAddEle,Ele_All,2*(.@r-10); } - Id: 28900 AegisName: ShieldOfGuardsman Name: Guardsmen's Shield Type: Armor Buy: 20 Weight: 3000 Defense: 30 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); skill "LG_SHIELDSPELL",1; bonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,5+(.@r*3); bonus bDef,(.@r*10); bonus bMdef,.@r; - Id: 28901 AegisName: Mad_Bunny_K Name: Cursed Mad Bunny Type: Armor Buy: 20 Weight: 100 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus bAspd,3; bonus bAtkRate,5; bonus bMatkRate,5; bonus bShortWeaponDamageReturn,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,100,BF_MAGIC,0; .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if (.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if (.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; } - Id: 28902 AegisName: Mad_Bunny_K_ Name: Mad Bunny Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus bAtkRate,5; bonus bMatkRate,5; bonus bShortWeaponDamageReturn,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,100,BF_MAGIC,0; .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if (.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if (.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; } - Id: 28903 AegisName: Scutum Name: Scutum Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bFlee,5; bonus bFlee2,1+(.@r/3*2); if (.@r >= 10) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } - Id: 28904 AegisName: Union_Guard Name: Unity Guard Type: Armor Buy: 20 Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bDef,12*getrefine(); } - Id: 28905 AegisName: Union_Buckler Name: Unity Buckler Type: Armor Buy: 20 Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseLevel < 101) { bonus2 bExpAddRace,RC_All,4; bonus bMaxSPrate,getrefine()*2; } - Id: 28906 AegisName: Shield_Of_Flame Name: Shield Of Flame Type: Armor Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,5; bonus2 bSubEle,Ele_Fire,25; .@r = getrefine(); if (.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } - Id: 28907 AegisName: Shield_Of_Gust Name: Shield Of Gust Type: Armor Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,5; bonus2 bSubEle,Ele_Wind,25; .@r = getrefine(); if (.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } - Id: 28908 AegisName: BIgShield_Of_Water Name: Shield Of Water Type: Armor Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,5; bonus2 bSubEle,Ele_Water,25; .@r = getrefine(); if (.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } - Id: 28909 AegisName: Shield_Of_Earth Name: Shield Of Earth Type: Armor Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,5; bonus2 bSubEle,Ele_Earth,25; .@r = getrefine(); if (.@r > 4) { bonus bAspd,1+((.@r > 6) ? 1 : 0); } - Id: 28910 AegisName: Imuke_Upper_Shield Name: Imuke Upper Shield Type: Armor Buy: 20 Weight: 800 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | bonus bLongAtkDef,5; .@r = getrefine(); if (.@r>=5) { bonus bLongAtkDef,5; } if (.@r>=7) { bonus bLongAtkDef,10; } if (.@r>=9) { bonus bLongAtkDef,15; } - Id: 28912 AegisName: Rudo_Heart_Roll Name: Rudo's Rollpaper Type: Armor Buy: 20 Weight: 10 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Holy,20+(.@r*2); autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,10; }",50,3000+(1000*(.@r-5)),BF_MAGIC; - Id: 28913 AegisName: Ultra_Light_MShield Name: Ultralight Magic Shield Type: Armor Weight: 100 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); .@val = 5; bonus2 bIgnoreDefClassRate,Class_Normal,10; if (.@r >= 9) { .@val += 5; } else if (.@r >= 7) { .@val += 2; } bonus bAspdRate,.@val; bonus2 bSubEle,Ele_Neutral,.@val; - Id: 28914 AegisName: Toughen_Time_Keepr_Shd Name: Enhanced Time Keeper Shield Type: Armor View: 3 Defense: 25 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,15; bonus bMdef,5; bonus bMaxHP,500; - Id: 28915 AegisName: Bunker_Shield_ Name: Bunker Shield Type: Armor Buy: 20 Weight: 3500 Defense: 90 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1 Script: | .@r = getrefine(); if (.@r >= 5) { .@dmg = .@r - 4; } bonus2 bAddClass,Class_All,(4+.@dmg); bonus bAspdRate,-5; - Id: 28916 AegisName: Gaia_Shield Name: Gaia Shield Type: Armor Buy: 20 Weight: 2000 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bAddEle,Ele_Earth,5; bonus2 bMagicAddEle,Ele_Earth,5; .@r = getrefine(); if (.@r>=6) { bonus2 bSubEle,Ele_Earth,15; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Earth,10; } if (.@r>=8) { if (readparam(bStr)>=90) { bonus bBaseAtk,50; } if (readparam(bAgi)>=90) { bonus bAspdRate,5; } if (readparam(bVit)>=90) { bonus bHealPower2,10; bonus bAddItemHealRate,10; } if (readparam(bInt)>=90) { bonus bMatk,30; } if (readparam(bDex)>=90) { bonus bVariableCastrate,-5; } if (readparam(bLuk)>=90) { bonus bCritAtkRate,5; } } - Id: 28918 AegisName: Shield_Of_Chaos Name: Shield of Chaos Type: Armor Buy: 20 Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,5; bonus2 bSubEle,Ele_Dark,25; if (.@r>=5) bonus bAspd,1; if (.@r>=7) bonus bAspd,1; - Id: 28920 AegisName: ShieldOfGuardsman_J Name: Diamond Shield Type: Armor Buy: 20 Weight: 1000 Defense: 50 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); if (BaseLevel>=150) { bonus bDef,100+(20*(.@r/3)); } - Id: 28921 AegisName: Anemos_Shield Name: Anemos Shield Type: Armor Buy: 20 Weight: 3500 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,15; bonus2 bAddEle,Ele_Wind,5; bonus2 bMagicAddEle,Ele_Wind,5; bonus2 bSubEle,Ele_Wind,10; bonus bUnbreakableShield; .@r = getrefine(); if (.@r>=6) { bonus2 bAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bSubEle,Ele_Wind,15; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } - Id: 28922 AegisName: Herald_Of_GOD_IL Name: Illusion Sacred Mission Type: Armor Weight: 1600 Defense: 190 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true View: 4 Script: | bonus bVit,3; bonus bInt,2; bonus bMdef,3; bonus bUnbreakableShield; bonus2 bSkillAtk,"LG_EARTHDRIVE",(7*getrefine()); - Id: 28927 AegisName: Kings_Guard Name: King's Guard Type: Armor Buy: 20 Weight: 2500 Defense: 150 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 4 Script: | .@r = getrefine(); .@per = (.@r>=9?30:(.@r>=7?15:0)); bonus bMdef,10; bonus2 bAddRace,RC_Undead,.@per; bonus2 bAddEle,Ele_Dark,.@per; bonus2 bMagicAddRace,RC_Undead,.@per; bonus2 bMagicAddEle,Ele_Dark,.@per; - Id: 28928 AegisName: Ultra_Light_MShieldJ Name: David Shield Type: Armor Buy: 20 Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true View: 2 Script: | bonus bMdef,5; bonus2 bSubEle,Ele_Earth,20; bonus2 bSubEle,Ele_Ghost,20; bonus2 bSubEle,Ele_Holy,20-(getskilllv("CR_TRUST")); bonus2 bSubEle,Ele_Poison,20; bonus2 bSubEle,Ele_Wind,20; - Id: 28929 AegisName: HappyShield Name: Happy Shield Type: Armor Buy: 10 Weight: 3500 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,10; - Id: 28941 AegisName: Excelion_Shield Name: Excelion Shield Type: Armor Buy: 20 Weight: 1200 Defense: 95 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bBaseAtk,30*(.@r/3); bonus bMatk,30*(.@r/3); if (readparam(BaseLevel)>=130) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } - Id: 28942 AegisName: Bloody_Knight_Shield Name: Cursed Knight's Shield Type: Armor Weight: 800 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus bAspdRate,10; bonus bAtkRate,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,7; autobonus2 "{ bonus2 bSPRegenRate,25,1000; }",50,5000; autobonus "{ bonus2 bHPRegenRate,150,1000; }",50,5000; .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,10; bonus bMatk,10; } if (.@r>=9) { bonus bAspd,1; } if (.@r>=12) { bonus bDelayrate,-3; } - Id: 28943 AegisName: Forbidden_Grimoire Name: Forbidden Spellbook Type: Armor Buy: 20 Weight: 500 Defense: 20 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1 Script: | .@r = getrefine(); .@a = getskilllv("SO_SUMMON_AGNI"); .@b = getskilllv("SO_SUMMON_AQUA"); .@c = getskilllv("SO_SUMMON_VENTUS"); .@d = getskilllv("SO_SUMMON_TERA"); .@e = getskilllv("SO_EL_SYMPATHY"); bonus bMdef,5; bonus bInt,3*.@a; bonus2 bSubEle,Ele_Fire,10*.@a; bonus bDex,3*.@b; bonus2 bSubEle,Ele_Water,10*.@b; bonus bAgi,3*.@c; bonus2 bSubEle,Ele_Wind,10*.@c; bonus bVit,3*.@d; bonus2 bSubEle,Ele_Earth,10*.@d; bonus bMaxHPrate,2*.@e; bonus bMaxSPrate,2*.@e; if (.@r>=7) { bonus bDef,100; bonus bMdef,5; bonus2 bResEff,Eff_WhiteImprison,5000; } if (.@r>=9) { bonus bDef,200; bonus bMdef,10; bonus2 bResEff,Eff_WhiteImprison,5000; } - Id: 28945 AegisName: Bloody_Knight_Shield_ Name: Bloody Knight's Shield Type: Armor Weight: 800 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus bAspdRate,10; bonus bAtkRate,3; bonus bMatkRate,3; bonus2 bSubEle,Ele_All,7; autobonus2 "{ bonus2 bSPRegenRate,25,1000; }",50,5000; autobonus "{ bonus2 bHPRegenRate,150,1000; }",50,5000; .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,10; bonus bMatk,10; } if (.@r>=9) { bonus bAspd,1; } if (.@r>=12) { bonus bDelayrate,-3; } - Id: 28946 AegisName: Bloody_Knight_Shield__ Name: Purified Knight's Shield Type: Armor Weight: 800 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus bAspdRate,10; bonus bAtkRate,5; bonus bMatkRate,5; bonus2 bSubEle,Ele_All,10; autobonus2 "{ bonus2 bSPRegenRate,50,1000; }",50,5000; autobonus "{ bonus2 bHPRegenRate,300,1000; }",50,5000; .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,20; bonus bMatk,20; } if (.@r>=9) { bonus bAspd,2; } if (.@r>=12) { bonus bDelayrate,-5; } - Id: 28947 AegisName: Gaia_Shield_BR Name: Gaia's Shield # !todo check english name Type: Armor Weight: 500 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | bonus bMdef,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bAddEle,Ele_Earth,5; bonus2 bMagicAddEle,Ele_Earth,5; .@r = getrefine(); if (.@r>=8) { bonus2 bSubEle,Ele_Earth,15; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Earth,10; } if (.@r>=10) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bVit)>=90) { bonus bHealPower2,10; bonus bAddItemHealRate,10; } if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } - Id: 28948 AegisName: Doram_Shield Name: Doram Shield Type: Armor Buy: 20 Weight: 100 Defense: 120 Jobs: Summoner: true Spirit_Handler: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus bMdef,5; bonus2 bSubSize,Size_All,(getrefine() >= 8 ? 25 : 15); - Id: 28950 AegisName: Variant_Shield Name: Abyss Shield Type: Armor Weight: 1200 Defense: 150 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=6) { bonus2 bResEff,Eff_Fear,50; bonus2 bSubRace,RC_Player_Human,20; } if (.@r>=8) { bonus2 bResEff,Eff_Fear,50; bonus2 bSubRace,RC_Player_Human,10; } - Id: 28951 AegisName: Nero_Shield Name: Nero Shield Type: Armor Buy: 20 Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Water,10; bonus2 bAddEle,Ele_Water,5; bonus2 bMagicAddEle,Ele_Water,5; if (.@r>=6) { bonus2 bSubEle,Ele_Water,15; bonus2 bAddEle,Ele_Water,10; bonus2 bMagicAddEle,Ele_Water,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } - Id: 28953 AegisName: Poring_B_Shield Name: Poring Battle Shield Type: Armor Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true View: 1 # unknown view Script: | .@r = getrefine(); bonus2 bSubSize,Size_All,2*(.@r/3); if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=9) { bonus bAspd,1; } if (.@r>=12) { autobonus "{ bonus2 bHPRegenRate,100,1000; }",50,4000,BF_MAGIC; bonus bShortWeaponDamageReturn,1; } - Id: 28955 AegisName: Fotia_Shield Name: Fotia Shield Type: Armor Buy: 20 Weight: 1000 Defense: 120 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,5; bonus2 bSubEle,Ele_Fire,10; bonus2 bAddEle,Ele_Fire,5; bonus2 bMagicAddEle,Ele_Fire,5; if (.@r>=6) { bonus2 bSubEle,Ele_Fire,15; bonus2 bAddEle,Ele_Fire,10; bonus2 bMagicAddEle,Ele_Fire,10; } if (.@r>=8) { if (readparam(bStr)>=90) bonus bBaseAtk,50; if (readparam(bAgi)>=90) bonus bAspdRate,5; if (readparam(bInt)>=90) bonus bMatk,30; if (readparam(bVit)>=90) bonus bAddItemHealRate,10; if (readparam(bDex)>=90) bonus bVariableCastrate,-5; if (readparam(bLuk)>=90) bonus bCritAtkRate,5; } - Id: 28956 AegisName: Jirant_Mirror Name: Witch Zilant's Mirror Type: Armor View: 1 Buy: 20 Weight: 500 Defense: 80 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true Script: | bonus bMdef,5; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Holy,20+(getskilllv("CR_TRUST")*2); bonus2 bSubEle,Ele_Ghost,20; - Id: 28962 AegisName: Haurvatat Name: Haurvatat Type: Armor Buy: 20 Weight: 600 Defense: 100 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | bonus bMdef,10; bonus2 bSubSize,Size_All,30; bonus2 bSubEle,Ele_Neutral,10; - Id: 28970 AegisName: Rachel_Sheild_Cru Name: Glacial Protection Shield Type: Armor Weight: 1500 Defense: 105 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); if (.@r>=6) bonus2 bSubRace,RC_DemiHuman,10; if (.@r>=9) bonus2 bSkillAtk,"CR_HOLYCROSS",25; - Id: 28972 AegisName: aegis_28972 Name: "[Not For Sale] Cursed Mad Bunny" Type: Armor Weight: 100 Locations: Left_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | bonus bAspd,3; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus bShortWeaponDamageReturn,10; bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,100,BF_MAGIC,0; .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,5; bonus bMatk,5; } if (.@r>=9) { bonus bBaseAtk,15; bonus bMatk,15; } if (.@r>=12) { bonus bCritical,10; bonus bNoCastCancel; } - Id: 28973 AegisName: aegis_28973 Name: Themis Balance Type: Armor Weight: 300 Defense: 90 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,10; bonus bVariableCastrate,-5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",BaseLevel/5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,3*(getskilllv("AL_HEAL")/2); if (.@r>=11) bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-1000; - Id: 28974 AegisName: aegis_28974 Name: "[Not For Sale] Themis Balance" Type: Armor Weight: 300 Defense: 90 Slots: 1 Locations: Left_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,10; bonus bVariableCastrate,-5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",BaseLevel/5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,3*(getskilllv("AL_HEAL")/2); if (.@r>=11) bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-1000; - Id: 28977 AegisName: aegis_28977 Name: Fallen Warrior's Shield Type: Armor Weight: 3500 Defense: 120 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,-15; bonus2 bSubRace,RC_Demon,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; if (.@r>=7) { bonus bAspd,2; } if (.@r>=10) { if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) bonus2 bFixedCastrate,"LG_EARTHDRIVE",-100; } if (.@r>=12) { bonus bHit,40; bonus bAtkRate,5; } - Id: 28979 AegisName: aegis_28979 Name: Black Mithril Guard Type: Armor Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); .@val = 10; bonus2 bSkillAtk,"SC_FATALMENACE",getskilllv("SC_MAELSTROM")*5; if (.@r>=7) bonus bAspd,2; if (.@r>=9) { bonus bAllStats,2; .@val += 5; } if (.@r>=11) { bonus bDelayrate,-5; bonus2 bAddRace,RC_All,3; } bonus2 bSubClass,Class_Normal,.@val; - Id: 28980 AegisName: aegis_28980 Name: "[Not For Sale] Black Mithril Guard" Type: Armor Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); .@val = 10; bonus2 bSkillAtk,"SC_FATALMENACE",getskilllv("SC_MAELSTROM")*5; if (.@r>=7) bonus bAspd,2; if (.@r>=9) { bonus bAllStats,2; .@val += 5; } if (.@r>=11) { bonus bDelayrate,-5; bonus2 bAddRace,RC_All,3; } bonus2 bSubClass,Class_Normal,.@val; - Id: 28982 AegisName: aegis_28982 Name: Shield of Angel Type: Armor Weight: 2500 Defense: 100 Slots: 1 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus bBaseAtk,10*(.@r/2); if (.@r>=7) bonus bAspdRate,10; if (.@r>=9) { bonus bLongAtkRate,10; bonus bDelayrate,-5; } if (.@r>=11) { bonus2 bSkillAtk,"GN_CARTCANNON",15; bonus2 bSkillAtk,"NC_ARMSCANNON",15; } - Id: 28983 AegisName: aegis_28983 Name: "[Not For Sale] Shield of Angel" Type: Armor Weight: 2500 Defense: 100 Slots: 1 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Left_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus bBaseAtk,10*(.@r/2); if (.@r>=7) bonus bAspdRate,10; if (.@r>=9) { bonus bLongAtkRate,10; bonus bDelayrate,-5; } if (.@r>=11) { bonus2 bSkillAtk,"GN_CARTCANNON",15; bonus2 bSkillAtk,"NC_ARMSCANNON",15; } - Id: 28984 AegisName: aegis_28984 Name: Forbidden Grimoire Type: Armor Weight: 500 Defense: 1000 Slots: 1 Jobs: Sage: true Locations: Left_Hand: true Classes: All_Third: true Fourth: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bAspdRate,10; bonus bMaxHP,100*.@r; bonus2 bMagicAtkEle,Ele_Earth,4*(.@r/3); bonus2 bMagicAtkEle,Ele_Water,4*(.@r/3); if (.@r>=9) { bonus bDex,10; bonus bInt,10; } if (.@r>=11) { autobonus "{ bonus bInt,150; bonus2 bHPRegenRate,-100,1000; bonus2 bSPRegenRate,-100,1000; bonus2 bSkillCooldown,\"SO_DIAMONDDUST\",-4500; bonus2 bSkillCooldown,\"SO_EARTHGRAVE\",-4500; }",40,10000,BF_MAGIC; } - Id: 28985 AegisName: aegis_28985 Name: Protect Feather Shield Type: Armor Weight: 1000 Defense: 140 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,.@r; bonus bMaxSPrate,.@r; if (.@r>=7) { bonus2 bSubSkill,"WL_CRIMSONROCK",30; bonus2 bSubSkill,"NC_ARMSCANNON",30; if (.@r>=9) { bonus2 bSubSkill,"RA_ARROWSTORM",30; bonus2 bSubSkill,"SR_HELLGATE",30; if (.@r>=11) { bonus2 bSubSkill,"SU_LUNATICCARROTBEAT",30; bonus2 bSubSkill,"SU_CN_METEOR",30; } } } - Id: 31027 AegisName: C_Pretty_Bear Name: Costume Pretty Bear Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1480 - Id: 31028 AegisName: C_Black_Cat_Hood Name: Costume Black Cat Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1481 - Id: 31029 AegisName: C_Pig_Nose Name: Costume Pig Nose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1482 - Id: 31030 AegisName: C_Tiger_Face Name: Costume Tiger Face Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 483 - Id: 31031 AegisName: C_Tare_Pope_Casual Name: Costume Drooping Pope Casual Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1483 - Id: 31032 AegisName: C_Tare_Luwmin Name: "Costume: Sailing Lumin" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1484 - Id: 31033 AegisName: C_BelieversCap Name: Costume Believer's Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1485 - Id: 31034 AegisName: C_Pirate_Bandana Name: Costume Pirates Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 592 - Id: 31035 AegisName: C_Bankruptcy_Of_Heart Name: Costume Bankruptcy of Heart Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 107 - Id: 31036 AegisName: C_Satto_Hat Name: Costume Used Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 227 - Id: 31037 AegisName: C_Beret Name: Costume Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 226 - Id: 31038 AegisName: C_Cheks_Vandana Name: Costume Cheks Bandana Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1174 - Id: 31039 AegisName: C_Kings_Crown Name: Costume Crown of Old King Red Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1491 - Id: 31040 AegisName: C_Magical_Feather Name: Costume Magical Feather Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1279 Script: | hateffect(HAT_EF_MAGICAL_FEATHER,true); EquipScript: | /* commented because only the last sentence is seen showscript "Oh Holy Light!"; showscript "Strike down my foes!"; showscript "Blessings be upon me as I strike the undead and demonic with my Demon Bane!"; showscript "I am a Magical Acolyte who fights against the black Porings of Satan Morroc!"; */ showscript "Every day I struggle against the darkness but today will be magical!"; UnEquipScript: | hateffect(HAT_EF_MAGICAL_FEATHER,false); - Id: 31041 AegisName: C_Cat_Lace_Hairband Name: Costume Cat Lace Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 816 - Id: 31042 AegisName: C_Survive_Circlet Name: Costume Survival Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1220 - Id: 31043 AegisName: C_Ribbon_White Name: Costume Ribbon White Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 248 - Id: 31044 AegisName: C_Pink_Drooping_Kitty Name: Costume Drooping Kitty Pink Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 276 - Id: 31045 AegisName: C_Blue_Rear_Ribbon Name: Costume Blue Rear Ribbon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1492 - Id: 31046 AegisName: C_White_Rose_Princess Name: Costume White Rose Princess Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1493 - Id: 31047 AegisName: C_First_Love_Cheek Name: Costume First Love Cheek Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1494 - Id: 31048 AegisName: C_White_Lily_Balck Name: Costume White Lily Black Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1495 - Id: 31049 AegisName: C_Marin_Crown Name: Costume Marin Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 948 - Id: 31050 AegisName: C_Flower_Poring_Hat Name: Costume Golden Poring Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1236 - Id: 31051 AegisName: C_HappySummer_SunVisor Name: Costume Poring Sun Visor Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1496 - Id: 31052 AegisName: C_Alchemist_Mask Name: Costume Alchemist Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1497 - Id: 31053 AegisName: C_King_Tiger_Doll_Hat Name: Costume Drooping Eddga Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 495 - Id: 31054 AegisName: C_Sting_Hat Name: Costume Sting Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 504 - Id: 31055 AegisName: C_Poring_Soap_Pipe Name: Costume Poring Soap Pipe Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1499 - Id: 31056 AegisName: C_Exploding_Wave_Red Name: Costume Furious Wave Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_BAKURETSU_HADOU,true); UnEquipScript: | hateffect(HAT_EF_BAKURETSU_HADOU,false); - Id: 31057 AegisName: C_Eremes_Scarf_Black Name: "Costume: Eremes' Scarf (Black)" Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1501 - Id: 31058 AegisName: C_Gelato_Hat Name: Costume Gelato Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 777 - Id: 31059 AegisName: C_Sailor_Hat Name: Costume Sailor Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 798 - Id: 31060 AegisName: C_Starfish_Headband Name: Costume Starfish Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 793 - Id: 31061 AegisName: C_Forceps_Hairpin Name: Costume Nipper Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 470 - Id: 31062 AegisName: C_Eleanor_Wig Name: Costume Eleanor Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1502 - Id: 31063 AegisName: C_Hair_Bun_BU Name: Costume Hair in a Bun(Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1503 - Id: 31064 AegisName: C_Hair_Bun_RD Name: Costume Hair in a Bun(Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1504 - Id: 31065 AegisName: C_Hair_Bun_YL Name: Costume Hair in a Bun(Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1505 - Id: 31066 AegisName: C_Hair_Bun_GN Name: Costume Hair in a Bun(Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1506 - Id: 31067 AegisName: C_Hair_Bun_BL Name: Costume Hair in a Bun(Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1507 - Id: 31068 AegisName: C_Hair_Bun_WH Name: Costume Hair in a Bun(White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1508 - Id: 31069 AegisName: C_Hair_Bun_OM Name: Costume Hair in a Bun(Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1509 - Id: 31070 AegisName: C_Hair_Bun_PP Name: Costume Hair in a Bun(Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1510 - Id: 31071 AegisName: C_Roll_Twin_BU Name: Costume Roll Twin(Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1511 - Id: 31072 AegisName: C_Roll_Twin_RD Name: Costume Roll Twin(Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1512 - Id: 31073 AegisName: C_Roll_Twin_YL Name: Costume Roll Twin(Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1513 - Id: 31074 AegisName: C_Roll_Twin_GN Name: Costume Roll Twin(Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1514 - Id: 31075 AegisName: C_Roll_Twin_BL Name: Costume Roll Twin(Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1515 - Id: 31076 AegisName: C_Roll_Twin_WH Name: Costume Roll Twin(White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1516 - Id: 31077 AegisName: C_Roll_Twin_OM Name: Costume Roll Twin(Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1517 - Id: 31078 AegisName: C_Roll_Twin_PP Name: Costume Roll Twin(Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1518 - Id: 31079 AegisName: C_Long_Pony_BU Name: Costume Long Pony(Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1519 - Id: 31080 AegisName: C_Long_Pony_RD Name: Costume Long Pony(Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1520 - Id: 31081 AegisName: C_Long_Pony_YL Name: Costume Long Pony(Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1521 - Id: 31082 AegisName: C_Long_Pony_GN Name: Costume Long Pony(Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1522 - Id: 31083 AegisName: C_Long_Pony_BL Name: Costume Long Pony(Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1523 - Id: 31084 AegisName: C_Long_Pony_WH Name: Costume Long Pony(White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1524 - Id: 31085 AegisName: C_Long_Pony_OM Name: Costume Long Pony(Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1525 - Id: 31086 AegisName: C_Long_Pony_PP Name: Costume Long Pony(Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1526 - Id: 31087 AegisName: C_Dwarf_Beard Name: Costume Dwarf Beard Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1349 - Id: 31088 AegisName: C_Mad_Hatter Name: Costume Mad Hatter Type: Armor Locations: Costume_Head_Top: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1421 - Id: 31089 AegisName: C_Exploding_Wave_Sca Name: Costume Exploding Crimson Flame Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1500 Script: | hateffect(HAT_EF_BAKURETSU_HADOU,true); /* Need to confirm this */ UnEquipScript: | hateffect(HAT_EF_BAKURETSU_HADOU,false); - Id: 31090 AegisName: C_Angeling_Wanna_Fly Name: Costume Angelring Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 348 - Id: 31091 AegisName: C_Gold_Shower Name: Costume Show Me The Zeny Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1528 Script: | hateffect(HAT_EF_GOLD_SHOWER,true); bonus2 bGetZenyNum,500,3; UnEquipScript: | hateffect(HAT_EF_GOLD_SHOWER,false); - Id: 31092 AegisName: C_Rabbit_Ribbon Name: Costume Bunny Ribbon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 845 - Id: 31093 AegisName: C_Underlamp Name: Costume Under Lamp Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1531 - Id: 31094 AegisName: C_Dice_Hat Name: Costume Dice Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 494 - Id: 31095 AegisName: C_JP_EV01 Name: Costume Mythical Baphomet Horns Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1532 - Id: 31096 AegisName: C_JP_EV02 Name: Costume Dog Ears of Bau Alma Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1533 - Id: 31097 AegisName: C_JP_EV03 Name: Costume Bunny Ears of Minnie Doe Alma Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1534 - Id: 31098 AegisName: C_JP_EV04 Name: Costume Fox Ears of Tamamo Loa Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1535 - Id: 31099 AegisName: C_JP_EV05 Name: Costume Headdress of Ontama Aria Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1536 - Id: 31100 AegisName: C_JP_EV06 Name: Costume Hat of Dumpty Alma Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1537 - Id: 31101 AegisName: C_JP_EV07 Name: Costume Taini Hat Blue Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1538 - Id: 31102 AegisName: C_JP_EV08 Name: Costume Taini Hat Orange Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1539 - Id: 31103 AegisName: C_JP_EV09 Name: Costume Taini Hat Green Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1540 - Id: 31104 AegisName: C_JP_EV10 Name: Costume Taini Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 722 - Id: 31105 AegisName: C_RoCelebrationHat Name: Costume RO Celebration Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1541 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 31106 AegisName: Eye_Patch_Blue Name: Costume Eyepatch of Peace Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 697 - Id: 31107 AegisName: Eye_Patch_Red Name: Costume Eyepatch of Prosperity Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 698 - Id: 31108 AegisName: C_Free_Hug_BR Name: Costume Free Hug # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1542 - Id: 31109 AegisName: C_Guildsman_Recruit_BR Name: Costume Guildsman Recruit # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1543 - Id: 31110 AegisName: C_Party_Seeker_BR Name: Costume Party Seeker # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1544 - Id: 31111 AegisName: C_Party_Mem_Recruit_BR Name: Costume Party Mem Recruit # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1545 - Id: 31112 AegisName: C_Begging_Board_BR Name: Costume Begging Board # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1546 - Id: 31113 AegisName: C_Doctor_Cap Name: Costume Doctor headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 60 - Id: 31114 AegisName: C_Pretend_Murdered Name: Costume Theater Prop Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 80 - Id: 31115 AegisName: C_Truemoney_TH Name: Costume Inw True Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1547 - Id: 31116 AegisName: C_Truemoney_TH7 Name: Costume Inw True 7 Days Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1547 - Id: 31117 AegisName: C_Hoplite_Helmet Name: Costume Hoplite Helmet Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 660 - Id: 31118 AegisName: C_Assassin_Skull_Mask Name: Costume Scratch Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 984 - Id: 31119 AegisName: C_Blue_Wizardry_Hat Name: Costume Magician Hat Blue Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 285 - Id: 31120 AegisName: C_Vampire_Familiar Name: Costume Vampire Familiar Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1548 - Id: 31121 AegisName: C_Stall_Of_Bat Name: Costume Stall Of Bat Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1549 - Id: 31122 AegisName: C_Bloody_Stop_Bandage Name: Costume Bloody Stop Bandage Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1550 - Id: 31123 AegisName: C_Ghostring_Tall_Hat Name: Costume Ghostring Tall Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1551 - Id: 31124 AegisName: C_Ribbon_Chef_Hat Name: Costume Ribbon Chief Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 785 - Id: 31125 AegisName: C_QueenAnzRevenge Name: Costume Queen Anne's Revenge Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1360 - Id: 31126 AegisName: C_Nestea_Hat Name: Costume Nestea Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 756 - Id: 31127 AegisName: C_Taiwan_Flag_Hat Name: Costume Flag Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 482 - Id: 31128 AegisName: C_Bride_Mask Name: Costume Bride Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 223 - Id: 31129 AegisName: C_Mr_Scream Name: Costume Scratch Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 75 - Id: 31130 AegisName: C_Indian_Hair_Piece Name: Costume Indian Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 96 - Id: 31131 AegisName: C_Holy_Bonnet Name: Costume Monk Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 35 - Id: 31132 AegisName: C_Christmas_Wreath Name: Costume Christmas Wreath Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1554 - Id: 31133 AegisName: C_Gambler_Seal Name: Costume Gambler Seal Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1202 - Id: 31134 AegisName: C_Chatty_Parrot Name: Costume Talkactive Parrot Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1116 - Id: 31135 AegisName: C_Fancy_Mini_Crown Name: Costume Luxury Mini Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 707 - Id: 31136 AegisName: C_Clock_Casket Name: Costume Clock Casket Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1555 - Id: 31137 AegisName: C_Blue_Rose_Ornament Name: Costume Blue Rose Ornament Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1556 - Id: 31138 AegisName: C_Piamette_Hood_Red Name: Costume Piamette's Red Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1557 - Id: 31139 AegisName: C_White_Rabbit_Ear Name: Costume White Rabbit Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1558 - Id: 31140 AegisName: C_Cowboy_Hat_B Name: Costume Black Cowboy Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1569 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 31141 AegisName: C_Cactus_Corsage Name: Costume Cactus Flower Corsage Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1570 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 31142 AegisName: C_Time_Accessory_J Name: Costume Prison of Time Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1309 EquipScript: | sc_start SC_TIME_ACCESSORY,INFINITE_TICK,0; UnEquipScript: | sc_end SC_TIME_ACCESSORY; - Id: 31143 AegisName: C_Krathong_Crown_TH Name: "Costume: Krathong Crown" Type: Armor View: 1560 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31144 AegisName: C_Indi_Feather_Band Name: Costume Indian Feather Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 809 - Id: 31145 AegisName: C_AliceFriesinger_Hat69 Name: Costume AliceFriesinger Hat 69 Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1249 - Id: 31146 AegisName: C_KarduiEar Name: Costume Kardui Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1357 - Id: 31147 AegisName: C_Tare_Domovoi Name: Costume Drooping Domovoi Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 781 - Id: 31148 AegisName: C_Debril_Doll_Hat Name: Costume Drooping W Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 359 - Id: 31149 AegisName: C_Nydhog_Wig Name: Costume Nydhoggur Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1563 - Id: 31150 AegisName: C_Shalosh_Head_Dress Name: Costume Shalosh Headdress Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1564 - Id: 31151 AegisName: C_Chasher_Ear Name: Costume Cheshire's Cat Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1565 - Id: 31152 AegisName: C_Piamette_BowTie_Red Name: Costume Piamette's Red Bow Tie Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1566 - Id: 31153 AegisName: C_Aniv_Star_Hat2 Name: Costume Cactus Flower Corsage Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1567 - Id: 31154 AegisName: C_Cap Name: C Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 14 - Id: 31155 AegisName: C_Spinning_Eyes Name: Costume Spinning Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 27 - Id: 31156 AegisName: C_Fruit_Shell Name: Costume Nut Shell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 122 - Id: 31157 AegisName: C_Spirit_Chain Name: Costume Soul Ring Type: Armor View: 69 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31158 AegisName: C_Squirrel_Ear_Hat Name: Costume Squirrel Ear Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1486 - Id: 31159 AegisName: C_Jormungandr_Hat Name: Costume Jormungandr Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1149 - Id: 31160 AegisName: C_Rune_Helm Name: Costume Rune Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1361 - Id: 31161 AegisName: C_Tiger_Mask Name: Costume Tiger Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 181 - Id: 31162 AegisName: C_Shaving_Foam Name: Costume Shaving Foam Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1129 - Id: 31163 AegisName: C_Sheep_Hat Name: Costume Sheep Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 205 - Id: 31164 AegisName: C_Brown_Stall Name: Costume Brown Stole Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1572 - Id: 31165 AegisName: C_Piggyback Name: Costume Piggyback Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1574 - Id: 31166 AegisName: C_Teddy_Bear_Hood Name: Costume Teddy Bear Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1571 - Id: 31167 AegisName: C_Lunatic_Ear_Black Name: Costume Hanging Black Lunatic Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1575 - Id: 31168 AegisName: C_Mouton_Life_BL Name: Costume Blue Mouton Life Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1573 - Id: 31169 AegisName: C_Hat_Of_Outlaw Name: Costume Hilarious Bandit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 486 - Id: 31170 AegisName: C_Power_Of_Thor Name: Costume Wings of Wind Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 493 - Id: 31171 AegisName: C_Cat_Hat Name: Costume Nekomimi Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 182 - Id: 31172 AegisName: C_Roast_Memory Name: Costume Roast Memory Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1576 - Id: 31173 AegisName: C_Crown_Parrot Name: Costume Oyster Parakeet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 419 - Id: 31174 AegisName: C_Weird_Bread_Bag Name: C Suspicious Bread Bag Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 429 - Id: 31175 AegisName: C_Strawberry_Hat Name: Costume Strawberry Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 755 - Id: 31176 AegisName: C_Looking Name: C Looking Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1577 - Id: 31177 AegisName: C_Tail_Hat Name: C Tail Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1578 - Id: 31178 AegisName: C_Flame_Muffler Name: C Fire Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1579 - Id: 31179 AegisName: C_Wolf_Masquerade Name: C Wolf Masquerade Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1580 - Id: 31180 AegisName: C_Shura_King_Pledge Name: C King Sura Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1581 - Id: 31181 AegisName: C_Necklace_Rosary Name: Costume Necklace Rosary Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1471 - Id: 31182 AegisName: C_Side_Cap Name: Costume Side Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 529 - Id: 31183 AegisName: C_Fallen_Angel_Blessing Name: Costume Blessing of Fallen Angel Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1250 - Id: 31184 AegisName: C_Hawkeyes Name: Costume Hawkeye Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 609 - Id: 31185 AegisName: C_Engineer_Cap Name: Costume Engineer Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 608 - Id: 31186 AegisName: C_Black_Cat Name: Costume Black Cat Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1582 - Id: 31187 AegisName: C_War_Princess_Ribbon Name: Costume War Princess Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1583 - Id: 31188 AegisName: C_Mono_Gothic_Bonnet Name: Costume Mono Gothic Bonnet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1584 - Id: 31189 AegisName: C_Cat_Ears_Cape_Red Name: Costume Red Cat Ears Cape Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1591 - Id: 31190 AegisName: C_Angel_Mini_Silk_Hat_B Name: Costume Black Angel Mini Silk Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1586 - Id: 31191 AegisName: C_Whikebain_Ears_TW Name: Vibrant Cat Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1588 - Id: 31192 AegisName: C_Baby_Cat_Ears_TW Name: Blue Cat Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1589 - Id: 31193 AegisName: C_Tare_Ahat Name: Costume Ahat Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1590 - Id: 31194 AegisName: C_Spinning_Propeller Name: Costume Spinning Propeller Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 270 - Id: 31195 AegisName: C_Choco_Minihat Name: Costume Mini Chocolate Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1592 Script: | bonus2 bExpAddRace,RC_All,7; - Id: 31196 AegisName: C_JP_EV12 Name: C Drooping Chuni Penguin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1596 - Id: 31197 AegisName: C_Egg_Crispinette Name: Costume Egg Crispinette Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1598 - Id: 31198 AegisName: C_Octopus_Hat_J Name: C Octopus Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 538 - Id: 31199 AegisName: C_Weird_Goatee Name: C Weird Beard Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 21 - Id: 31200 AegisName: C_Wrapping_Ribbon Name: C Wrapping Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1599 - Id: 31201 AegisName: C_Royal_Rabbit_Crown Name: C Royal Rabbit Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1600 - Id: 31202 AegisName: C_Dog_Officer Name: C Dog Officer Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1601 - Id: 31203 AegisName: C_Charcoal_Stove Name: C Charcoal Stove Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1602 - Id: 31204 AegisName: C_Drooping_White_Kitty Name: C Drooping White Cat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 378 - Id: 31205 AegisName: C_L_Orc_Hero_Helm Name: C Large Orc Hero Helm Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 381 - Id: 31206 AegisName: C_Rune_Hairband Name: C Rune Hairband Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 564 - Id: 31207 AegisName: C_Dokkebi_Mask Name: C Dokkebi Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 689 - Id: 31208 AegisName: C_Straight_Long_YL Name: C Straight_Long Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1603 - Id: 31209 AegisName: C_Straight_Long_WH Name: C Straight Long White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1604 - Id: 31210 AegisName: C_Side_Pigtail_BU Name: C Side Pigtail Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1605 - Id: 31211 AegisName: C_Side_Pigtail_RD Name: C Side Pigtail Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1606 - Id: 31212 AegisName: C_Side_Pigtail_YL Name: C Side Pigtail Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1607 - Id: 31213 AegisName: C_Side_Pigtail_GN Name: C Side Pigtail Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1608 - Id: 31214 AegisName: C_Side_Pigtail_BL Name: C Side Pigtail Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1609 - Id: 31215 AegisName: C_Side_Pigtail_WH Name: C Side Pigtail White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1610 - Id: 31216 AegisName: C_Side_Pigtail_OM Name: C Side Pigtail Brown Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1611 - Id: 31217 AegisName: C_Side_Pigtail_PP Name: C Side Pigtail Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1612 - Id: 31218 AegisName: C_Low_Pony_BU Name: C Low Pony Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1613 - Id: 31219 AegisName: C_Low_Pony_RD Name: C Low Pony Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1614 - Id: 31220 AegisName: C_Low_Pony_YL Name: C Low Pony Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1615 - Id: 31221 AegisName: C_Low_Pony_GN Name: C Low Pony Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1616 - Id: 31222 AegisName: C_Low_Pony_BL Name: C Low Pony Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1617 - Id: 31223 AegisName: C_Low_Pony_WH Name: C Low Pony White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1618 - Id: 31224 AegisName: C_Low_Pony_OM Name: C Low Pony Brown Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1619 - Id: 31225 AegisName: C_Low_Pony_PP Name: C Low Pony Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1620 - Id: 31226 AegisName: C_Long_Twin_BU Name: C Long Twin Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1621 - Id: 31227 AegisName: C_Long_Twin_RD Name: C Long Twin Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1622 - Id: 31228 AegisName: C_Long_Twin_YL Name: C Long Twin Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1623 - Id: 31229 AegisName: C_Long_Twin_GN Name: C Long Twin Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1624 - Id: 31230 AegisName: C_Long_Twin_BL Name: C Long Twin Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1625 - Id: 31231 AegisName: C_Long_Twin_WH Name: C Long Twin Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1626 - Id: 31232 AegisName: C_Long_Twin_OM Name: C Long Twin Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1627 - Id: 31233 AegisName: C_Long_Twin_PP Name: C Long Twin Yellow Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1628 - Id: 31234 AegisName: C_Persika_J Name: C Persica Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 659 - Id: 31235 AegisName: C_Large_Ribbonmuffler_V Name: C Large Ribbon Muffler Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1312 - Id: 31236 AegisName: C_Subject_Aura_V Name: C Vicious Mind Aura Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1267 - Id: 31237 AegisName: C_Pope_Ribbon_V Name: C Pale Yellow Ribbon Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1474 - Id: 31238 AegisName: C_Good_Wedding_Veil_V Name: C True Love Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 489 - Id: 31239 AegisName: C_Love_Rabbithood_V Name: C Love Rabbit Hood Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 549 - Id: 31240 AegisName: C_Whisper_Mask_V Name: C Whisper Mask Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 321 - Id: 31241 AegisName: C_Blazing_Sun_V Name: C Burning Sun Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 654 - Id: 31242 AegisName: C_Anubis_Helm_V Name: C Anubis Hat Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 485 - Id: 31243 AegisName: C_Tongue_Mask_V Name: C Tongue Mask Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 253 - Id: 31244 AegisName: C_Sky_Helm_V Name: C Skymet Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 868 - Id: 31245 AegisName: C_Bell_Flower Name: C Cherry Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 602 - Id: 31246 AegisName: C_Humming_Bird Name: C Humming Bird Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 702 - Id: 31247 AegisName: C_Hippo_Hat Name: C Hippo Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 859 - Id: 31248 AegisName: C_Isabella_Red_Ear Name: C Isabella Red Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1030 - Id: 31249 AegisName: C_Rabbit_Hopping Name: C Hopping Rabbit Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1635 - Id: 31250 AegisName: C_Wonderful_Beast_Ear Name: C Wonderful Beast Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1636 - Id: 31251 AegisName: C_Cat_Mouth Name: C Cats Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1637 - Id: 31252 AegisName: C_Cat_Ear_Hat_White Name: C White Cat Ears Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1638 - Id: 31253 AegisName: C_Bright_Fury Name: C Rinzu Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 548 - Id: 31254 AegisName: C_Horse_King_Red Name: C Red Hare Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1631 - Id: 31255 AegisName: C_Dalcom_Helmet Name: C Sweet Helmet Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1374 - Id: 31256 AegisName: C_Jaguar_Hat_J Name: C Jaguar Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 530 - Id: 31257 AegisName: C_Clay_Poring_Jar Name: Costume Poring Jars Of Clay Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1634 - Id: 31258 AegisName: C_White_Clay_Filler Name: Costume Glowing White Blush Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1632 - Id: 31259 AegisName: C_Bubble_A_Angel_H Name: Costume Bubbly Arc Angeling Hairband Type: Armor View: 1633 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31260 AegisName: C_Observer_J Name: C Observer Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1639 - Id: 31261 AegisName: C_Soda_In_Mouth Name: C Soda in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1643 - Id: 31262 AegisName: C_Disposable_3D_Glass Name: C Disposable 3D Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 661 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddRace,RC_All,10; - Id: 31263 AegisName: C_Disposable_Popcorn Name: C Disposable Popcorn Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 415 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 31264 AegisName: C_Shelterwing_Ears_V Name: C Wings of Protector Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 990 - Id: 31265 AegisName: C_Straightpony_BU_V Name: C Straight Pony Blue Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1394 - Id: 31266 AegisName: C_Straightpony_RD_V Name: C Straight Pony Red Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1392 - Id: 31267 AegisName: C_Straightpony_YL_V Name: C Straight Pony Yellow Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1389 - Id: 31268 AegisName: C_Straightpony_GN_V Name: C Straight_Pony Green Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1390 - Id: 31269 AegisName: C_Straightpony_BL_V Name: C Straight Pony Black Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1371 - Id: 31270 AegisName: C_Straightpony_WH_V Name: C Straight Pony White Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1395 - Id: 31271 AegisName: C_Straightpony_OM_V Name: C Straight Pony Crimson Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1393 - Id: 31272 AegisName: C_Straightpony_PP_V Name: C Straight Pony Purple Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1391 - Id: 31273 AegisName: C_Cowlick_BU_V Name: C Cowlick Blue Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1387 - Id: 31274 AegisName: C_Cowlick_RD_V Name: C Cowlick Red Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1385 - Id: 31275 AegisName: C_Cowlick_YL_V Name: C Cowlick Yellow Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1382 - Id: 31276 AegisName: C_Cowlick_GN_V Name: C Cowlick Green Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1383 - Id: 31277 AegisName: C_Cowlick_BL_V Name: C Cowlick Black Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1372 - Id: 31278 AegisName: C_Cowlick_WH_V Name: C Cowlick White Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1388 - Id: 31279 AegisName: C_Cowlick_OM_V Name: C Cowlick Crimson Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1386 - Id: 31280 AegisName: C_Cowlick_PP_V Name: C Cowlick Purple Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1384 - Id: 31281 AegisName: C_Loosewavetwin_BU_V Name: C Loose Wave Twin Blue Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1401 - Id: 31282 AegisName: C_Loosewavetwin_RD_V Name: C Loose Wave Twin Red Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1399 - Id: 31283 AegisName: C_Loosewavetwin_YL_V Name: C Loose Wave Twin Yellow Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1396 - Id: 31284 AegisName: C_Loosewavetwin_GN_V Name: C Loose Wave Twin Green Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1397 - Id: 31285 AegisName: C_Loosewavetwin_BL_V Name: C Loose Wave Twin Black Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1373 - Id: 31286 AegisName: C_Loosewavetwin_WH_V Name: C Loose Wave Twin White Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1402 - Id: 31287 AegisName: C_Loosewavetwin_OM_V Name: C Loose Wave Twin Crimson Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1400 - Id: 31288 AegisName: C_Loosewavetwin_PP_V Name: C Loose Wave Twin Purple Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1398 - Id: 31289 AegisName: C_Wing_Ear_BL_V Name: C Black Wing Ears Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1336 - Id: 31290 AegisName: C_Adv_Ang_SchCap Name: C Angels Feather Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 929 - Id: 31291 AegisName: C_Adv_Dev_SchCap Name: C Devils Feather Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 930 - Id: 31292 AegisName: C_Invisible_Mask_TW Name: Costume Invisible Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 - Id: 31293 AegisName: C_Kings_Crown_Purple Name: C Crown of Ancient King Purple Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1651 - Id: 31294 AegisName: C_Jirant_Circlet_Red Name: C Jirant Circlet Red Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1652 - Id: 31295 AegisName: C_Priest_Hat_J Name: Costume Red Wing Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 613 - Id: 31296 AegisName: C_Strawberry_In_Mouth Name: C Strawberry in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 861 - Id: 31297 AegisName: C_Love_Berry Name: C Fruit of Love Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 140 - Id: 31298 AegisName: C_Para_Team_Hat2 Name: C Sepia Parade Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 682 - Id: 31299 AegisName: C_White_Rabbit Name: C White Rabbit Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1656 - Id: 31300 AegisName: C_Warm_Cat_Muffler Name: C Warm Cat Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1657 - Id: 31301 AegisName: C_Blinking_Eyes Name: C Blinking Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1658 - Id: 31302 AegisName: C_Black_Magenta_Ribbon Name: C Black Magenta Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1659 - Id: 31303 AegisName: C_Memory_Of_Noodle Name: C Black Ramen Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1338 - Id: 31304 AegisName: C_Fan_Of_Summer Name: C Summer Fan Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1051 - Id: 31305 AegisName: C_TW_1th_Balloon Name: "Costume: Walking Poring" Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1666 - Id: 31306 AegisName: C_Tucan_Hat_JP Name: C Toucan Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 528 - Id: 31307 AegisName: C_Blue_Arara_Hat Name: C Violet Macaw Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 656 - Id: 31308 AegisName: C_Protect_Feathers Name: Costume Protect Feather Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1232 - Id: 31309 AegisName: C_PW_Marching_Hat Name: C Pure White Marching Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1470 - Id: 31310 AegisName: C_666_DevilEar Name: C 666 Black_ Elven Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 498 - Id: 31311 AegisName: C_Tha_Maero_Mask_J Name: C Dolor Thanatos Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 666 - Id: 31312 AegisName: C_Hades_Helm Name: C Hades Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 523 - Id: 31313 AegisName: C_FallenAngelWingEar Name: C Fallen Angel Wing Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1662 - Id: 31314 AegisName: C_Ghost_Holiday Name: C Ghost Holiday Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1663 - Id: 31315 AegisName: C_Stall_Of_Angel Name: C Stall of Angel Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1664 - Id: 31316 AegisName: C_FlutterButterfly_BL Name: C Black Fluttering Butterfly Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Script: | hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,true); UnEquipScript: | hateffect(HAT_EF_C_FLUTTERBUTTERFLY_BL,false); - Id: 31317 AegisName: C_15th_Anniversary_Wing Name: C 15th Anniversary Wing Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1660 - Id: 31318 AegisName: C_Gerhard_Von_Devi Name: Costume Gerhard Von Devi Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1092 - Id: 31319 AegisName: C_Fan_Of_Summer_R Name: C Summer Fan Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1051 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 31320 AegisName: C_Pinwheel_Cap_R Name: C Pinwheel Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 456 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspd,1; bonus bAspdRate,5; bonus bVariableCastrate,-5; bonus2 bAddRace,RC_Fish,10; bonus2 bMagicAddRace,RC_Fish,10; - Id: 31321 AegisName: C_Shining_Sunflower Name: Costume Shining Sunflower Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 681 - Id: 31322 AegisName: C_Candy_Hat Name: C Candy Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 853 - Id: 31323 AegisName: C_Love_Daddy Name: C Yellow Hunting Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 484 - Id: 31324 AegisName: C_DJ_Kitty Name: Costume Kitty DJ Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1672 - Id: 31325 AegisName: C_Q_Scaraba_Crown Name: C Queen Scarabas Helmet Type: Armor Locations: Costume_Head_Top: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1231 Script: | hateffect(HAT_EF_QSCARABA,true); UnEquipScript: | hateffect(HAT_EF_QSCARABA,false); - Id: 31326 AegisName: C_Rolf_Von_Gigue_666 Name: C Rolf Von Ziege 666 II Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 946 - Id: 31327 AegisName: C_Stretched_Nose_M Name: C Wood Goblins Nose Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 737 - Id: 31328 AegisName: C_Faceworm_Egg_Shell Name: C Faceworm Eggshell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1356 - Id: 31329 AegisName: C_Alice_Wig Name: Costume Alice Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1673 - Id: 31330 AegisName: C_Fallen_Angel_Valletta Name: Costume Fallen Angel Valletta Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1674 - Id: 31331 AegisName: C_Chung_E_Shinyon_Cap Name: C Chung e Shinyon Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1675 - Id: 31332 AegisName: C_Khalitzburg_Helm_BL Name: C Black Khalitzburg Knight Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1676 - Id: 31333 AegisName: C_Straight_Pony_WH_V Name: "Costume: Straight Pony (White)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1395 - Id: 31334 AegisName: C_Straight_Pony_BU_V Name: "Costume: Straight Pony (Blue)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1394 - Id: 31335 AegisName: C_Straight_Pony_OM_V Name: "Costume: Straight Pony (Brown)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1393 - Id: 31336 AegisName: C_Straight_Pony_RD_V Name: "Costume: Straight Pony (Red)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1392 - Id: 31337 AegisName: C_Straight_Pony_PP_V Name: "Costume: Straight Pony (Purple)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1391 - Id: 31338 AegisName: C_Straight_Pony_GN_V Name: "Costume: Straight Pony (Green)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1390 - Id: 31339 AegisName: C_Straight_Pony_YL_V Name: "Costume: Straight Pony (Yellow)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1389 - Id: 31340 AegisName: C_Straight_Pony_BL_V Name: "Costume: Straight Pony (Black)" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1371 - Id: 31341 AegisName: C_Low_Pony_BU_V Name: Costume Low Pony (Blue) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1613 - Id: 31342 AegisName: C_Low_Pony_RD_V Name: Costume Low Pony (Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1614 - Id: 31343 AegisName: C_Low_Pony_YL_V Name: Costume Low Pony (Yellow) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1615 - Id: 31344 AegisName: C_Low_Pony_GN_V Name: Costume Low Pony (Green) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1616 - Id: 31345 AegisName: C_Low_Pony_BL_V Name: Costume Low Pony (Black) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1617 - Id: 31346 AegisName: C_Low_Pony_WH_V Name: Costume Low Pony (White) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1618 - Id: 31347 AegisName: C_Low_Pony_OM_V Name: Costume Low Pony (Brown) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1619 - Id: 31348 AegisName: C_Low_Pony_PP_V Name: Costume Low Pony (Purple) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1620 - Id: 31349 AegisName: C_Roll_Twin_BU_V Name: Costume Roll Twin (Blue) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1511 - Id: 31350 AegisName: C_Roll_Twin_RD_V Name: Costume Roll Twin (Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1512 - Id: 31351 AegisName: C_Roll_Twin_YL_V Name: Costume Roll Twin (Yellow) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1513 - Id: 31352 AegisName: C_Roll_Twin_GN_V Name: Costume Roll Twin (Green) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1514 - Id: 31353 AegisName: C_Roll_Twin_BL_V Name: Costume Roll Twin (Black) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1515 - Id: 31354 AegisName: C_Roll_Twin_WH_V Name: Costume Roll Twin (White) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1516 - Id: 31355 AegisName: C_Roll_Twin_OM_V Name: Costume Roll Twin (Brown) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1517 - Id: 31356 AegisName: C_Roll_Twin_PP_V Name: Costume Roll Twin (Purple) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1518 - Id: 31357 AegisName: Oliver_Wolf_Hood_CN Name: Costume Oliver Wolf Hood # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 849 - Id: 31358 AegisName: C_Hahoe_Mask_CN Name: Costume Hahoe Mask # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 230 - Id: 31359 AegisName: C_Assassin_Mask_CN Name: Costume Assassin Mask # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 180 - Id: 31360 AegisName: C_Centimental_Flower_CN Name: Costume Centimental Flower # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 56 - Id: 31361 AegisName: C_Blush_CN Name: Costume Blush # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 125 - Id: 31362 AegisName: C_Magestic_Goat_CN Name: Costume Magestic Goat # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 41 - Id: 31363 AegisName: C_Frog_Cap_CN Name: Costume Frog Cap # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 448 - Id: 31364 AegisName: C_Deviruchi_Cap_CN Name: Costume Deviruchi Cap # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 123 - Id: 31365 AegisName: C_Boys_Cap_CN Name: Costume Boys Cap # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 102 - Id: 31366 AegisName: C_Valkyrie_Helm_CN Name: Costume Valkyrie Helm # !todo check english name Type: Armor Weight: 100 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 225 - Id: 31367 AegisName: C_Wish_Tree_Hat Name: Costume Bamboo Leaf Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1270 - Id: 31368 AegisName: C_Harvest_Festa_Hat Name: C Thanksgiving Memorial Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1677 - Id: 31369 AegisName: C_Straight_Long_WHK Name: Costume Straight Long White Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1604 - Id: 31370 AegisName: C_Straight_Long_YLK Name: Costume Straight Long Yellow Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1603 - Id: 31371 AegisName: C_Sorin_Doll_Hat Name: Costume Drooping Sorin Doll Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 356 - Id: 31372 AegisName: C_Binit_Doll_Hat Name: Costume Drooping Roxie Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 358 - Id: 31373 AegisName: C_Kings_Crown_ Name: C Crown of Ancient king Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1412 - Id: 31374 AegisName: C_Explosion_Gum Name: Costume Explosion Gum Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1414 - Id: 31375 AegisName: C_Demons_Eye Name: Costume Eyes of War Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1490 - Id: 31376 AegisName: C_Jirant_Circlet Name: Costume Purple Jirant Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1680 - Id: 31377 AegisName: C_Glastheim_Onlooker Name: Costume Glast Heim Spectator Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1041 - Id: 31378 AegisName: C_CatharinaPawnBrad60 Name: Costume Katarina von Blood 60 Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1527 - Id: 31379 AegisName: C_Drama_Clockwork Name: Costume Clock Winding Key Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1335 - Id: 31380 AegisName: C_Gossip_Raven Name: Costume Crow on Shoulder Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1035 - Id: 31381 AegisName: C_Diabolic_Lapel Name: Costume Diabolic Lapel Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1681 - Id: 31382 AegisName: C_Cat_Ears_Punkish Name: Costume Cat Ears Punkish Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1682 - Id: 31383 AegisName: C_Volume_Low_Twin Name: Costume Volume Low Twin Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1683 - Id: 31384 AegisName: C_False_Ears Name: Costume False Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1684 - Id: 31385 AegisName: C_Gothic_Pumpkin_Head Name: Costume Gothic Pumpkin Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1685 - Id: 31386 AegisName: C_SurviveOrb Name: Costume Survivor's Orb Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1488 - Id: 31387 AegisName: C_Jjakk Name: Costume Jakk Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1687 - Id: 31388 AegisName: C_Garden_Of_Eden Name: Costume Garden of Eden Type: Armor View: 1653 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31389 AegisName: C_White_Bird_Rose Name: Costume White Bird Rose Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1688 - Id: 31390 AegisName: C_Let_It_Snow Name: Costume Let It Snow Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1690 - Id: 31391 AegisName: C_Floating_Stone_Of_Int Name: Costume Floating Sage Stone Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1230 EquipScript: | sc_start SC_FSTONE,INFINITE_TICK,0; UnEquipScript: | sc_end SC_FSTONE; - Id: 31392 AegisName: C_Radio_Antenna Name: Costume Radio Antenna Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 347 - Id: 31393 AegisName: C_Vajra Name: Costume Vajra Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 983 - Id: 31394 AegisName: C_White_Wizardry_Hat Name: Costume Magician White Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 283 - Id: 31395 AegisName: C_Book_Of_Magic Name: Costume Book of Magic Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1691 - Id: 31396 AegisName: C_Sorcerer_Hood Name: Costume Sorcerer Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1692 - Id: 31397 AegisName: C_Pope_Sitting_Head Name: Costume Sitting Pope Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1553 - Id: 31398 AegisName: C_Blinking_Thin_Eyes Name: Costume Blinking Small Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1693 - Id: 31399 AegisName: C_Darkness_Veil Name: Costume Darkness Veil Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1694 - Id: 31400 AegisName: C_Ribbon Name: Costume Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 17 - Id: 31401 AegisName: C_Blue_Coif Name: C Nuns Veil Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 176 - Id: 31402 AegisName: C_Idun_Green_Apple Name: C Iduns Green Apple Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1698 - Id: 31403 AegisName: C_Wall Name: C Wall Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1699 - Id: 31404 AegisName: C_Poring_Traffic_Light Name: C Poring Traffic Light Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1700 - Id: 31405 AegisName: C_Eleanor_Wig_YL Name: C Eleanor Wig Yellow Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1701 - Id: 31406 AegisName: C_Nydhog_Wig_WH Name: C Nydhoggur Wig White Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1702 - Id: 31407 AegisName: C_Alice_Wig_PK Name: C Alice Wig Peach Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1703 - Id: 31408 AegisName: C_RORush_Goat Name: C Ragnarok Rush Goat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 41 - Id: 31409 AegisName: C_Barrel_Helm Name: C Barrel Helm Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1498 - Id: 31410 AegisName: C_Gods_Helm Name: Costume God's Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1678 - Id: 31411 AegisName: C_Leo_Diadem Name: C Leo Diadem Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 566 - Id: 31412 AegisName: C_Virgo_Crown Name: C Virgo Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 573 - Id: 31413 AegisName: C_Taurus_Crown Name: C_ Taurus Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 536 - Id: 31414 AegisName: C_Cancer_Diadem Name: C Cancer Diadem Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 560 - Id: 31415 AegisName: C_Wanderer_Sakkat Name: Costume Wanderer's Sakkat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 558 - Id: 31416 AegisName: C_SeraphimCoronet Name: Costume Seraphim Coronet Type: Armor View: 1487 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31417 AegisName: C_Onigiri_Hat Name: C Rice Ball Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 556 - Id: 31418 AegisName: C_Leek_In_Mouth Name: C Green Onion in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 824 - Id: 31419 AegisName: C_Angel_Of_Happiness Name: Costume Angel of Happiness Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1251 - Id: 31420 AegisName: C_SantaPoring_Promo Name: C Shining Santa Poring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 961 - Id: 31421 AegisName: C_Pink_Angeling_Bubble Name: Costume Pink Angeling Bubble # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 975 - Id: 31422 AegisName: C_Angeling_Bubble Name: Costume Angeling Bubble # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 976 - Id: 31423 AegisName: C_Bear_Balloon Name: Costume Bear Balloon # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1038 - Id: 31424 AegisName: C_LoveLove_Balloon Name: Costume Love Love Balloon # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1039 - Id: 31425 AegisName: C_Long_Octopus_Balloon Name: Costume Long Octopus Balloon # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1040 - Id: 31426 AegisName: C_Male_Poring_Balloon Name: Costume Gentle Marlin Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1159 - Id: 31427 AegisName: C_Fmale_Poring_Balloon Name: Costume Lady Poring Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1161 - Id: 31428 AegisName: C_Panda_Balloon Name: Costume Panda Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1115 - Id: 31429 AegisName: C_Blue_Poring_Bubble Name: Costume Blue Poring Bubble # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 958 - Id: 31430 AegisName: C_Seppl_Hat_TW Name: "Costume: Seppl Hat" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1023 - Id: 31431 AegisName: C_Curupira_Hat_TW Name: "Costume: Curupira Hat" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 974 - Id: 31432 AegisName: C_Luwmin_Ice Name: C Floating Ice Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1562 - Id: 31433 AegisName: C_Astro_Circle Name: Costume Astro Circle Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1073 - Id: 31434 AegisName: C_Cloud_Buster Name: Costume Stormy Cloud Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 705 - Id: 31435 AegisName: C_Magician_Knithat Name: C Ghost Magicians Knit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 854 - Id: 31436 AegisName: C_White_Drooping_Kitty Name: C Lazy Cat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 274 - Id: 31437 AegisName: C_Baby_Penguin Name: C Baby Penguin Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1705 - Id: 31438 AegisName: C_Fluffy_Angel_Cape Name: C Fluffy Angel Cape Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1706 - Id: 31439 AegisName: C_Fluffy_Heart_Earmuffs Name: C Fluffy Heart Earmuffs Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1707 - Id: 31440 AegisName: C_Snow_Bear_Food Name: C Snow Bear Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1708 - Id: 31441 AegisName: C_Penguin_Cap_BU Name: C Penguin Cap Blue Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1709 - Id: 31442 AegisName: C_Mr_Smile_V Name: C Smile Mask Middle Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 65 - Id: 31443 AegisName: C_Munak_Turban_V Name: C Munak Hat Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 51 - Id: 31444 AegisName: C_Bongun_Hat_V Name: C Bongun Hat Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 139 - Id: 31445 AegisName: Feather_Fedora_TW Name: Costume Feather Fedora Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1710 - Id: 31446 AegisName: C_Toy_Syringe Name: C Toy Syringe Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 842 - Id: 31447 AegisName: C_Pale_Moon_Hat Name: C Light Moonlight_Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 913 - Id: 31448 AegisName: C_Sting_Silk_Ribbon Name: C Stings Silk Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1457 - Id: 31449 AegisName: C_Blue_Rose_Eyepatch Name: C Blue Rose Eyepatch Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1712 - Id: 31450 AegisName: C_Lolita_Two_Side_Up Name: C Lolita Two Side Up Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1713 - Id: 31451 AegisName: C_Blue_Frill_Ribbon Name: C Blue Frill Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1714 - Id: 31452 AegisName: C_White_Cat Name: C White Cat Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1715 - Id: 31453 AegisName: C_L_RibbonMuff_Black Name: C Large Ribbon Muffler Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1716 - Id: 31454 AegisName: C_Love_Feeling Name: C Love Feelings Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1717 - Id: 31455 AegisName: Enchanted_Dog Name: C Super Cute Dog Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1718 - Id: 31456 AegisName: C_Baby_Leopard_Cat Name: C Baby Leopard Cat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1719 - Id: 31457 AegisName: C_Husky_Hat Name: C Laughing Wonderful Wolf Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1016 - Id: 31458 AegisName: C_1Grade_Balloon_TW Name: Costume Grade Balloon # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1426 - Id: 31459 AegisName: C_Sweets_Bonbon Name: Costume Sweets Bonbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 853 - Id: 31460 AegisName: C_Blessing_Sky_Lantern Name: C Blessing Sky Lantern Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1720 - Id: 31461 AegisName: C_Male_Poring_Earmuff Name: Costume Marin Earrings Type: Armor View: 1160 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31462 AegisName: C_Female_Poring_Earmuff Name: Costume Cute Poring Earmuffs Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1162 - Id: 31463 AegisName: C_Flying_Drone Name: Costume Flying Drone Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1561 - Id: 31464 AegisName: C_Mike_Hat Name: C Bloom Afro Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 837 - Id: 31465 AegisName: C_Egg_Minihat Name: C Robin Egg Minihat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1722 - Id: 31466 AegisName: C_Holy_Egg_Hat Name: C Holy Egg Shell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 537 - Id: 31467 AegisName: C_Mimic_Egg_Shell Name: C Evil Eggshell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 999 - Id: 31468 AegisName: C_Stripe_Hat Name: C Stripe Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1728 - Id: 31469 AegisName: C_Costume08_L Name: Rental C Eleanors Wig Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1502 - Id: 31470 AegisName: C_Tengu_Scroll Name: C Scroll of Tengu Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1445 - Id: 31471 AegisName: C_CelestialWoman_Flower Name: C Celestial Flower Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 438 - Id: 31472 AegisName: C_Fairy_Feathers Name: C Fairy Feathers Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1723 - Id: 31473 AegisName: C_Tipsy Name: C Tipsy Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1724 - Id: 31474 AegisName: C_Straight_Long_BL Name: C Straight Long Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1725 - Id: 31475 AegisName: C_Black_Fox_Ear_Ribbon Name: C Black Fox Ears Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1726 - Id: 31476 AegisName: C_Cherry_Blossom_Hat_YL Name: C Yellow Cherry Blossom Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1727 - Id: 31477 AegisName: C_Costume06_L Name: Rental C Straight Long Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1725 - Id: 31478 AegisName: C_Eleanor_Wig_V Name: C Eleanors Wig Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1502 - Id: 31479 AegisName: C_ManyStars_TW Name: Costume Group of Stars Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1729 Script: | hateffect(HAT_EF_MANYSTARS,true); UnEquipScript: | hateffect(HAT_EF_MANYSTARS,false); - Id: 31480 AegisName: C_Jioia_TW Name: Costume Gioia Partner Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1730 - Id: 31481 AegisName: C_CatCoffeeCup_TW Name: C TriColor CatCup Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1731 - Id: 31482 AegisName: C_LunaticMuffler_TW Name: Costume Lunatic Shawl Type: Armor View: 1732 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31483 AegisName: C_CatEarRibbon_TW Name: Costume Cat Ear Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1733 - Id: 31484 AegisName: C_JP_EV13 Name: C BearCompanion Female Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1736 - Id: 31485 AegisName: C_JP_EV14 Name: C BearCompanion Male Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1737 - Id: 31486 AegisName: C_Diver's_Goggles Name: C Diver's Goggles Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 10 - Id: 31487 AegisName: C_Eye_Bandage Name: C Eye Bandage Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 13 - Id: 31488 AegisName: C_Mvp Name: Costume MVP Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1738 - Id: 31489 AegisName: C_Bouquet_Hat Name: Costume Bouquet Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1739 - Id: 31490 AegisName: C_Poring_Muffler Name: C Poring Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1740 - Id: 31491 AegisName: C_Orange_Tabby_Cat Name: C Orange Tabby Cat Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1741 - Id: 31492 AegisName: C_Cat_Ears_Cape_Brown Name: C Brown Cat Ears Cape Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1742 - Id: 31493 AegisName: C_Volume_Low_Twin_WH Name: C Volume Low Twin WH Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1743 - Id: 31494 AegisName: C_Volume_Low_TwinK Name: C Volume Low Twin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1683 - Id: 31495 AegisName: C_Lolita_Two_Side_UpK Name: C Lolita Two Side Up Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1713 - Id: 31496 AegisName: C_Yggdrasil_Crown Name: C Yggdrasil Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 746 - Id: 31497 AegisName: C_Flowery_Vision_TH Name: "Costume: Flowery Vision" Type: Armor View: 1744 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31498 AegisName: C_Elephangel_TH Name: C Elephangel Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1745 - Id: 31499 AegisName: C_Easter_Egg_Shell Name: C Easter Egg Shell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 537 - Id: 31500 AegisName: C_Sparkler_Stick_TH Name: Costume Sparkler Stick # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1747 - Id: 31501 AegisName: C_Sparkler_Fountain_TH Name: Costume Sparkler Fountain Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1748 - Id: 31502 AegisName: C_Aches_Love_Cobra_TH Name: Costume Aches Love Cobra Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1749 - Id: 31503 AegisName: C_TW_2th_Balloon Name: Costume 2th Balloon # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1750 - Id: 31504 AegisName: C_Starving_Fish_Hat Name: C Large Hungry Fish Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 844 - Id: 31505 AegisName: C_Falcon_Mask Name: C Falcon Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 782 - Id: 31506 AegisName: C_Malangdo_Pirate Name: C Cat Ear Bandana Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1587 - Id: 31507 AegisName: C_Yellow_Drooping_Kitty Name: C Drooping Cat Yellow Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 278 - Id: 31508 AegisName: C_Isabella_Blue_Ear Name: C Isabella Blue Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1032 - Id: 31509 AegisName: C_Fawn_Ear Name: C Fawn Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1751 - Id: 31510 AegisName: C_Cat_Ear_Short Name: C Short Haired Cat Ears Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1752 - Id: 31511 AegisName: C_Cat_Ear_Long Name: C Long Haired Cat Ears Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1753 - Id: 31512 AegisName: C_Panda_Rabbit Name: C Panda Rabbit Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1754 - Id: 31513 AegisName: C_Rabbit_Hopping_BL Name: C Black Rabbit Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1755 - Id: 31514 AegisName: C_American_S_hair Name: Costume American Short hair # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1756 - Id: 31515 AegisName: C_Leopard_Cat Name: "Costume: Bengal Cat" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1757 - Id: 31516 AegisName: C_Mini_Melon Name: C Mini Melon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1758 - Id: 31517 AegisName: C_JP_EV15 Name: C Fluffy Cat Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1762 - Id: 31518 AegisName: C_Pop_Popcorn_Hat Name: C Popping Popcorn Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1763 - Id: 31519 AegisName: C_Slurp_Slurp_Hat Name: C Noodles Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1764 - Id: 31520 AegisName: C_Popcorn_Hat Name: C Popcorn Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 415 - Id: 31521 AegisName: C_Citron_Hat Name: C Yuzu Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 791 - Id: 31522 AegisName: C_Orange_Hat Name: C Orange Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 841 - Id: 31523 AegisName: C_Yellow_Yuzu_Hat Name: C Pomelo Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 924 - Id: 31524 AegisName: C_Lunch_box Name: C Bento Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1766 - Id: 31525 AegisName: C_Kid_Deviling Name: Pack New Year Doll Egg Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1036 - Id: 31526 AegisName: C_Shaman_Hat Name: C Shaman Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 596 - Id: 31527 AegisName: C_14_RainbowWing Name: C Radiant Rainbow Wings Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1186 - Id: 31528 AegisName: C_Stardust_Hairband Name: C Star Dust Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 831 - Id: 31529 AegisName: C_Happy_Rabbit_Ribbon Name: C Happy Rabbit Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1769 - Id: 31530 AegisName: C_Greater_Dracul_Horn Name: Costume Great Dracula Horns Type: Armor View: 1695 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31531 AegisName: C_Lovely_Heart_Cap Name: C Lovely Heart Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1770 - Id: 31532 AegisName: C_Neev_Barrette Name: "Costume: Neev Barrette" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1696 - Id: 31533 AegisName: C_Warm_Cat_Muffler_BL Name: C Warm Cat Muffler Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1771 - Id: 31534 AegisName: C_Rainbow_Star Name: Rainbow Star Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1019 - Id: 31535 AegisName: C_Old_Pink_Poo_Hat Name: "Costume: Pink Poo Poo Hat" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1102 - Id: 31536 AegisName: C_Chibi_Beelzebub_Hat Name: Costume Chibi Beelzebub Hat # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1350 - Id: 31537 AegisName: C_Return_TW_2th_Hat Name: "Costume: 2nd Anniversary Hat" Type: Armor Locations: Costume_Head_Top: true Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoAuction: true NoGuildStorage: true ArmorLevel: 1 EquipLevelMin: 1 View: 1772 - Id: 31538 AegisName: C_Love_Feeling_J Name: C Lovely Feeling Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1717 - Id: 31539 AegisName: C_Bulgogi_TW Name: Costume Bulgogi # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1773 - Id: 31540 AegisName: C_Gemini_RedEyes Name: C GeminiS58 Eyes Red Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1654 - Id: 31541 AegisName: C_Drosera_Hairpin Name: C Drosera Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 850 - Id: 31542 AegisName: C_Clay_Poring_Jar_Jp Name: C Clay Poring Jar Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1634 - Id: 31543 AegisName: C_Eru_Rava_Hat Name: C Siorava Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1774 - Id: 31544 AegisName: C_Piamette_Roll_Hair Name: Costume Piamette Curls Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1775 - Id: 31545 AegisName: C_Eremes_Scarf_BU Name: C Eremes Scarf Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1776 - Id: 31546 AegisName: C_Clock_Casket_RD Name: Costume Clockwork Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1777 - Id: 31547 AegisName: C_Poporing_Mascot_Cos Name: C Poporing Mascot Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1778 - Id: 31548 AegisName: C_Love_Cheek_V Name: C Love Cheeks Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1318 - Id: 31549 AegisName: C_Little_Aquarium_V Name: C Little Aquarium Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1363 - Id: 31550 AegisName: C_Tone_Of_Gold_V Name: C Tone of Gold Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1447 - Id: 31551 AegisName: C_Black_Glasses_V Name: C Black Glasses Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 404 - Id: 31552 AegisName: C_Blue_Ribbon_V Name: C Blue Ribbon Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 407 - Id: 31553 AegisName: C_Wings_Of_Victory_V Name: C Wings Of Victory Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 365 - Id: 31554 AegisName: C_Bread_Bag2_V Name: C Bread Bag Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 412 - Id: 31555 AegisName: C_Hoplite_Helmet_V Name: Costume Infantry Helmet (Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 660 - Id: 31556 AegisName: C_Moonlight_F_Hat_V Name: C Moonlight Flower Hat Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 268 - Id: 31557 AegisName: C_Hoplite_Helmet_Silver Name: Costume Hoplite Helmet Silver # !todo check english name Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1781 - Id: 31558 AegisName: C_Hoplite_Helmet_Black Name: "Costume: Hoplite Helmet Black" Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1782 - Id: 31559 AegisName: C_Royalguard_Necklace Name: C Royal Guard Necklace Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1629 - Id: 31560 AegisName: C_DVAngelNurseCap Name: C Nurse Cap of Clergy Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1359 - Id: 31561 AegisName: C_8Type_PurgatorialWing Name: C Heavenly Dark Flame Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1008 - Id: 31562 AegisName: C_Zherlthsh_Doll Name: C Zealotus Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1376 - Id: 31563 AegisName: C_Blue_EyeShadow_JP Name: C Blue Eye Shadow Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1020 - Id: 31564 AegisName: C_Variant_Veil Name: C Variant Veil Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1785 - Id: 31565 AegisName: C_Princess_Ribbon_Crown Name: C Princess Ribbon Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1786 - Id: 31566 AegisName: C_Stall_Of_Dominions Name: C Stole Of Dominion Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1784 - Id: 31567 AegisName: C_Sheep_Horn Name: C Sheep Horns Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1783 - Id: 31568 AegisName: C_Floating_Ball_TW Name: Costume Floating Ball Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1760 - Id: 31569 AegisName: C_OpenAir_Headset Name: C Open Air Headset Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1655 - Id: 31570 AegisName: C_Cyclops_Visor Name: C Cyclops Visor Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 207 - Id: 31571 AegisName: C_Guardian_Processor Name: C Guardian Processor Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1552 - Id: 31572 AegisName: C_Mobile_Pursuit_System Name: C Mobile Pursuit System Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1788 - Id: 31573 AegisName: C_Mecha_Cat_Ears Name: C Mecha Cat Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1789 - Id: 31574 AegisName: C_Cyber_Income Name: C Cyber Income Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1790 - Id: 31575 AegisName: C_Electro_Two_Side_Up Name: C Electro Two Sides Up Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1791 - Id: 31576 AegisName: C_Spring_Rabbit_Hat Name: C Moon Rabbit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 455 - Id: 31577 AegisName: C_Roast_Memory_J Name: C Roast Memory Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1576 - Id: 31578 AegisName: C_Alchemist_Mask_V Name: C Alchemist Mask Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1497 - Id: 31579 AegisName: C_Lovegame_Hat Name: C I LOVE GAMES Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1306 - Id: 31580 AegisName: C_Autumnal_Flavor Name: C Autumn Flavor Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1792 - Id: 31581 AegisName: C_Jack_Head Name: C Jack Upper Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1415 - Id: 31582 AegisName: C_Jirant_Circlet_ Name: C Jirant Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1644 - Id: 31583 AegisName: C_Willothewisp Name: C Will O Wisp Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 880 EquipScript: | sc_start SC_STRANGELIGHTS,INFINITE_TICK,0; UnEquipScript: | sc_end SC_STRANGELIGHTS; - Id: 31584 AegisName: C_Marin_Muffler Name: "Costume: Marin's Muffler" Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1795 - Id: 31585 AegisName: C_Drops_Muffler Name: Costume Drops Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1796 - Id: 31586 AegisName: C_Poporing_Muffler Name: C Poporing Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1797 - Id: 31587 AegisName: C_NationalDay_helmet_TW Name: "Costume: Skoi Rider" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1798 - Id: 31588 AegisName: C_SnowFlake_Tiara Name: C Snow Flower Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1799 Script: | hateffect(HAT_EF_SNOWFLAKE_TIARA,true); UnEquipScript: | hateffect(HAT_EF_SNOWFLAKE_TIARA,false); - Id: 31589 AegisName: C_Gold_Magestic_Goat Name: C Golden Majestic Goat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1800 - Id: 31590 AegisName: C_Der_Meisterpinsel Name: C Designer's Brush Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1291 - Id: 31591 AegisName: C_Crown_Of_Saint Name: Costume Crown of Might Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1117 - Id: 31592 AegisName: C_ROEXE2_TH Name: Costume Morning Poring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1801 - Id: 31593 AegisName: C_Yellow_Scarf Name: C Yellow Scarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1170 - Id: 31594 AegisName: C_Red_Pencil_Mouth Name: C Red Pencil in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 931 - Id: 31595 AegisName: C_Book_of_Soyga Name: C Book File Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 423 - Id: 31596 AegisName: C_Spider_Temp_TW Name: C Spider Seduction Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1711 - Id: 31597 AegisName: C_GoldFish_Hat Name: C Golden Fish Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1645 - Id: 31598 AegisName: C_Forest_Guide Name: C Forest Guide Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1802 - Id: 31599 AegisName: C_Medium_Wave Name: C Medium Wave Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1803 - Id: 31600 AegisName: C_Kishu_Inu Name: C Kishu Dog Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1804 - Id: 31601 AegisName: C_Under_Rim_Glasses_Bu Name: C Under Rim Glasses Blue Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1805 - Id: 31602 AegisName: C_Midgarts_Glory Name: C Rune-Midgarts Glory Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1807 Script: | hateffect(HAT_EF_MIDGARTS_GLORY,true); UnEquipScript: | hateffect(HAT_EF_MIDGARTS_GLORY,false); - Id: 31603 AegisName: C_Cat_Ear_ShortK Name: Costume Cat Ear ShortK # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1752 - Id: 31604 AegisName: C_Cat_Ear_LongK Name: Costume Cat Ear LongK # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1928 - Id: 31605 AegisName: C_Volume_Low_Twin_WHK Name: Costume Volume Low Twin WHK # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1913 - Id: 31606 AegisName: C_Autumn_Headband Name: C Autumn Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1119 - Id: 31607 AegisName: C_B_EarWitchHat Name: C Cat Ear Witch Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1808 - Id: 31608 AegisName: C_Magicstone_Of_Grace Name: C Magic Stone of Grace Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1420 - Id: 31609 AegisName: C_Noble_Mask Name: C Noble Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1409 - Id: 31610 AegisName: C_Yellow_Wizardry_Hat Name: C Yellow Wizardry Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 286 - Id: 31611 AegisName: C_Dark_Snake_Lord_Stall Name: C Snake Lord Stole Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1810 - Id: 31612 AegisName: C_Large_Sorcerer_Crown Name: C Large Sorcerer Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1811 - Id: 31613 AegisName: C_Blue_Strong_Hair Name: Costume Blue Hair of Strong Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1858 - Id: 31614 AegisName: C_Fox Name: C Fox Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1812 - Id: 31615 AegisName: C_Geisha_Make Name: C Geisha Make Up Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1813 - Id: 31616 AegisName: C_Sleep_Sheep_TW Name: C Sleep Sheep Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1814 - Id: 31617 AegisName: C_Lady_Tanee_TW Name: Costume Lady Tanee Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1815 - Id: 31618 AegisName: C_DancingButterfly_TW Name: Costume Butterfly Charm Type: Armor View: 1816 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31619 AegisName: C_Magic_Inheritor_TW Name: Costume Magic Successor Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1817 - Id: 31620 AegisName: C_Snow_Fox_TW Name: Costume Magic Successor Type: Armor View: 1818 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31621 AegisName: C_HappyMargay_TW Name: Costume Happy Longtail Cat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1819 - Id: 31622 AegisName: C_LostTime_TW Name: Costume Lost Time Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1820 - Id: 31623 AegisName: C_RomanticRose_TW Name: Costume Romantic Rose Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1821 Script: | hateffect HAT_EF_C_ROMANCE_ROSE_TW,true; UnEquipScript: | hateffect HAT_EF_C_ROMANCE_ROSE_TW,false; - Id: 31624 AegisName: C_HeartOfCat_TW Name: C Heart of Cat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1822 - Id: 31625 AegisName: C_Protect_Cloth Name: C Protection Cloth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1761 - Id: 31626 AegisName: C_FluffyWing_TW Name: "Costume: Wing of Harmony" Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1826 Script: | hateffect HAT_EF_FLUFFYWING,true; UnEquipScript: | hateffect HAT_EF_FLUFFYWING,false; - Id: 31627 AegisName: C_L_Magesic2_TW Name: Costume L Magesic2 # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 513 - Id: 31628 AegisName: C_Bogy_Cap_TW Name: C Dokebi Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 430 - Id: 31629 AegisName: C_Evil_Bone_Hat Name: Costume Evil Bone Hat # !todo check english name Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 523 - Id: 31630 AegisName: C_BaphoJ_Parachute_JP Name: C Baphomet Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1746 - Id: 31631 AegisName: C_Drooping_Schmidt Name: C Drooping Schmidt Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1859 - Id: 31632 AegisName: C_Drooping_Oscar Name: C Drooping Oscar Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1860 - Id: 31633 AegisName: C_Drooping_Heinrich Name: C Drooping Heinrich Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1861 - Id: 31634 AegisName: C_Rudolf_Hairband Name: C Reindeer Hair Band Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 836 - Id: 31635 AegisName: C_Fairy_Long_BD Name: C Flowing Long Blonde Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1832 - Id: 31636 AegisName: C_Fairy_Long_SV Name: C Flowing Long Silver Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1833 - Id: 31637 AegisName: C_Straight_Long_BU Name: C Straight Long Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1834 - Id: 31638 AegisName: C_Straight_Long_RD Name: C Straight Long Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1835 - Id: 31639 AegisName: C_Straight_Long_GL Name: C Straight Long Blonde Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1836 - Id: 31640 AegisName: C_Straight_Long_GN Name: C Straight Long Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1837 - Id: 31641 AegisName: C_Straight_Long_JBL Name: C Straight Long Jet Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1838 - Id: 31642 AegisName: C_Straight_Long_LPP Name: C Straight Long Light Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1839 - Id: 31643 AegisName: C_Straight_Long_OM Name: C Straight Long Brown Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1840 - Id: 31644 AegisName: C_Straight_Long_PP Name: C Straight Long Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1841 - Id: 31645 AegisName: C_Side_Tail_BU Name: C Side Pony Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1842 - Id: 31646 AegisName: C_Side_Tail_RD Name: C Side Pony Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1843 - Id: 31647 AegisName: C_Side_Tail_YL Name: C Side Pony Blonde Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1844 - Id: 31648 AegisName: C_Side_Tail_GN Name: C Side Pony Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1845 - Id: 31649 AegisName: C_Side_Tail_BL Name: C Side Pony Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1846 - Id: 31650 AegisName: C_Side_Tail_WH Name: C Side Pony White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1847 - Id: 31651 AegisName: C_Side_Tail_OM Name: C Side Pony Brown Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1848 - Id: 31652 AegisName: C_Side_Tail_PP Name: C Side Pony Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1849 - Id: 31653 AegisName: C_Back_Signon_BU Name: C Chignon Blue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1850 - Id: 31654 AegisName: C_Back_Signon_RD Name: C Chignon Red Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1851 - Id: 31655 AegisName: C_Back_Signon_YL Name: C Chignon Blonde Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1852 - Id: 31656 AegisName: C_Back_Signon_GN Name: C Chignon Green Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1853 - Id: 31657 AegisName: C_Back_Signon_BL Name: C Chignon Black Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1854 - Id: 31658 AegisName: C_Back_Signon_WH Name: C Chignon White Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1855 - Id: 31659 AegisName: C_Back_Signon_OM Name: C Chignon Brown Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1856 - Id: 31660 AegisName: C_Back_Signon_PP Name: C Chignon Purple Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1857 - Id: 31661 AegisName: C_Alphonse_Helmet Name: Costume Alphonse Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1207 - Id: 31662 AegisName: C_Red_Hood Name: Costume Red Ridding Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 839 - Id: 31663 AegisName: C_Asara_Fairy_Hat_J Name: Costume Fairy Asara Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 492 - Id: 31664 AegisName: C_B_Desert_Wolf_Hat Name: C Drooping Ernst Von Wolf 11th Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 783 - Id: 31665 AegisName: C_GoldPoring_Hat_TW Name: Costume Rich Rich Poring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 887 - Id: 31666 AegisName: C_Crown_of_Unity Name: Costume Luxury Crown Type: Armor Locations: Costume_Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoSell: true NoGuildStorage: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 903 - Id: 31667 AegisName: C_PoringBeret_TW Name: C Poring Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1825 - Id: 31668 AegisName: C_Majoruros_Horn Name: C Majorous Horns Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 888 - Id: 31669 AegisName: C_Adv_Whisper_Mask_J Name: C Evolved Whisper Mask Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 458 - Id: 31670 AegisName: C_Miyabi_Long_Hair Name: C Miyabi Long Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1864 - Id: 31671 AegisName: C_Twin_Canon Name: C Twin Cannon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1865 - Id: 31672 AegisName: C_Mermaid_Wig Name: C Mermaid Wig Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1866 - Id: 31673 AegisName: C_Picnic_Basket Name: C Picnic Basket Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1867 - Id: 31674 AegisName: C_Jitterbug_Cap Name: C Jitterbug Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1868 - Id: 31675 AegisName: C_Orange_Stem_Hat Name: C Orange Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 620 - Id: 31676 AegisName: C_Orange_In_Mouth Name: C Orange In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 814 - Id: 31677 AegisName: C_Stretched_Nose Name: Costume Pinocchio Nose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 737 - Id: 31678 AegisName: C_Pig_Girl_TW Name: Costume Little Pig Girl Baloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1871 - Id: 31679 AegisName: C_Pig_Boy_TW Name: Costume Little Pig Boy Baloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1872 - Id: 31680 AegisName: C_Fairy_Long_SVK Name: Costume Fairy Long Purple # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1912 - Id: 31681 AegisName: C_Fairy_Long_BDK Name: Costume Fairy Long Hair (Blonde) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1911 - Id: 31682 AegisName: C_Drooping_Elven_Ears Name: Costume Drooping Elven Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 875 - Id: 31683 AegisName: C_Heart_Wing_Hairband_V Name: Costume Heart Wing Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 733 - Id: 31684 AegisName: C_Kururinpa_Hair Name: Costume Kururinpa Tails Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1873 - Id: 31685 AegisName: C_Fluffy_Semi_Long Name: Costume Fluffy Semi Long Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1874 - Id: 31686 AegisName: C_Desert_Wolf_B Name: Costume Desert Wolf Baby Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1875 - Id: 31687 AegisName: C_Alchemist_Square_Bag Name: Costume Alchemist Bag Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1876 - Id: 31688 AegisName: C_Poring_On_Shoulder Name: Costume Poring on Shoulder Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1877 - Id: 31689 AegisName: C_Piamette_Roll_HairK Name: C Piamette Curls Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1775 - Id: 31690 AegisName: C_Flame_Bird Name: C Flame Bird Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 832 - Id: 31691 AegisName: C_Bell_Pigeon_J Name: Costume Bell of Pigeon Lower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1034 - Id: 31692 AegisName: C_YDragon_SkyWing Name: C Dragon Emperor Wings Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1413 - Id: 31693 AegisName: C_LunaticMuffler Name: Costume Lunatic Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1732 - Id: 31694 AegisName: C_Poring_Letter_TW Name: Costume Poring Letter Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1870 - Id: 31695 AegisName: C_Tree_Of_Sprout_JP Name: Costume Tree Sprout Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 848 - Id: 31696 AegisName: C_Shark_Hat Name: Costume Shark Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 503 - Id: 31697 AegisName: C_Bird_Nest Name: Costume Bird Nest Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 201 - Id: 31698 AegisName: C_Pigtail_Red_Hood Name: Costume Red Riding Hood Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1879 - Id: 31699 AegisName: C_Smiling_Eyes Name: Costume Smiling Eyes Type: Armor Jobs: All: true Summoner: false Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1880 - Id: 31700 AegisName: C_ScarfOfHero_TW Name: Costume Hunter Scarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1882 - Id: 31701 AegisName: C_ScarfOfHero_R Name: Costume Warrior Scarf (Rental) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1882 - Id: 31702 AegisName: C_Moon_Cat_Fighter Name: C Moon Cat Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1308 - Id: 31703 AegisName: C_Valentine_Hat Name: Costume Valentine Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 397 - Id: 31704 AegisName: C_Sweet_Valentine_Hat Name: C Sweet Valentine Out Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 865 - Id: 31705 AegisName: C_Red_White_Hat Name: C Red Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 469 - Id: 31706 AegisName: C_Tatenasi_Helmet Name: C Trident Helm Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 810 - Id: 31707 AegisName: C_Nine_Tail_Fox_Hair Name: C Nine Tail Fox Hair Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1884 - Id: 31708 AegisName: C_Gothic_Skull_Ribbon Name: C Gothic Skull Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1885 - Id: 31709 AegisName: C_Golden_Violet Name: Costume Golden Violet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1886 - Id: 31710 AegisName: C_Skygirl_Flower Name: Costume Lace Flower Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 740 - Id: 31711 AegisName: C_Gemmed_Crown Name: Costume Jewel Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 88 - Id: 31712 AegisName: C_Oxygen_Mask Name: Costume Oxygen Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 90 - Id: 31713 AegisName: C_Mystery_Fruit_Shell Name: Costume Mystical Fruit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 134 - Id: 31714 AegisName: C_Indian_Headband Name: Costume Indian Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 155 - Id: 31715 AegisName: C_Orange_Rabbit Name: Costume Orange Rabbit Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1887 - Id: 31716 AegisName: C_Blinking_Eyes_RD Name: Costume Twinkling Red Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1888 - Id: 31717 AegisName: C_Medium_Wave_BD Name: Costume Medium Wave (Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1889 - Id: 31718 AegisName: C_Bless_Sky_Lantern_J Name: Costume Sky Lantern Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1720 - Id: 31719 AegisName: C_Cons_Of_Fire Name: Costume Master of Fire Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1890 - Id: 31720 AegisName: C_VesperHeadGear Name: Costume Vesper Headgear Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1827 - Id: 31721 AegisName: C_ResonateTaego Name: Costume Ancient Resonance Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1823 Script: | hateffect(HAT_EF_RESONATETAEGO,true); UnEquipScript: | hateffect(HAT_EF_RESONATETAEGO,false); - Id: 31722 AegisName: C_Sedora_Hat Name: Costume Sedora Hat # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 869 - Id: 31723 AegisName: C_Tw_Rice_Ball Name: Costume Chimaki Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 892 - Id: 31724 AegisName: C_Rice_Ball_Hood Name: Costume Chimaki Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1773 - Id: 31725 AegisName: C_Lunar_Rainbow Name: Costume Rainbow Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 704 - Id: 31726 AegisName: C_Hankie_In_Mouth Name: Costume Handkerchief Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 818 - Id: 31727 AegisName: C_Ribbon_Green Name: Costume Ribbon (Green) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 244 - Id: 31728 AegisName: C_Nobility_Hat Name: Costume Ribbon Straw Hat Type: Armor View: 1181 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31729 AegisName: C_Miracle_Plant Name: Costume Flower Shower Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1893 - Id: 31730 AegisName: C_Volume_Low_Twin_CB Name: Costume Minty's Hairstyle (Peach) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1894 - Id: 31731 AegisName: C_SnackParty Name: Costume Sweets Party Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1896 - Id: 31732 AegisName: C_BearBalloon Name: Costume Bear Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1734 - Id: 31733 AegisName: C_Phantom_Of_Masquerade Name: Costume Phantom's Mask Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1899 - Id: 31734 AegisName: C_CitrusRibbon Name: Costume Citrus Colored Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1900 - Id: 31735 AegisName: C_FortunetellinSealed Name: Costume Yawata Seal Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1901 - Id: 31736 AegisName: C_Popcorn_Hair Name: Costume Popcorn Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1895 - Id: 31737 AegisName: C_Wings_Of_Lucifer Name: Costume Lucifer's Wings Type: Armor View: 55 Jobs: All: true Novice: false Locations: Costume_Garment: true ArmorLevel: 1 - Id: 31738 AegisName: C_Side_Tail_PP_M_TW Name: Costume Sweet Side Ponytail (Purple) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1849 - Id: 31739 AegisName: C_Side_Tail_OM_M_TW Name: Costume Sweet Side Ponytail (Brown) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1848 - Id: 31740 AegisName: C_Side_Tail_WH_M_TW Name: Costume Sweet Side Ponytail (White) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1847 - Id: 31741 AegisName: C_Side_Tail_BL_M_TW Name: Costume Sweet Side Ponytail (Black) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1846 - Id: 31742 AegisName: C_Side_Tail_GN_M_TW Name: Costume Sweet Side Ponytail (Green) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1845 - Id: 31743 AegisName: C_Side_Tail_YL_M_TW Name: Costume Sweet Side Ponytail (Yellow) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1844 - Id: 31744 AegisName: C_Side_Tail_RD_M_TW Name: Costume Sweet Side Ponytail (Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1843 - Id: 31745 AegisName: C_Side_Tail_BU_M_TW Name: Costume Sweet Side Ponytail (Blue) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1842 - Id: 31746 AegisName: C_St_Long_PP_M_TW Name: Costume Beauty and Long Wig (Purple) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1841 - Id: 31747 AegisName: C_St_Long_OM_M_TW Name: Costume Beauty and Long Wig (Brown) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1840 - Id: 31748 AegisName: C_St_Long_LPP_M_TW Name: Costume Beauty and Long Wig (Pink) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1839 - Id: 31749 AegisName: C_St_Long_JBL_M_TW Name: Costume Beauty and Long Wig (Grey) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1838 - Id: 31750 AegisName: C_St_Long_GN_M_TW Name: Costume Beauty and Long Wig (Green) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1837 - Id: 31751 AegisName: C_St_Long_GL_M_TW Name: Costume Beauty and Long Wig (Gold) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1836 - Id: 31752 AegisName: C_St_Long_RD_M_TW Name: Costume Beauty and Long Wig (Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1835 - Id: 31753 AegisName: C_St_Long_BU_M_TW Name: Costume Beauty and Long Wig (Blue) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1834 - Id: 31754 AegisName: C_B_S_PP_M_TW Name: Costume Korean Meatball Head (Purple) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1857 - Id: 31755 AegisName: C_B_S_OM_M_TW Name: Costume Korean Meatball Head (Brown) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1856 - Id: 31756 AegisName: C_B_S_WH_M_TW Name: Costume Korean Meatball Head (White) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1855 - Id: 31757 AegisName: C_B_S_BL_M_TW Name: Costume Korean Meatball Head (Black) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1854 - Id: 31758 AegisName: C_B_S_GN_M_TW Name: Costume Korean Meatball Head (Green) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1853 - Id: 31759 AegisName: C_B_S_YL_M_TW Name: Costume Korean Meatball Head (Yellow) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1852 - Id: 31760 AegisName: C_B_S_RD_M_TW Name: Costume Korean Meatball Head (Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1851 - Id: 31761 AegisName: C_B_S_BU_M_TW Name: Costume Korean Meatball Head (Blue) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1850 - Id: 31762 AegisName: C_Heart_Card_In_Mouth Name: Costume Heart Card in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1679 - Id: 31763 AegisName: C_Fortier_Mask Name: C Fortier Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 876 - Id: 31764 AegisName: C_Rainbow_Veil_V Name: Costume Rainbow Veil Mid Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 992 - Id: 31765 AegisName: C_Garnet_Tiara Name: Costume Garnet Tiara Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1906 - Id: 31766 AegisName: C_Peony_Hair_Ornament Name: Costume Peony Headdress Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1907 - Id: 31767 AegisName: C_TW_3rd_Balloon Name: Costume 3rd Year Balloon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1909 - Id: 31768 AegisName: C_2019RTC_CeleAura_TW Name: Costume 3rd Anniversary Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1908 - Id: 31769 AegisName: C_Orange_Bunny_Band Name: Costume Bunny Hairband (Orange) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 751 - Id: 31770 AegisName: C_Violet_Bunny_Band Name: Costume Bunny Hairband (Purple) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 752 - Id: 31771 AegisName: C_Blue_Bunny_Band Name: Costume Bunny Hairband (Blue) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 753 - Id: 31772 AegisName: C_Silver_Bunny_Hairband Name: Costume Bunny Hairband (Silver) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 754 - Id: 31773 AegisName: C_Aqua_Bunny_Band Name: Costume Bunny Hairband (Light Blue) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1012 - Id: 31774 AegisName: C_Maroon_Bunny_Band Name: Costume Bunny Hairband (Red) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1013 - Id: 31775 AegisName: C_Golden_Bunny_Band Name: Costume Bunny Hairband (Golden) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1014 - Id: 31776 AegisName: C_Gray_Bunny_Band Name: Costume Bunny Hairband (Grey) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1015 - Id: 31777 AegisName: C_YellowBunny_Hairband Name: Costume Bunny Hairband (Yellow) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 662 - Id: 31778 AegisName: C_PinkBunny_Hairband Name: Costume Bunny Hairband (Pink) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 663 - Id: 31779 AegisName: C_Green_Bunny_Hairband Name: Costume Bunny Hairband (Green) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 664 - Id: 31780 AegisName: C_Sloth_Hat Name: Costume Sloth Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 638 - Id: 31781 AegisName: C_Green_Poring_Hairpin Name: Costume Poporing Hairpin Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 788 - Id: 31782 AegisName: C_Solo_Play_Box1 Name: Costume Poporing Hairpin Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 449 - Id: 31783 AegisName: C_Doram_Balloon Name: Costume Doram Balloon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1595 - Id: 31784 AegisName: C_Exa_Goat_Cap Name: Costume Experimental Goat Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1768 - Id: 31785 AegisName: C_Monster_Fish_Gill Name: Costume Monster Fish Gills Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1218 - Id: 31786 AegisName: C_Red_Baby_Dragon Name: Costume Red Baby Dragon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1463 - Id: 31787 AegisName: C_SavageB_On_Shoulder Name: Costume Savage Shoulder Bebe Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1915 - Id: 31788 AegisName: C_Piamette_Roll_Hair_SV Name: Costume Piamette Doll Hair (Silver) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1916 - Id: 31789 AegisName: C_Turkey_Hat Name: Costume Turkey Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1932 - Id: 31790 AegisName: C_Blood_Grimoire_J Name: Costume Grimoire of Red Blood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 890 - Id: 31791 AegisName: C_Pig_Mask_J Name: Costume Money Pig Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1869 - Id: 31792 AegisName: C_Baryon_HeadPhone_TW Name: Costume Baryon Headphone Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1920 - Id: 31793 AegisName: C_Feather_Of_Seraphim Name: Costume Seraphim's Feather Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1704 - Id: 31794 AegisName: C_Puppy_Ears_Hat_Jp Name: Costume Dog Ear Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 827 - Id: 31795 AegisName: C_Elephangel_J Name: Costume Elephant Fairy Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1745 - Id: 31796 AegisName: C_Drooping_Boto Name: Costume Drooping Boto Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 657 - Id: 31797 AegisName: C_Shih_Tzu_Long Name: Costume Shih Tzu Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1921 - Id: 31798 AegisName: C_Baby_Panda Name: Costume Baby Panda Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1922 - Id: 31799 AegisName: C_Pretty_Bear_WH Name: Costume Pretty White Bear Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1923 - Id: 31800 AegisName: C_Br_Twin_Ribbon Name: Costume Brazil Twin Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 575 - Id: 31801 AegisName: C_Karada_Meguri_Tea_Hat Name: Costume Creative Convention Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 427 - Id: 31802 AegisName: C_Royal_Milk_Tea_Hat Name: Costume Creative Convention Chapeau Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 428 - Id: 31803 AegisName: C_Cons_Of_Wind Name: Costume Aura of Tornado Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1924 - Id: 31804 AegisName: C_Flower_Hat Name: Costume Floral Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1172 - Id: 31805 AegisName: C_Sunglasses_Bball_Hat Name: Costume Sunglass Baseball Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 812 - Id: 31806 AegisName: C_Tw_Frog_Hat Name: Costume Blue Frog Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 826 - Id: 31807 AegisName: C_Peacock_Feather Name: Costume Cyber Peacock Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 514 - Id: 31808 AegisName: C_Red_PhD_Hat Name: Costume Academic Cap (Red) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 481 - Id: 31809 AegisName: C_Red_Wizardry_Hat Name: Costume Pointy Hat (Red) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 282 - Id: 31810 AegisName: C_Deep_Angel_Hairband Name: Costume Deep Angel Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 915 - Id: 31811 AegisName: C_Thief_Hood Name: Costume Thief's Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 776 - Id: 31812 AegisName: C_Bulb_Hairband Name: Costume Light Bulb Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 332 - Id: 31813 AegisName: C_Luna_On_Shoulder_J Name: Costume Lunatic On Shoulder Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1881 - Id: 31814 AegisName: C_RabbitFamilyBalloon Name: Costume Lunatic Family Balloon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1809 - Id: 31815 AegisName: C_Angola_Intention Name: Costume Prince of Rabbit Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1925 - Id: 31816 AegisName: C_Rabbit_Winged_Robe Name: Costume Three Rabbits Ribbon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1926 - Id: 31817 AegisName: C_Rabbit_Two_Side_Up Name: Costume Rabbit Two Sides Up Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1927 - Id: 31818 AegisName: C_TopPlayer_TW Name: Costume Top Player Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1930 - Id: 31819 AegisName: C_Dullahan_Mask Name: Costume Dullahan Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1931 - Id: 31820 AegisName: C_Golden_Baseball_Cap Name: Costume Golden Baseball Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 263 - Id: 31821 AegisName: C_Jeje_Cap Name: Costume Jeje Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1011 - Id: 31822 AegisName: C_Summer_Baseball_Cap Name: Costume Red Sun Baseball Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 812 - Id: 31823 AegisName: C_Nose_Glasses_J Name: C Nose Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1933 - Id: 31824 AegisName: C_Mask_Of_Cat_J Name: C Mask of Cat Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1934 - Id: 31825 AegisName: C_Tongue_Charm_J Name: Costume Devil's Tongue Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 801 - Id: 31826 AegisName: C_Sunglass_Bear_Cap_J Name: C Sunglass Bear Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1935 - Id: 31827 AegisName: Durumagi Name: Costume Durumagi Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1936 - Id: 31828 AegisName: C_Maple_Falls_RdK Name: Costume Fallen Leaves Falling (Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 Script: | hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,true); UnEquipScript: | hateffect(HAT_EF_C_MAPLE_WHICH_FALLS_RD,false); - Id: 31829 AegisName: C_Love_China_CN Name: Costume I Love China Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 424 - Id: 31830 AegisName: C_DragonKnight_Eyepatch Name: Costume Dragon Knight Eyepatch Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1227 - Id: 31831 AegisName: C_Disguise_Mantle Name: Costume Disguise Cloth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1937 - Id: 31832 AegisName: C_Bicolor_Cat_Witch_Hat Name: Costume Witch's Cat Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1938 - Id: 31833 AegisName: C_Halloween_Cat_Short Name: Costume Halloween Cat Short Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1939 - Id: 31834 AegisName: C_Halloween_Cat_Long Name: C Halloween Long Haired Cat Ears Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1940 - Id: 31835 AegisName: C_2019_D10_Muffler_TW Name: Costume 10th October National Day Scarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1941 - Id: 31836 AegisName: C_Aviator_Hat Name: Costume Aviator's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 972 - Id: 31837 AegisName: C_SharkHead_J Name: Costume Baby Shark Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1919 - Id: 31838 AegisName: C_Golden_Wreath Name: Costume Asia Masters Gold Wreath Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 434 - Id: 31839 AegisName: C_FluffyWing_J Name: Costume Urd Wings Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1826 Script: | hateffect HAT_EF_FLUFFYWING,true; UnEquipScript: | hateffect HAT_EF_FLUFFYWING,false; - Id: 31840 AegisName: C_BJ_HeadsetA Name: Costume DJ Headset Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1942 Trade: NoDrop: true NoTrade: true NoCart: true NoSell: true NoMail: true NoAuction: true NoGuildStorage: true - Id: 31841 AegisName: C_BJ_HeadsetB Name: Costume OnAir BJ Headset Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1943 Trade: NoDrop: true NoTrade: true NoCart: true NoSell: true NoMail: true NoAuction: true NoGuildStorage: true - Id: 31842 AegisName: C_Striking_hat Name: Costume Striking Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1759 - Id: 31843 AegisName: C_Heavenly_Order Name: Costume Heavenly Order Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 1093 - Id: 31844 AegisName: C_Mob_Scarf Name: Costume Runaway Scarf Type: Armor View: 1568 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31845 AegisName: C_Palace_Guard_Cap Name: Costume Guard's Hat Type: Armor View: 991 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31846 AegisName: C_Lovely_Ribbon_Hair Name: Costume Lovely Ribbon Hair Type: Armor View: 1944 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31847 AegisName: C_Blink_Eyes_Cocktai_BU Name: Costume Blinking Blue Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1945 - Id: 31848 AegisName: C_Rose_Gothic_Bonnet Name: Costume Rose Gothic Bonnet Type: Armor View: 1946 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31849 AegisName: C_Runaway_Accelerator Name: Costume Runaway Accelerator Type: Armor View: 1947 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31850 AegisName: C_Gift_of_Panagia Name: Costume Crown of Faithful Faith Type: Armor View: 1948 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31851 AegisName: C_Phalanx Name: Costume Floating Shield Type: Armor View: 1949 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31852 AegisName: C_WitchManteau Name: Costume Witch's Cloak Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1950 - Id: 31853 AegisName: C_ZombieMask Name: Costume Zombie Mask Type: Armor View: 1951 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31854 AegisName: C_SnackParty_J Name: Costume Choco Chip Cookies Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1896 - Id: 31855 AegisName: Mushroom_Hair Name: Costume Chocolate Mushroom Wig Type: Armor View: 1953 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31856 AegisName: C_Airy_Two_Side_Up_BD Name: Costume Airy Two Side Up (Blonde) Type: Armor View: 1954 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31857 AegisName: C_Airy_Two_Side_Up_SV Name: Costume Airy Two Side Up (Silver) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1955 - Id: 31858 AegisName: C_Signon_Princ_Wave_BU Name: Costume Signon Princess Wave (Blue) Type: Armor View: 1956 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31859 AegisName: C_Signon_Princ_Wave_RD Name: Costume Signon Princess Wave (Red) Type: Armor View: 1957 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31860 AegisName: C_Signon_Princ_Wave_YL Name: Costume Signon Princess Wave (Yellow) Type: Armor View: 1958 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31861 AegisName: C_Signon_Princ_Wave_GN Name: Costume Signon Princess Wave (Green) Type: Armor View: 1959 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31862 AegisName: C_Signon_Princ_Wave_BL Name: Costume Signon Princess Wave (Black) Type: Armor View: 1960 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31863 AegisName: C_Signon_Princ_Wave_WH Name: Costume Signon Princess Wave (White) Type: Armor View: 1961 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31864 AegisName: C_Signon_Princ_Wave_OM Name: Costume Signon Princess Wave (Brown) Type: Armor View: 1962 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31865 AegisName: C_Signon_Princ_Wave_PP Name: Costume Signon Princess Wave (Purple) Type: Armor View: 1963 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31866 AegisName: C_Braid_Headband_BU Name: Costume Braid Headband (Blue) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1964 - Id: 31867 AegisName: C_Braid_Headband_RD Name: Costume Braid Headband (Red) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1965 - Id: 31868 AegisName: C_Braid_Headband_YL Name: Costume Braid Headband (Yellow) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1966 - Id: 31869 AegisName: C_Braid_Headband_GN Name: Costume Braid Headband (Green) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1967 - Id: 31870 AegisName: C_Braid_Headband_BL Name: Costume Braid Headband (Black) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1968 - Id: 31871 AegisName: C_Braid_Headband_WH Name: Costume Braid Headband (White) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1969 - Id: 31872 AegisName: C_Braid_Headband_OM Name: Costume Braid Headband (Brown) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1970 - Id: 31873 AegisName: C_Braid_Headband_PP Name: Costume Braid Headband (Purple) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1971 - Id: 31874 AegisName: C_Exotic_Bob_L_LB Name: Costume Himelmez's Wig (Blue) Type: Armor View: 1972 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31875 AegisName: C_Exotic_Bob_L_YL Name: Costume Himelmez's Wig (Yellow) Type: Armor View: 1973 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31876 AegisName: C_Exotic_Bob_L_WH Name: Costume Himelmez's Wig (White) Type: Armor View: 1974 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31877 AegisName: C_Exotic_Bob_L_LPP Name: Costume Himelmez's Wig (Light Purple) Type: Armor View: 1975 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31878 AegisName: C_Exotic_Bob_R_PK Name: Costume Himelmez's Wig (Pink) Type: Armor View: 1976 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31879 AegisName: C_Exotic_Bob_R_BG Name: Costume Himelmez's Wig (Blue Green) Type: Armor View: 1977 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31880 AegisName: C_Exotic_Bob_R_JBL Name: Costume Himelmez's Wig (Black) Type: Armor View: 1978 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31881 AegisName: C_Exotic_Bob_R_BW Name: Costume Himelmez's Wig (Brown) Type: Armor View: 1979 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31882 AegisName: C_Choco_Stick_In_Mouth Name: Costume Choco Stick In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 884 - Id: 31883 AegisName: C_Nine_Tail_Fox_Hair_J Name: Costume Nine Tail Fox Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1884 - Id: 31884 AegisName: C_Magic_Helm Name: Costume Magic Helm Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1917 - Id: 31885 AegisName: Cons_Of_Earth Name: Costume Cons of Earth Type: Armor View: 1982 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31886 AegisName: C_Pierced_Apple_E Name: Costume Pierced Apple Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1952 - Id: 31887 AegisName: C_Pure_Love_Muffler Name: Costume Pure Scarf Type: Armor View: 1981 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31888 AegisName: C_W_King_Tiger_Doll_Hat Name: Costume White Tiger Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 973 - Id: 31889 AegisName: C_Gemini_Crown Name: Costume Gemini Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 551 - Id: 31890 AegisName: C_Sagittarius_Diadem Name: Costume Sagittarius Diadem Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 618 - Id: 31891 AegisName: C_Surpentarius_Crown Name: Costume Surpentarius Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1765 - Id: 31892 AegisName: C_Aquarius_Diadem Name: Costume Aquarius Diadem Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 509 - Id: 31893 AegisName: C_Libra_Crown Name: Costume Libra Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 593 - Id: 31894 AegisName: C_Scorpio_Diadem Name: Costume Scorpio Diadem Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 606 - Id: 31895 AegisName: C_Aries_Diadem Name: Costume Aries Diadem Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 531 - Id: 31896 AegisName: C_Capricon_Crown Name: Costume Capricorn Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 621 - Id: 31897 AegisName: C_Pisces_Crown Name: Costume Pisces Crown # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 512 - Id: 31898 AegisName: C_Sagittarius_Crown Name: Costume Sagittarius Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 617 - Id: 31899 AegisName: C_Freyja_Crown Name: Costume Freyja's Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 328 - Id: 31900 AegisName: C_Hair_Of_The_Strong_R Name: Costume Hair Of The Strong Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 879 - Id: 31901 AegisName: C_White_Strong_Hair_R Name: Costume White Strong Hair Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1317 - Id: 31902 AegisName: C_10_Type_Glasses Name: Costume Cool Shades Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1237 - Id: 31903 AegisName: C_White_Snake Name: Costume White Snake Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 413 - Id: 31904 AegisName: C_Para_Team_Hat100 Name: Costume Snow Parade Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1529 - Id: 31905 AegisName: C_Blanc_Neige_Prince Name: Costume Snow Ice Hair Type: Armor View: 1983 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31906 AegisName: C_PGstone_Knit_Hat_PK Name: Costume Cat Paw Knitted Hat Type: Armor View: 1984 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31907 AegisName: C_PGstone_Knit_Hat_BW Name: Costume Cat Paw Knitted Hat (Brown) Type: Armor View: 1985 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31908 AegisName: C_Antler_Fedora Name: Costume Antler Fedora # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 811 - Id: 31909 AegisName: C_711_Knit_Hat Name: Costume Seven-Eleven Knitted Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1130 - Id: 31910 AegisName: C_Shaving_Cream Name: Costume Festive Santa Beard Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 847 - Id: 31911 AegisName: C_LittleGarden Name: Costume Little Garden Type: Armor View: 1830 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31912 AegisName: C_Black_Veil_J Name: Costume Black Veil Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1173 - Id: 31913 AegisName: C_Black_Feather Name: Costume Feathered Black Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1794 - Id: 31914 AegisName: C_Red_Bread_Hat Name: Costume Mini Beret Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 762 - Id: 31915 AegisName: c_Sweet_Corone Name: Costume Sweet Coronet Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1987 - Id: 31916 AegisName: C_Frill_Collar Name: Costume Frill Neckcap Type: Armor View: 1988 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31917 AegisName: C_2018_RTC_Cape4_TW_J Name: Costume Glory Flag (Red) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 32 - Id: 31918 AegisName: C_Party_Recruiter_Hat Name: Costume Party Member Recruit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 351 - Id: 31919 AegisName: C_Friend_Recruiter_Hat Name: Costume Friend Recruit Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 353 - Id: 31920 AegisName: C_Western_Grace Name: Costume Western Crace Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 32 - Id: 31921 AegisName: C_Fairy_Long_CB Name: Costume Fairy Long (Sakura) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1992 - Id: 31922 AegisName: C_Fluffy_Semi_Long_SV Name: Costume Fluffy Semi-Long (Silver) Type: Armor View: 1993 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31923 AegisName: C_Baby_Polar_Bear Name: Costume Baby Polar Bear Type: Armor View: 1994 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31924 AegisName: C_Blinking_Eyes_BU Name: Costume Twinkling Blue Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1995 - Id: 31925 AegisName: C_Valentine_Hat_US Name: Costume Valentine Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 397 - Id: 31926 AegisName: C_Aura_Quartz_REU Name: Costume Aura Quartz Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 866 - Id: 31927 AegisName: C_Blue_Pencil_In_Mouth Name: Costume Pencil in Mouth (Blue) Type: Armor View: 932 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31928 AegisName: C_Cylinder_Hairband Name: Costume Cylinder Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1477 - Id: 31929 AegisName: C_Cryptura_Academy_Hat Name: Costume Smile School Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 872 - Id: 31930 AegisName: C_Mike_Stand Name: Costume Standing Mic Type: Armor View: 2000 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31931 AegisName: C_Half_Rim_Glasses Name: Costume Half Rim Glasses Type: Armor View: 2001 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31932 AegisName: C_Suit_Sollar Name: Costume Suit Lapel Type: Armor View: 2002 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31933 AegisName: C_Miyabi_Long_Hair_LPP Name: Costume Miyabi Doll Long Hair (Light Purple) Type: Armor View: 2003 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31934 AegisName: C_Blink_Eyes_Sakura Name: Costume Blinking Purple Eyes Type: Armor View: 2004 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 31935 AegisName: C_Baby_Dragon_Hat Name: Costume Baby Dragon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 525 - Id: 31936 AegisName: C_Nut_Donut_In_Mouth Name: Costume Honeynut Donut Type: Armor View: 736 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31937 AegisName: C_Unicorn_Ornament Name: Costume Unicorn Headdress Type: Armor View: 2006 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31938 AegisName: C_L_Knitting_Low_Twin Name: Costume Loose Knitting Twin Type: Armor View: 2007 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31939 AegisName: C_Carnation_Corolla Name: Costume Carnation Corolla Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1026 - Id: 31940 AegisName: C_Earth_Godess_Mask Name: Costume flag mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 918 - Id: 31941 AegisName: C_Super_Cell Name: Costume Storm Cell Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 688 - Id: 31942 AegisName: C_Romance_Rose_J Name: Costume Pretty Rose Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1999 Script: | hateffect HAT_EF_C_ROMANCE_ROSE_TW,true; UnEquipScript: | hateffect HAT_EF_C_ROMANCE_ROSE_TW,false; - Id: 31943 AegisName: C_Frog_Hood Name: Costume Tree Frog Hood Type: Armor View: 2010 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 31944 AegisName: C_Elegant_Wave Name: Costume Elegant Wave Type: Armor View: 2011 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 31945 AegisName: C_Golden_Angel_Band Name: Costume Golden Angel Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1104 - Id: 31946 AegisName: C_Frantic_Looking Name: Costume Demon King's Eye Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1897 - Id: 31947 AegisName: C_Sinister_Horn_Gear Name: Costume Dark Horn Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1898 - Id: 31948 AegisName: C_Eyes_Of_Illusion Name: Costume Headband of Illusion's Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1779 - Id: 31949 AegisName: C_Diabolus_Wing Name: Costume Diablos Wings Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 680 - Id: 31950 AegisName: C_Nut_Cracker_JP Name: Costume Replica Nut Cracker Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1991 - Id: 31951 AegisName: C_Happy_Cat_JP Name: Costume Happy Cat Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1980 - Id: 31952 AegisName: C_GatesofNetherWorld Name: Costume Gates of Netherworld Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2016 - Id: 31953 AegisName: C_Cor_Core_Headset Name: Costume Core Headset Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2017 - Id: 31954 AegisName: C_Vassalage_Necklace Name: Costume Vassalage Necklace Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2018 - Id: 31955 AegisName: C_Angeling_1st Name: Costume 1st Angeling Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 204 - Id: 31956 AegisName: C_Angeling_2nd Name: Costume 2nd Angeling Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 204 - Id: 31957 AegisName: C_Cons_Of_Poison Name: Costume Cons of Poison Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 Script: | hateffect HAT_EF_POISON_MASTER,true; UnEquipScript: | hateffect HAT_EF_POISON_MASTER,false; - Id: 31958 AegisName: C_SantaPoring_Balloon Name: Costume Santa Poring Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1428 - Id: 31959 AegisName: C_RK_Hair_BL Name: Costume Wave Perm (Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2062 - Id: 31960 AegisName: C_RK_Hair_BU Name: Costume Wave Perm (Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2063 - Id: 31961 AegisName: C_RK_Hair_GN Name: Costume Wave Perm (Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2064 - Id: 31962 AegisName: C_RK_Hair_OM Name: Costume Wave Perm (Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2065 - Id: 31963 AegisName: C_RK_Hair_PK Name: Costume Wave Perm (Pink) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2066 - Id: 31964 AegisName: C_RK_Hair_PP Name: Costume Wave Perm (Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2067 - Id: 31965 AegisName: C_RK_Hair_RD Name: Costume Wave Perm (Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2068 - Id: 31966 AegisName: C_RK_Hair_WH Name: Costume Wave Perm (White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2069 - Id: 31967 AegisName: C_RK_Hair_YL Name: Costume Wave Perm (Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2070 - Id: 31968 AegisName: C_AB_Hair_BL Name: Costume Ponytail Hair (Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2071 - Id: 31969 AegisName: C_AB_Hair_LPP Name: Costume Ponytail Hair (Light Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2072 - Id: 31970 AegisName: C_AB_Hair_OM Name: Costume Ponytail Hair (Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2073 - Id: 31971 AegisName: C_AB_Hair_WH Name: Costume Ponytail Hair (White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2074 - Id: 31972 AegisName: C_Purificatory_Mask Name: Costume Purificatory Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 8 - Id: 31973 AegisName: C_Blossom_Glasses Name: Costume Cherry Blossom Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2119 - Id: 31974 AegisName: C_Melon_Headphone Name: Costume Melon Headphones Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2129 - Id: 31975 AegisName: C_Sweet_Potato_In_Mouth Name: Costume Sweet Potato in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2154 - Id: 31976 AegisName: C_Focus_Beret Name: Costume Concentration Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1122 - Id: 31977 AegisName: C_Rent_Dog_Officer_TH Name: "[Rental] Costume Dog Officer" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1601 - Id: 31978 AegisName: C_Fire_Giant_Red Name: Costume Red Flame Giant # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2308 - Id: 31979 AegisName: C_Fire_Giant_Gold Name: Costume Golden Flame Giant # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2309 - Id: 31980 AegisName: aegis_31980 Name: Costume Concentration Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1122 - Id: 32000 AegisName: Blue_Spear Name: Blue Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 2000 Attack: 140 Range: 3 Slots: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Water; if (.@r>=7) { bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_Formless,10; bonus2 bAddEle,Ele_Fire,10; } if (.@r>=9) { bonus2 bAddRace,RC_Demon,15; bonus2 bAddRace,RC_Formless,15; bonus2 bAddEle,Ele_Fire,15; } - Id: 32001 AegisName: Diva_Spear Name: Diva Spear Type: Weapon SubType: 1hSpear Weight: 1800 Attack: 150 MagicAttack: 110 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 32002 AegisName: Mirage_Spear Name: Mirage Spear Type: Weapon SubType: 1hSpear Weight: 1800 Attack: 150 MagicAttack: 110 Range: 5 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); if (.@r>=7) { bonus bBaseAtk,30; bonus bHit,5; } if (.@r>=9) { bonus bBaseAtk,30; bonus bHit,5; } - Id: 32003 AegisName: Sinister_Spear_J Name: Spear of Evil Type: Weapon SubType: 1hSpear Buy: 100000 Weight: 700 Attack: 110 Range: 3 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,pow(getrefine(),2); - Id: 32004 AegisName: Probation_Lance Name: Trial Royal Guard's Lance Type: Weapon SubType: 1hSpear Buy: 20 Attack: 140 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; bonus bBaseAtk,6*(min(BaseLevel,160)/10); if (getrefine()>=7) { bonus bLongAtkRate,getskilllv("KN_SPEARMASTERY"); } - Id: 32005 AegisName: Pole_Axe_IL Name: Illusion Pole Axe Type: Weapon SubType: 1hSpear Weight: 1500 Attack: 190 Range: 3 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bStr,3; bonus bInt,2; bonus bDex,2; if (.@r >= 13) { .@val = -2000; } else if (.@r >= 9) { .@val = -1000; } bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",.@val; - Id: 32007 AegisName: Jirant_Spear Name: God Eater Dragon Spear Type: Weapon SubType: 1hSpear Weight: 3800 Attack: 360 MagicAttack: 280 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bStr,3; bonus bDex,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus2 bHPDrainRate,1000,1; bonus2 bAddRace,RC_All,2*.@r; bonus bAspdRate,2*.@r; bonus bDelayrate,-.@r; if (.@r>=7) bonus2 bHPDrainRate,1000,2; if (.@r>=9) bonus2 bHPDrainRate,1000,3; if (.@r>=10) bonus bFixedCastrate,-70; - Id: 32012 AegisName: Metal_Stick_J Name: Metal Stick Type: Weapon SubType: 1hSpear Buy: 20 Weight: 2500 Attack: 180 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bVit,3; bonus2 bSkillAtk,"LG_BANISHINGPOINT",2*BaseLevel; if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillUseSP,"LG_BANISHINGPOINT",15; bonus2 bAddRace,RC_DemiHuman,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=9) bonus2 bSkillAtk,"LG_BANISHINGPOINT",BaseLevel; if (.@r>=10) { bonus2 bAddRace,RC_DemiHuman,30; bonus2 bAddRace,RC_Player_Doram,30; } - Id: 32013 AegisName: Metal_Stick Name: Metal Stick Type: Weapon SubType: 1hSpear Weight: 2000 Attack: 180 Range: 3 Slots: 3 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"LG_CANNONSPEAR",10; if (.@r > 6) { bonus2 bSkillAtk,"LG_OVERBRAND",10 + (.@r > 8 ? 15 : 0); } if (.@r > 11) { bonus bDelayrate,-15; } - Id: 32014 AegisName: Blut_Spear Name: Brute Spear Type: Weapon SubType: 1hSpear Attack: 150 Range: 3 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bIgnoreDefRaceRate,RC_All,5*.@r; bonus2 bAddRace,RC_Player_Human,80 + (.@r > 8 ? 20 : 0) + (.@r > 7 ? 35 : 0); if (.@r > 9) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; } - Id: 32015 AegisName: Woe_Onehand_Spear1_Z Name: Lesser Guild Member's Pike Type: Weapon SubType: 1hSpear Weight: 900 Attack: 110 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("KN_SPEARMASTERY"); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { autobonus3 "{ bonus2 bSkillAtk,\"KN_PIERCE\",20+" + .@a + "; }",1000,10000,"SM_PROVOKE"; bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Stun,1000+(.@a*200); bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Blind,1000+(.@a*200); } - Id: 32017 AegisName: Variant_Spear Name: Abyss Spear Type: Weapon SubType: 1hSpear Weight: 1800 Attack: 150 MagicAttack: 110 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 32018 AegisName: Undine_Spear_K Name: Aquatic Spear Type: Weapon SubType: 1hSpear Weight: 1200 Attack: 180 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bBaseAtk,.@r/2*10; } if (.@r>=3) { bonus bLongAtkRate,.@r/3*4; } if (.@r>=7) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } - Id: 32019 AegisName: Boost_Lance_OS Name: Boost Lance-OS Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1000 Attack: 190 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@aspd = 3; if (.@r >= 7) { .@aspd += 7; if (.@r >= 9) { .@dmg = 20; if (.@r >= 11) { .@dmg += 15; } bonus2 bSkillAtk,"LG_BANISHINGPOINT",.@dmg; } } bonus bAspdRate,.@aspd; - Id: 32021 AegisName: Evt_Undine_Spear_K Name: Sealed Aquatic Spear Type: Weapon SubType: Staff Attack: 180 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=9) { bonus bAspdRate,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",35; bonus2 bSkillAtk,"LG_CANNONSPEAR",35; } else if (.@r>=7) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } - Id: 32023 AegisName: Argen_Blanco Name: Argen Blanco Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1000 Attack: 200 Range: 3 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"KN_BRANDISHSPEAR",30; bonus bBaseAtk,4*.@r; if (.@r>=9) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",20; - Id: 32024 AegisName: Harve Name: Harve Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1500 Attack: 210 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"PA_SHIELDCHAIN",40; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_SHIELDPRESS",30; if (.@r>=11) { bonus2 bSkillAtk,"PA_SHIELDCHAIN",20; bonus2 bSkillAtk,"LG_SHIELDPRESS",20; } - Id: 32025 AegisName: Fortrage Name: Fortridge Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1700 Attack: 205 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-.@r; bonus bAtkRate,5; if (.@r>=9) bonus2 bSkillAtk,"LG_CANNONSPEAR",20; if (.@r>=11) { bonus2 bSkillAtk,"LG_OVERBRAND",20; bonus2 bSkillAtk,"LG_OVERBRAND_BRANDISH",20; bonus2 bSkillAtk,"LG_OVERBRAND_PLUSATK",20; } - Id: 32026 AegisName: Ein_1HSPEAR Name: Blocking Spear Type: Weapon SubType: 1hSpear Weight: 3000 Attack: 210 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,40; } if (.@r>=9) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 32027 AegisName: G_Knight_Spear Name: Guardian Knight Spear Type: Weapon SubType: 1hSpear Weight: 4000 Attack: 205 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,.@r; if (.@r>=9) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 32028 AegisName: Argen_Blanco_J Name: Argen Blanco Type: Weapon SubType: 1hSpear Buy: 200000 Weight: 1800 Attack: 150 MagicAttack: 110 Range: 3 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"RK_IGNITIONBREAK",30; - Id: 32029 AegisName: Harve_J Name: Harvest Type: Weapon SubType: 1hSpear Buy: 200000 Weight: 1800 Attack: 150 MagicAttack: 110 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"PA_SHIELDCHAIN",30; - Id: 32030 AegisName: Fortrage_J Name: Fortrage Type: Weapon SubType: 1hSpear Buy: 200000 Weight: 1800 Attack: 150 MagicAttack: 110 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"LG_CANNONSPEAR",30; - Id: 32031 AegisName: Aries_Spear_J Name: Aries Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1000 Attack: 10 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,50+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bDelayrate,-10; bonus bAtkRate,50; bonus2 bSkillUseSP,"PA_SHIELDCHAIN",25; bonus2 bSubClass,Class_Boss,10; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - Id: 32034 AegisName: Comp_Undine_Spear_K Name: "[Not For Sale] Aquatic Spear" Type: Weapon SubType: 1hSpear Weight: 1200 Attack: 180 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus bLongAtkRate,(.@r/3)*4; if (.@r>=7) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } if (.@r>=9) bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } - Id: 32103 AegisName: Woe_Instrument1_Z Name: Lesser Guild Member's Guitar Type: Weapon SubType: Musical Weight: 400 Attack: 70 Range: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,15+.@r; bonus2 bAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,20+(.@r-10); bonus bVariableCastrate,-30; autobonus3 "{ .@r = getrefine(); bonus2 bSkillAtk,\"BA_MUSICALSTRIKE\",30+(.@r-10); }",1000,60000,"BD_ADAPTATION"; } - Id: 32105 AegisName: Variant_Viollin Name: Abyss Violin Type: Weapon SubType: Musical Weight: 250 Attack: 180 MagicAttack: 120 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bSkillAtk,"CG_ARROWVULCAN",150; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bSkillAtk,"CG_ARROWVULCAN",50; bonus2 bSubRace,RC_Player_Human,5; } - Id: 32106 AegisName: Variant_Blade_Whip Name: Abyss Blade Whip Type: Weapon SubType: Whip Weight: 500 Attack: 150 MagicAttack: 120 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (.@r>=7) { bonus2 bSkillAtk,"CG_ARROWVULCAN",150; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bSkillAtk,"CG_ARROWVULCAN",50; bonus2 bSubRace,RC_Player_Human,5; } - Id: 32107 AegisName: Black_Circle Name: Black Circle Type: Weapon SubType: Musical Weight: 1200 Attack: 100 MagicAttack: 190 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bSkillAtk,"WM_METALICSOUND",30; if (.@r>=11) bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; - Id: 32108 AegisName: Antique_Cello Name: Antique Cello Type: Weapon SubType: Musical Weight: 1200 Attack: 180 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; bonus bLongAtkRate,.@r; if (.@r>=9) bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=11) bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",20; - Id: 32110 AegisName: Ein_1HLUTE Name: Safety Lute Type: Weapon SubType: Musical Weight: 1400 Attack: 200 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,40; } if (.@r>=9) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; autobonus "{ bonus2 bAddSize,Size_All,15; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } - Id: 32111 AegisName: R_Cello Name: Royal Chello Type: Weapon SubType: Musical Weight: 1000 Attack: 90 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bMatk,180; bonus bUnbreakableWeapon; bonus bMatk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; bonus2 bSkillAtk,"WM_METALICSOUND",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; } if (.@r>=11) { bonus2 bMagicAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Angel,20; bonus2 bSkillCooldown,"WM_METALICSOUND",-1000; } - Id: 32112 AegisName: Black_Circle_J Name: Black Circle Type: Weapon SubType: Musical Buy: 200000 Weight: 250 Attack: 180 MagicAttack: 120 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"WM_METALICSOUND",30; - Id: 32113 AegisName: Antique_Cello_J Name: Antique Cello Type: Weapon SubType: Musical Buy: 200000 Weight: 250 Attack: 180 MagicAttack: 120 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"CG_ARROWVULCAN",30; - Id: 32117 AegisName: Dark_Illu_Guitar_TH Name: Dark Illusion Guitar Type: Weapon SubType: Musical Weight: 1000 Attack: 160 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillCooldown,"CG_ARROWVULCAN",-100; if (.@r>=9) { bonus bLongAtkRate,7; if (.@r>=11) { bonus2 bSkillAtk,"CG_ARROWVULCAN",200; bonus bDelayrate,-10; } } } - Id: 32202 AegisName: Comp_All_In_One_Ring Name: Ring of Apology 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: | bonus bAllStats,1; skill "AL_TELEPORT",1; skill "AL_HEAL",1; bonus bNoCastCancel; bonus bAspdRate,10; bonus bVariableCastrate,-10; - Id: 32203 AegisName: Accelerator_Chip Name: Accelerator Chip Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; bonus bAspdRate,5; - Id: 32204 AegisName: Immortal_Dog_Tag Name: Immortal Dog Tag Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4; - Id: 32206 AegisName: Prta_Mil_Glove Name: Prontera Militia Glove Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVit,5; bonus bMdef,5; bonus bAspdRate,5; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5; - Id: 32207 AegisName: Illusion_B_R Name: Illusion Booster R Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bAtkRate,5; - Id: 32208 AegisName: Illusion_B_L Name: Illusion Booster L Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bAtkRate,5; - Id: 32209 AegisName: Illusion_BC_R Name: Illusion Battle chip R Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMatkRate,5; - Id: 32210 AegisName: Illusion_BC_L Name: Illusion Battle chip L Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMatkRate,5; - Id: 32219 AegisName: Astraea_Ring Name: Asteria's Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,1; skill "PR_SUFFRAGIUM",3; bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; - Id: 32221 AegisName: Time_Overload_Ring Name: Temporal Transcendence Ring Type: Armor Defense: 15 Slots: 1 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 bAspdRate,10; bonus bVariableCastrate,-10; - Id: 32222 AegisName: Brooch_Of_Hero Name: Brooch of Hero Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddClass,Class_All,5; bonus bMatkRate,5; if ((eaclass()&EAJL_THIRD && BaseJob == Job_Knight) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Crusader))) { bonus bMaxHPrate,10; bonus2 bAddRace,RC_All,5; } if ((eaclass()&EAJL_THIRD && BaseJob == Job_Priest) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Monk))) { bonus bAspdRate,10; bonus2 bAddRace,RC_All,5; } if ((eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) || ((eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist))) { bonus bUseSPrate,-10; bonus2 bAddRace,RC_All,5; } - Id: 32227 AegisName: Fenrir_Chain Name: Fenrir Chain Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,5; bonus bDelayrate,-5; skill "AL_TELEPORT",1; - Id: 32228 AegisName: Schmidt_Insignia_Str Name: King Schmidt's Power Insignia Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bAtkRate,10; - Id: 32229 AegisName: Schmidt_Insignia_Int Name: King Schmidt's Divine Power Insignia Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bMatkRate,10; - Id: 32230 AegisName: Schmidt_Insignia_Luk Name: King Schmidt's Hundred Lucks Insignia Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bCritAtkRate,7; - Id: 32231 AegisName: Schmidt_Insignia_Vit Name: King Schmidt's Rigid Body Insignia Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bMaxHPrate,10; - Id: 32232 AegisName: Schmidt_Insignia_Agi Name: King Schmidt's Flash Insignia Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bAspdRate,5; - Id: 32233 AegisName: Schmidt_Insignia_Dex Name: King Schmidt's Celestial Insignia Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bLongAtkRate,7; - Id: 32234 AegisName: UnrivaledRing Name: Unrivaled Ring Type: Armor Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,5; bonus bMatkRate,5; bonus2 bAddEle,Ele_Wind,10; bonus2 bAddEle,Ele_Earth,10; bonus2 bMagicAddEle,Ele_Wind,10; bonus2 bMagicAddEle,Ele_Earth,10; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Earth,5; - Id: 32237 AegisName: Celine_Brooch_K Name: Celine's Brooch Type: Armor Buy: 10 Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatkRate,5; bonus bVariableCastrate,-10; - Id: 32238 AegisName: Morpheus_Ring_IL Name: Illusion Morpheus's Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bInt,3; bonus bMaxSPrate,5; - Id: 32239 AegisName: Morpheus_Armlet_IL Name: Illusion Morpheus's Bracelet Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bInt,3; bonus bMaxSPrate,5; - Id: 32242 AegisName: Old_DetachmentsRing_J Name: Old Detachment Ring Type: Armor Buy: 20 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,3; - Id: 32243 AegisName: Star_Force_Ring_TW Name: Magic Star Ring Type: Armor Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-20; bonus bAspd,1; bonus5 bAutoSpell,"WL_RECOGNIZEDSPELL",1,10,BF_MAGIC,0; bonus3 bAutoSpell,"MG_FIREBOLT",3,30; bonus3 bAutoSpell,"MG_COLDBOLT",3,30; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,30; - Id: 32245 AegisName: RingOfThought_TW Name: Thought Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,5; skill "AL_TELEPORT",1; - Id: 32246 AegisName: Main_Memory_JP Name: Main Memory Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bInt,3; bonus bDex,3; - Id: 32247 AegisName: Leo_Ring_J Name: Leo Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; bonus2 bSkillUseSP,"SR_SKYNETBLOW",2; bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-1500; if (eaclass()&EAJL_THIRD && BaseJob == Job_Monk) { bonus bAspd,5; bonus bAtkRate,5; bonus2 bSkillAtk,"SR_SKYNETBLOW",50; } - Id: 32248 AegisName: Ein_SAFETY_PENDR Name: Safety Pendant R Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,5; bonus bAllStats,5; - Id: 32249 AegisName: Ein_SAFETY_PENDL Name: Safety Pendant B Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAllStats,5; bonus bVariableCastrate,-5; - Id: 32250 AegisName: Ein_SAFETY_EPAULR Name: Safety Epaulet R Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAtkRate,5; - Id: 32251 AegisName: Ein_SAFETY_EPAULL Name: Safety Epaulet B Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bMatkRate,5; - Id: 32252 AegisName: H_AD_Clip Name: High Adventurer Clip Type: Armor Defense: 2 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 32253 AegisName: Cancer_Ring_J Name: Cancer Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bVit,5; bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; bonus2 bSkillVariableCast,"NC_AXEBOOMERANG",-1500; bonus2 bAddMonsterDropItem,731,30; bonus2 bAddMonsterDropItem,732,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Blacksmith) { bonus bAspdRate,5; bonus bAtkRate,5; bonus2 bSkillAtk,"NC_AXETORNADO",50; bonus2 bSkillAtk,"NC_AXEBOOMERANG",50; } - Id: 32258 AegisName: RingofJupiter Name: Ring of Jupiter Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@p = getitempos(); skill "AL_BLESSING",5; if (.@p == EQP_ACC_R) { bonus bBaseAtk,15*(readparam(bLuk)/10); bonus bMatk,15*(readparam(bLuk)/10); if (readparam(bLuk) >= 125) { bonus2 bAddClass,Class_Boss,15; bonus2 bMagicAddClass,Class_Boss,15; } } if (.@p == EQP_ACC_L) { bonus bMaxHPrate,2*(readparam(bVit)/10); bonus bMaxSPrate,2*(readparam(bVit)/10); if (readparam(bVit) >= 125) { bonus bDef,300; bonus bMdef,50; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; } } - Id: 32259 AegisName: CannonConverter_TW Name: Cannon Modifier Type: Armor Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,1; - Id: 32261 AegisName: Libra_Ring_J Name: Libra Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; bonus2 bSkillUseSP,"RK_DRAGONBREATH",10; bonus2 bSkillUseSP,"RK_DRAGONBREATH_WATER",10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; bonus bAtkRate,5; bonus2 bSkillAtk,"LK_SPIRALPIERCE",100; bonus2 bVariableCastrate,"LK_SPIRALPIERCE",-50; } - Id: 32262 AegisName: Ball_Of_RasenHuuma Name: Rasen Fuma's Orb Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,5; bonus bAgi,5; bonus bVit,5; bonus2 bAddClass,Class_All,5; if (getskilllv("KO_ZANZOU")>=5) { bonus2 bSkillAtk,"KO_HUUMARANKA",BaseLevel/4; bonus2 bSkillAtk,"NJ_HUUMA",2*(BaseLevel/4); } if (getskilllv("KO_KYOUGAKU")>=5) { bonus2 bSkillUseSP,"KO_HUUMARANKA",10; bonus2 bSkillCooldown,"KO_HUUMARANKA",-100; } if (getskilllv("KO_MUCHANAGE") == 10) { bonus2 bHPDrainRate,1000,1; } if (getskilllv("KO_MEIKYOUSISUI")>=5) { bonus bSPDrainValue,2; bonus2 bSkillCooldown,"KO_IZAYOI",-25000; } if (getskilllv("KO_SETSUDAN")>=5) { bonus2 bVariableCastrate,"KO_HUUMARANKA",-50; } - Id: 32263 AegisName: Shield_Ring Name: Shield Ring Type: Armor Buy: 20 Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus2 bAddClass,Class_All,5; if (getskilllv("LG_EARTHDRIVE") == 5) bonus bDelayrate,-30; if (getskilllv("LG_INSPIRATION") == 5) bonus2 bSkillCooldown,"LG_EARTHDRIVE",-1500; if (getskilllv("CR_DEVOTION") == 5) { bonus bStr,5; bonus bInt,5; bonus bDex,5; bonus bBaseAtk,100; } if (getskilllv("LG_PINPOINTATTACK") == 5) { bonus2 bSkillVariableCast,"LG_EARTHDRIVE",-500; bonus2 bSkillUseSP,"LG_EARTHDRIVE",25; } - Id: 32264 AegisName: Taurus_Ring_J Name: Taurus Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; bonus2 bSkillUseSP,"GN_CART_TORNADO",5; if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { bonus bAspdRate,5; bonus bAtkRate,5; bonus2 bSkillAtk,"GN_CARTCANNON",100; bonus2 bSkillAtk,"GN_CART_TORNADO",50; } - Id: 32265 AegisName: Tip_Of_Thief_Vol2 Name: Thief's Guide Vol.2 Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVit,5; bonus bDex,5; bonus bLuk,5; if (getskilllv("RG_GRAFFITI") == 1) { bonus bVit,5; bonus bDex,5; bonus bLuk,5; } if (getskilllv("SC_UNLUCKY") == 3) skill "HW_GANBANTEIN",1; if (getskilllv("SC_IGNORANCE") == 3) skill "PA_PRESSURE",5; if (getskilllv("SC_WEAKNESS") == 3) skill "PF_HPCONVERSION",1; if (getskilllv("SC_ENERVATION") == 3) skill "ASC_BREAKER",5; if (getskilllv("SC_GROOMY") == 3) skill "CR_CULTIVATION",2; if (getskilllv("SC_LAZINESS") == 3) skill "SN_SIGHT",5; - Id: 32266 AegisName: Aquarius_Ring_J Name: Aquarius Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bMatkRate,5; bonus2 bSkillUseSP,"WL_EARTHSTRAIN",30; if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { bonus bAspdRate,5; bonus2 bSkillAtk,"WL_HELLINFERNO",50; bonus2 bSkillAtk,"WL_EARTHSTRAIN",50; bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-300; bonus2 bVariableCastrate,"WL_HELLINFERNO",-50; } - Id: 32267 AegisName: Scorpio_Ring_J Name: Scorpio Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; bonus2 bSkillUseSP,"TF_BACKSLIDING",2; if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { bonus bAspdRate,5; bonus bAtkRate,5; bonus bPerfectHitAddRate,35; } - Id: 32270 AegisName: Luminous_Blue_Stone_TW Name: Luminous Blue Stone Type: Armor Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bAspdRate,5; bonus bCritical,5; skill "MG_SIGHT",1; bonus bCritAtkRate,5; if (readparam(bLuk)>=100) { bonus bCritical,5; bonus bCritAtkRate,5; } - Id: 32278 AegisName: Sealed_Ring_TW Name: Frozen Ring Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPrate,5; bonus bMdef,10; - Id: 32281 AegisName: Scorpion_Chain_EXE Name: Scorpion's Chain (OSM) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bAtkRate,3; bonus2 bSkillAtk,"NJ_KIRIKAGE",1+(BaseLevel/2); bonus bBaseAtk,5*(getskilllv("NJ_TOBIDOUGU")/2); if (getskilllv("NJ_NEN") == 5) bonus2 bVariableCastrate,"NJ_HUUMA",-25; if (getskilllv("NJ_HUUMA") == 5) bonus2 bSkillAtk,"NJ_HUUMA",25; - Id: 32282 AegisName: Erron_Black_Glove_EXE Name: Erron's Black Glove (OSM) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bAtkRate,3; bonus2 bSkillAtk,"GS_SPREADATTACK",1+BaseLevel; bonus bBaseAtk,5*(getskilllv("GS_SNAKEEYE")/2); if (getskilllv("GS_SINGLEACTION") == 10) bonus2 bSkillUseSPrate,"GS_DESPERADO",10; if (getskilllv("GS_DESPERADO") == 10) bonus2 bSkillAtk,"GS_DESPERADO",25; - Id: 32285 AegisName: Record_Mage_TW Name: Record of Destroy (Mage) Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bMdef,10; bonus bDelayrate,-5; bonus bMatkRate,5; - Id: 32286 AegisName: Record_Merchant_TW Name: Record of Destroy (Merchant) Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bMdef,10; bonus bDelayrate,-5; bonus bLongAtkRate,5; - Id: 32287 AegisName: Record_Thief_TW Name: Record of Destroy (Thief) Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bDelayrate,-5; bonus bAtkRate,5; - Id: 32288 AegisName: Record_Acol_TW Name: Record of Destroy (Acolyte) Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bDelayrate,-5; bonus bMaxHPrate,10; - Id: 32293 AegisName: Pollux_Ring_J Name: Pollux Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAllStats,5; bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus bAtkRate,5; bonus bPerfectHitAddRate,35; bonus2 bSkillAtk,"SG_SUN_WARM",100; bonus2 bSkillAtk,"SG_MOON_WARM",100; bonus2 bSkillAtk,"SG_STAR_WARM",100; } - Id: 32294 AegisName: Procyon_Ring_J Name: Procyon Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bMatkRate,5; if (eaclass()&EAJL_THIRD && BaseJob == Job_Soul_Linker) { bonus bAspdRate,5; bonus bMatkRate,5; bonus bVariableCastrate,-25; } - Id: 32295 AegisName: Crystal_Blade_Necklace Name: Crystal Blade Necklace Type: Armor Weight: 500 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,5; bonus bDex,5; bonus2 bAddRace,RC_All,10; skill "LK_AURABLADE",3; autobonus3 "{ bonus2 bAddEle,Ele_All,15; }",10,10000,"LK_AURABLADE"; /*Unknow Rate*/ - Id: 32296 AegisName: Crystal_Blade_Necklace_ Name: Crystal Blade Necklace Type: Armor Weight: 500 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,5; bonus bDex,5; bonus2 bAddRace,RC_All,10; skill "LK_AURABLADE",3; autobonus3 "{ bonus2 bAddEle,Ele_All,15; }",10,10000,"LK_AURABLADE"; /*Unknow Rate*/ - Id: 32300 AegisName: Variant_Handgun Name: Abyss Hand Gun Type: Weapon SubType: Revolver Weight: 350 Attack: 70 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 165 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,30; if (.@r>=7) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } if (.@r>=9) { bonus2 bAddRace,RC_All,5; bonus2 bSubRace,RC_Player_Human,5; } - Id: 32301 AegisName: Gold_Lux_IL Name: Illusion Gold Lux Type: Weapon SubType: Revolver Buy: 20 Weight: 1800 Attack: 160 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bHit,10; bonus bLongAtkRate,3*(.@r/2); if (.@r >= 7) { bonus2 bSkillAtk,"GS_DESPERADO",40; if (.@r >= 9) { bonus2 bSkillCooldown,"RL_HEAT_BARREL",-5000; if (.@r >= 11) { bonus2 bSkillAtk,"RL_FIREDANCE",30; } } } - Id: 32302 AegisName: Crimson_Rose Name: Crimson Rose Type: Weapon SubType: Revolver Buy: 20 Weight: 700 Attack: 150 Range: 7 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bAtkRate,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } } - Id: 32303 AegisName: Ein_1HGUN Name: Bolt Revolver Type: Weapon SubType: Revolver Weight: 1800 Attack: 200 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; bonus2 bSkillAtk,"RL_FIREDANCE",15; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,60; } if (.@r>=9) { bonus2 bSkillAtk,"RL_FIREDANCE",20; autobonus "{ bonus2 bAddSize,Size_All,20; }",1,10000,BF_WEAPON; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 32304 AegisName: R_Revolver Name: Royal Revolver Type: Weapon SubType: Revolver Weight: 700 Attack: 150 Range: 7 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,15; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillAtk,"RL_FIREDANCE",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; bonus2 bSkillCooldown,"RL_HEAT_BARREL",-5000; } - Id: 32305 AegisName: Titanium_Gun_EXE Name: Titanium Gun Type: Weapon SubType: Revolver Weight: 1200 Attack: 100 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bAgi,3; if (.@r>=5) { bonus bAspd,1; bonus bAtkRate,2; } if (.@r>=7) { bonus bBaseAtk,10; bonus bCritical,10; } if (.@r>=9) { bonus bBaseAtk,20; bonus3 bAutoSpell,"GS_PIERCINGSHOT",1,70; bonus bLongAtkRate,5; } if (.@r>=10) { bonus bAtkRate,3; bonus bMaxHP,600; bonus2 bAddRace,RC_All,2; } if (.@r>=12) { bonus bDelayrate,-5; bonus2 bAddRace,RC_All,3; } - Id: 32350 AegisName: Farthezan Name: Farthezan Type: Weapon SubType: 1hSword Buy: 20 Weight: 1100 Attack: 130 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"PA_PRESSURE",40; bonus bVariableCastrate,-.@r; if (.@r>=9) bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; bonus2 bSkillAtk,"PA_PRESSURE",20; } - Id: 32351 AegisName: Estal Name: Estal Type: Weapon SubType: 1hSword Buy: 20 Weight: 700 Attack: 195 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillCooldown,"GN_SPORE_EXPLOSION",-1000; bonus bBaseAtk,4*.@r; if (.@r>=11) .@val = 50; else if (.@r>=9) .@val = 30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",.@val; - Id: 32352 AegisName: Ein_1HSWORD Name: Safety Saber Type: Weapon SubType: 1hSword Weight: 2500 Attack: 200 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"GN_CARTCANNON",10; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,40; } if (.@r>=9) { bonus bLongAtkRate,5; /* note: 7 in description */ bonus2 bSkillAtk,"GN_CARTCANNON",15; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 32353 AegisName: G_Knight_JewelSword Name: Guardian Knight Jewel Sword Type: Weapon SubType: 1hSword Weight: 4000 Attack: 130 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r; bonus2 bSkillAtk,"CR_GRANDCROSS",2*.@r; if (.@r>=9) { bonus2 bSkillAtk,"LG_SHIELDPRESS",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bMagicAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; bonus2 bMagicAddRace,RC_Angel,20; } - Id: 32354 AegisName: Farthezan_J Name: Farthezan Type: Weapon SubType: 1hSword Buy: 200000 Weight: 1200 Attack: 150 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"CR_GRANDCROSS",30; - Id: 32355 AegisName: Estal_J Name: Estal Type: Weapon SubType: 1hSword Buy: 200000 Weight: 1200 Attack: 150 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",30; - Id: 32358 AegisName: Comp_Sword_Of_Bluefire Name: "[Not For Sale] Red Lotus Sword" Type: Weapon SubType: 1hSword Weight: 800 Attack: 180 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=9) bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; if (.@r>=11) bonus2 bSkillAtk,"GN_CARTCANNON",15; - Id: 32401 AegisName: R_Pillar Name: Royal Pillar Type: Weapon SubType: Mace Weight: 5000 Attack: 220 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; bonus bUnbreakableWeapon; bonus bLongAtkRate,.@r; if (.@r>=9) { bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",20; bonus2 bSkillAtk,"NC_ARMSCANNON",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 32402 AegisName: R_Syringe Name: Royal Syringe Type: Weapon SubType: Mace Weight: 1500 Attack: 210 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; bonus bUnbreakableWeapon; bonus bLongAtkRate,.@r; if (.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",20; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 32403 AegisName: G_Alchemist_Staff Name: Royal Alchemy Staff Type: Weapon SubType: Mace Weight: 1500 Attack: 200 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; bonus bUnbreakableWeapon; bonus bBaseAtk,4*.@r; if (.@r>=9) { bonus2 bSkillCooldown,"GN_CRAZYWEED",-1000; bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",30; } if (.@r>=11) { bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Angel,20; } - Id: 32404 AegisName: Engine_Pilebuncker_J Name: Engine pile bunker # !todo check english name Type: Weapon SubType: Mace Buy: 200000 Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"NC_ARMSCANNON",30; - Id: 32405 AegisName: Coolant_Injection_J Name: Coolant Injection Type: Weapon SubType: Mace Buy: 200000 Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"AM_ACIDTERROR",30; - Id: 32406 AegisName: Gene_Rod_J Name: Gene Rod Type: Weapon SubType: Mace Buy: 200000 Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",30; - Id: 32407 AegisName: Lucis_Flail_J Name: Lucis Flail Type: Weapon SubType: Mace Buy: 200000 Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"AL_HEAL",30; - Id: 32408 AegisName: Bright_Mace_J Name: Bright Mace Type: Weapon SubType: Mace Buy: 200000 Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",30; - Id: 400000 AegisName: WhistleK Name: Whistle Type: Armor View: 1478 Weight: 100 Jobs: All: true Novice: false Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 120 Script: | bonus bMatkRate,1; bonus bAtkRate,1; - Id: 400001 AegisName: Victory_Wing_Ear Name: Victory Wing Ears Type: Armor View: 1185 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 Script: | bonus bMatk,10; bonus bBaseAtk,10; bonus bDelayrate,-8; - Id: 400002 AegisName: Victory_Wing_Ear_ Name: Victory Wing Ears Type: Armor View: 1185 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 Script: | bonus bMatk,5; bonus bBaseAtk,5; bonus bDelayrate,-4; - Id: 400003 AegisName: TimeExtensionArmor Name: Time Extension (Rented) Type: Armor View: 15 Locations: Head_Top: true ArmorLevel: 1 Refineable: true - Id: 400006 AegisName: Orcsuccessionhelm_TW Name: Heritage Symbol of the Orcs Type: Armor View: 381 Weight: 500 Defense: 50 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bAllStats,1; bonus bMdef,10; bonus bMaxHPrate,3*(.@r/4); bonus2 bSubRace,RC_All,4*(.@r/4); - Id: 400011 AegisName: Officer_Cap Name: Officer's Hat Type: Armor View: 1759 Weight: 400 Defense: 35 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus2 bHPLossRate,10,5000; bonus bMatk,5*(.@r/2); bonus bBaseAtk,5*(.@r/2); if (.@r>=7) { bonus bMatkRate,5; bonus bAtkRate,5; } if (.@r>=9) { bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,3; autobonus "{ bonus2 bHPRegenRate,300,1000; }",40,4000,BF_MAGIC; autobonus "{ bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC; } - Id: 400014 AegisName: 2019RTC_CeleAura_TW Name: 2019 RTC Memorial Poring Pool Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1908 Script: | bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Brute,2; hateffect HAT_EF_2019RTC_CeleAura_TW,true; UnEquipScript: | hateffect HAT_EF_2019RTC_CeleAura_TW,false; - Id: 400015 AegisName: Capricon_Diadem_J Name: Capricon Diadem Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 622 Script: | .@r = getrefine(); bonus bUnbreakableHelm; bonus bMdef,15; bonus bDex,10; bonus bBaseAtk,50; bonus bMatk,50; bonus bHit,20; bonus2 bMagicAddRace,RC_All,10; bonus2 bAddRace,RC_All,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) { bonus bFlee2,10; bonus bHPGainValue,500; bonus bSPGainValue,50; if (.@r>=8) { bonus bAllStats,10; bonus2 bHPRegenRate,500,5000; bonus2 bSPRegenRate,50,5000; } } - Id: 400016 AegisName: Turkey_Hat Name: Turkey Hat Type: Armor Locations: Head_Top: true ArmorLevel: 1 Refineable: true - Id: 400017 AegisName: Kukulkan_Head_TW Name: Kukulkan Skull Type: Armor Weight: 4500 Defense: 50 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 319 Script: | .@r = getrefine(); bonus bVit,2; bonus2 bSubRace,RC_All,3; bonus bMaxSPrate,-10; bonus2 bSubRace,RC_DemiHuman,(min(10,.@r)); bonus2 bSubRace,RC_Player_Human,(min(10,.@r)); bonus2 bSubRace,RC_Player_Doram,(min(10,.@r)); if (.@r>=7) bonus bMaxHPrate,5; if (.@r>=9) bonus bShortWeaponDamageReturn,10; if (.@r>=11) bonus bAspd,1; if (.@r>=13) autobonus2 "{ bonus2 bMagicSubDefEle,Ele_All,40; bonus2 bMagicSubDefEle,Ele_Neutral,-40; }",50,3000,BF_MAGIC; - Id: 400018 AegisName: NettyHeart_Gum_TW Name: Love Bubble Gum Type: Armor View: 720 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bHPDrainRate,10,1; - Id: 400020 AegisName: C_BeachBall Name: Costume Beachball Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1918 - Id: 400021 AegisName: Clock_Casket_RD Name: Red Clark Casquette Type: Armor View: 1777 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bShortAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 400022 AegisName: Ignis_CapK Name: Ignis Cap Type: Armor View: 803 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 400023 AegisName: Dolor_HatK Name: Drooping Thanatos's Dolor Type: Armor View: 547 Weight: 100 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Dragon,10+.@r/2; bonus2 bAddRace,RC_Angel,10+.@r/2; bonus2 bMagicAddRace,RC_Dragon,10+.@r/2; bonus2 bMagicAddRace,RC_Angel,10+.@r/2; bonus2 bAddEle,Ele_Holy,10+.@r/2; bonus2 bAddEle,Ele_Dark,10+.@r/2; bonus2 bMagicAddEle,Ele_Holy,10+.@r/2; bonus2 bMagicAddEle,Ele_Dark,10+.@r/2; bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r>=7) { bonus bMatkRate,5; bonus bAtkRate,5; } if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus bDelayrate,-15; } - Id: 400043 AegisName: Fallen_Angel_feather Name: Fallen Angel Hairband Type: Armor Weight: 100 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 907 Script: | .@r = getrefine(); bonus bAllStats,1; bonus2 bSubEle,Ele_Holy,-20; bonus2 bSubRace,RC_Angel,-15; bonus2 bSubRace,RC_Demon,6; bonus2 bSubRace,RC_DemiHuman,6; bonus2 bSubRace,RC_Player_Human,6; bonus2 bSubRace,RC_Player_Doram,6; - Id: 400044 AegisName: Phantom_Cap Name: Phantom of Masquerade Type: Armor View: 1899 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - Id: 400045 AegisName: C_Pierced_Apple Name: Pierced Apple Type: Armor View: 1952 Locations: Head_Top: true ArmorLevel: 1 Refineable: true - Id: 400046 AegisName: C_Pierced_Apple_ Name: Costume Pierced Apple Type: Armor View: 1952 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 400047 AegisName: Runaway_Accelerator Name: Runaway Accelerator Type: Armor Buy: 20 Weight: 700 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1947 Script: | .@r = getrefine(); bonus bAtkRate,.@r; bonus bMatkRate,.@r; bonus2 bSubClass,Class_Normal,10; bonus2 bSubClass,Class_Boss,10; bonus2 bHPRegenRate,250,5000; bonus2 bSPRegenRate,30,5000; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,25; bonus2 bIgnoreMdefRaceRate,RC_All,25; bonus2 bSubClass,Class_Normal,5; bonus2 bSubClass,Class_Boss,5; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,25; bonus2 bIgnoreMdefRaceRate,RC_All,25; bonus2 bSubClass,Class_Normal,5; bonus2 bSubClass,Class_Boss,5; } - Id: 400048 AegisName: Gift_of_Panagia Name: Gift of Panagia Type: Armor View: 1948 Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bVit,5; bonus bInt,5; bonus bHealPower,10; bonus2 bResEff,Eff_Stun,5000; if (.@r>=7) { bonus bDelayrate,-20; bonus bHealPower,10; } if (.@r>=9) bonus bHealPower,20; if (.@r>=10) bonus bUseSPrate,-20; - Id: 400049 AegisName: Stripe_Hat Name: Stripe Hat Type: Armor View: 1728 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 400050 AegisName: Gothic_Skull_Ribbon Name: Gothic Skull Ribbon Type: Armor Buy: 20 Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1885 Script: | .@r = getrefine(); bonus2 bMagicAddClass,Class_Boss,(.@r>=8?40:(.@r>=6?25:10)); if (.@r>=8) bonus bNoKnockback; - Id: 400051 AegisName: Golden_Violet Name: Golden Violet Type: Armor Buy: 20 Weight: 1000 Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1886 Script: | .@r = getrefine(); bonus bAllStats,10; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; if (.@r>=7) bonus bAllStats,20; if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 400052 AegisName: Duel_Dragon_Hat Name: Duel Dragon Hat Type: Armor Buy: 200000 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1149 Script: | .@r = getrefine(); .@a = ((.@r >= 9) ? 50 : ((.@r >= 7) ? 30 : 15)); .@b = ((.@r >= 10) ? 150 : ((.@r >= 9) ? 50 : ((.@r >= 7) ? 30 : 15))); bonus2 bSubEle,Ele_Fire,10; bonus2 bAddDamageClass,20346,.@b; bonus2 bAddDamageClass,20347,.@b; bonus2 bAddDamageClass,20348,.@a; bonus2 bAddDamageClass,20349,.@a; bonus2 bAddDamageClass,20350,.@a; bonus2 bAddMagicDamageClass,20346,.@b; bonus2 bAddMagicDamageClass,20347,.@b; bonus2 bAddMagicDamageClass,20348,.@a; bonus2 bAddMagicDamageClass,20349,.@a; bonus2 bAddMagicDamageClass,20350,.@a; bonus2 bAddDefMonster,20346,.@a; bonus2 bAddDefMonster,20347,.@a; bonus2 bAddDefMonster,20348,.@a; bonus2 bAddDefMonster,20349,.@a; bonus2 bAddDefMonster,20350,.@a; if (.@r>=8) bonus2 bSubEle,Ele_Fire,15; if (.@r>=10) bonus bNoKnockback; - Id: 400053 AegisName: Morrigane_Helm_IL Name: Illusion Morrigane's Helm Type: Armor View: 257 Weight: 500 Defense: 15 Slots: 1 Jobs: All: true Novice: false Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bCritical,5; bonus bStr,5; if (.@r>=7) { bonus bBaseAtk,50; } if (.@r>=9) { bonus bAspdRate,10; } - Id: 400054 AegisName: Large_Sorcerer_Crown Name: Great Magician's Ceremonial Crown Type: Armor View: 1811 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - Id: 400055 AegisName: C_ShineSantaPoringE Name: Costume Shiny Santa Poring Hat Type: Armor View: 961 Jobs: All: true Novice: false Locations: Costume_Head_Top: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bExpAddClass,Class_All,10; - Id: 400056 AegisName: C_VIP_Hair_Female Name: "Costume: Blue Devil Wig" Type: Armor View: 1990 Locations: Costume_Head_Low: true ArmorLevel: 1 Script: | hateffect HAT_EF_VIP_HAIR,true; UnEquipScript: | hateffect HAT_EF_VIP_HAIR,false; - Id: 400057 AegisName: C_VIP_Hair_Male Name: "Costume: Red Lotus Demon Wig" Type: Armor View: 1989 Locations: Costume_Head_Low: true ArmorLevel: 1 Script: | hateffect HAT_EF_VIP_HAIR,true; UnEquipScript: | hateffect HAT_EF_VIP_HAIR,false; - Id: 400059 AegisName: Scorpio_Diadem_K Name: Scorpio Celestial Coronet Type: Armor View: 606 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - Id: 400060 AegisName: Freyja_Crown_J Name: Shiny Kitty Crown Type: Armor View: 328 Weight: 1000 Defense: 18 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bDelayrate,-10; bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",10; bonus bHPGainValue,30*.@r; bonus bSPGainValue,3*.@r; bonus bAspdRate,3*getskilllv("SU_CHATTERING"); if (getskilllv("SU_SPIRITOFLAND") == 1) { .@val = -4*(getskilllv("SU_CN_POWDERING")+getskilllv("SU_CN_METEOR")+getskilllv("SU_NYANGGRASS")+getskilllv("SU_SV_STEMSPEAR")+getskilllv("SU_SV_ROOTTWIST")); bonus2 bVariableCastrate,"SU_CN_METEOR",.@val; bonus2 bVariableCastrate,"SU_SV_STEMSPEAR",.@val; } if (getskilllv("SU_NYANGGRASS") == 5) bonus bDelayrate,-20; if (getskilllv("SU_MEOWMEOW") == 5) bonus2 bMagicAddClass,Class_Boss,25; if (.@r>=7) { bonus2 bVariableCastrate,"SU_STOOP",-50; bonus2 bVariableCastrate,"SU_LOPE",-50; bonus2 bSkillAtk,"SU_CN_METEOR",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; } if (.@r>=9) { bonus2 bVariableCastrate,"SU_STOOP",-50; bonus2 bVariableCastrate,"SU_LOPE",-50; bonus2 bSkillAtk,"SU_CN_METEOR",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=10) autobonus "{ bonus bUseSPrate,-100; }",20,20000,BF_MAGIC; - Id: 400061 AegisName: Sagittarius_DiademK Name: Sagittarius Celestial Coronet Type: Armor View: 618 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; } - Id: 400064 AegisName: JP_Helm22_L Name: Rental Owl Viscount Silk Hat Type: Armor View: 1323 Weight: 500 Defense: 15 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bInt,2; bonus bAspdRate,10; bonus bMatk,7*.@r; autobonus "{ .@r = getrefine(); bonus bAspdRate,(.@r >= 9 ? 40 : ((.@r >= 7) ? 10 : ((.@r >= 5) ? 5 : 0))); }",20,30000,BF_MAGIC,"{ specialeffect2 EF_SPELLBREAKER; }"; - Id: 400070 AegisName: JP_Helm28_L Name: Rental Crown of the Phoenix Type: Armor Weight: 1000 Defense: 18 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1056 Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,10; bonus bVariableCastrate,-((.@r>=9)?20:(.@r>=7?15:10)); bonus2 bSkillAtk,"LG_OVERBRAND",((.@r>=9)?50:(.@r>=7?25:10)); bonus2 bFixedCastrate,"LG_OVERBRAND",-100; if (getskilllv("LG_KINGS_GRACE") == 5) { bonus2 bSkillVariableCast,"LG_INSPIRATION",-2000; bonus2 bSkillCooldown,"LG_INSPIRATION",-10000; } if (getskilllv("LG_MOONSLASHER") == 5) bonus2 bSkillVariableCast,"LG_OVERBRAND",-1000; if (getskilllv("LG_FORCEOFVANGUARD") == 5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDef,150; bonus bMdef,15; } if (.@r>=10) bonus2 bIgnoreDefRaceRate,RC_All,100; - Id: 400073 AegisName: C_Romance_Rose_TW Name: Costume Romantic Rose Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 Script: | hateffect HAT_EF_C_ROMANCE_ROSE_TW,true; UnEquipScript: | hateffect HAT_EF_C_ROMANCE_ROSE_TW,false; - Id: 400074 AegisName: C_Disapear_Time_TW Name: Costume Lost Time Type: Armor View: 1998 Locations: Costume_Head_Top: true ArmorLevel: 1 - Id: 400075 AegisName: Astraea_Helm_TW Name: Asteria's Helm Type: Armor View: 468 Weight: 200 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; if (.@r>=7) bonus bMaxHPrate,5; if (.@r>=9) bonus2 bSubEle,Ele_All,5; if (.@r>=10) bonus2 bSubClass,Class_All,5; if (.@r>=11) bonus2 bSubSize,Size_All,5; if (.@r>=12) bonus2 bSubRace,RC_All,5; - Id: 400076 AegisName: C_20th_Anniversary Name: Costume Gravity's 20th Anniversary Balloon Type: Armor View: 2005 Locations: Costume_Head_Low: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400077 AegisName: Cat_Shampoo_Hat Name: Splash Cat Hat Type: Armor View: 507 Weight: 1000 Buy: 20 Defense: 18 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableHelm; .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (getskilllv("SU_SPIRITOFSEA") >= 1) skill "AL_PNEUMA",1; if (getskilllv("SU_SHRIMPARTY") >= 5) { bonus bMaxHPrate,30; bonus bMaxSPrate,30; } if (getskilllv("SU_GROOMING") >= 5) { bonus2 bResEff,Eff_Confusion,10000; bonus2 bResEff,Eff_Silence,10000; } bonus bHealPower2,20*getskilllv("SU_PURRING"); bonus bDef,50*.@r; if (.@r >= 7) { bonus bDelayrate,-10; bonus2 bVariableCastrate,"SU_STOOP",-50; bonus2 bVariableCastrate,"SU_LOPE",-50; bonus2 bSubClass,Class_Boss,10; } if (.@r >= 9) { bonus bDelayrate,-10; bonus2 bVariableCastrate,"SU_STOOP",-50; bonus2 bVariableCastrate,"SU_LOPE",-50; bonus2 bSubClass,Class_Boss,10; } if (.@r >= 10) autobonus3 "{ bonus bFlee2,100; }",1000,3000,"SU_TUNAPARTY"; - Id: 400078 AegisName: BioWeapon_Helm_RK Name: Goral Crown Type: Armor View: 532 Weight: 100 Defense: 10 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - Id: 400079 AegisName: BioWeapon_Helm_LG Name: Trial Diadem Type: Armor View: 594 Weight: 100 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus bAtkRate,15; } if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 400080 AegisName: C_Kriemhild_Crown_TW Name: Costume Kriemhild Crown # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1056 - Id: 400081 AegisName: C_2020RTC_Imp_TW Name: Costume 2020RTC Naughty Ghost # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2009 - Id: 400082 AegisName: 2020RTC_Imp_TW Name: 2020RTC Naughty Ghost # !todo check english name Type: Armor View: 2009 Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bAddEffWhenHit,Eff_Freeze,100; if (.@r>=9) { bonus bFixedCast,-100*.@r; bonus bAtkRate,2*.@r; bonus bMatkRate,2*.@r; bonus bLongAtkRate,2*.@r; bonus bHealPower2,3*.@r; bonus bCritAtkRate,5*.@r; bonus bCritical,3*.@r; } - Id: 400083 AegisName: 2020maypay_01 Name: The Truth of Creation and Soul Type: Armor Weight: 100 Defense: 20 Slots: 1 Jobs: SoulLinker: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 840 Script: | .@r = getrefine(); if (eaclass()&EAJL_THIRD && BaseJob == Job_Star_Gladiator) { bonus bBaseAtk,10*.@r; bonus bFixedCast,-100*(.@r/3); if (.@r>=7) bonus bAtkRate,7; if (.@r>=9) { bonus2 bAddSize,Size_Small,7; bonus2 bAddSize,Size_Large,7; } if (.@r>=11) autobonus3 "{ bonus bCritAtkRate,20; }",1000,20000,"SJ_LIGHTOFSTAR"; if (.@r>=12) { bonus2 bSkillCooldown,"SJ_BOOKOFDIMENSION",-5000; bonus2 bSkillCooldown,"SJ_LIGHTOFSTAR",30000; } } if (eaclass()&EAJL_THIRD && BaseJob == Job_Soul_Linker) { bonus2 bSkillAtk,"SP_CURSEEXPLOSION",5*.@r; bonus bFixedCast,-100*(.@r/3); if (.@r>=7) bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Wind,20; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Ghost,20; bonus2 bMagicAtkEle,Ele_Holy,20; } if (.@r>=12) { bonus2 bSkillCooldown,"SP_CURSEEXPLOSION",-500; bonus2 bSkillCooldown,"SP_SOULREAPER",-30000; } } - Id: 400084 AegisName: 2020maypay_02 Name: Genlin Heirs Type: Armor Weight: 200 Defense: 20 Slots: 1 Jobs: KagerouOboro: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1047 Script: | .@r = getrefine(); if (eaclass()&EAJL_THIRD && BaseJob == Job_Kagerou) { bonus bBaseAtk,10*.@r; bonus bDelayrate,-2*(.@r/3); bonus bLongAtkRate,3*(.@r/3); if (.@r>=7) bonus2 bAddRace,RC_All,7; if (.@r>=9) bonus2 bSkillAtk,"KO_HUUMARANKA",20; if (.@r>=11) bonus2 bSkillCooldown,"KO_HUUMARANKA",-500; } if (eaclass()&EAJL_THIRD && BaseJob == Job_Oboro) { bonus bMatk,10*.@r; bonus bVariableCastrate,-5*(.@r/3); bonus bMatkRate,3*(.@r/3); if (.@r>=7) bonus2 bMagicAddRace,RC_All,7; if (.@r>=9) skill "KG_KAGEHUMI",3; if (.@r>=11) autobonus3 "{ bonus bMatk,100; }",1000,40000,"KO_IZAYOI"; } - Id: 400085 AegisName: 2020maypay_03 Name: Elite Force Cap Type: Armor Weight: 200 Defense: 20 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 236 Script: | .@r = getrefine(); bonus bDex,.@r; bonus bMaxHPrate,2*(.@r/3); bonus bLongAtkRate,3*(.@r/3); if (.@r>=7) bonus bAtkRate,7; if (.@r>=9) bonus2 bSkillAtk,"RL_FIRE_RAIN",30; if (.@r>=11) bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1500; - Id: 400086 AegisName: 2020maypay_04 Name: The Meow Family's Paycheck Type: Armor Weight: 200 Defense: 20 Slots: 1 Jobs: Spirit_Handler: true Summoner: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1594 Script: | .@r = getrefine(); bonus bBaseAtk,7*.@r; bonus bMatk,7*.@r; bonus bLongAtkRate,3*(.@r/3); bonus bMatkRate,3*(.@r/3); if (.@r>=7) { bonus2 bAddRace,RC_All,7; bonus2 bMagicAddRace,RC_All,7; } if (.@r>=9) { bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-500; bonus2 bSkillCooldown,"SU_NYANGGRASS",-30000; if (getskilllv("SU_SPIRITOFSEA") == 1) { bonus5 bAutoSpell,"SU_LUNATICCARROTBEAT",5,10,BF_SHORT|BF_LONG,1; bonus5 bAutoSpell,"SU_CN_METEOR",5,10,BF_SHORT|BF_LONG,1; } } if (.@r>=11) bonus bDelayrate,-10; if (.@r>=12) { if (getskilllv("SU_SPIRITOFSEA") == 1) skill "CR_REFLECTSHIELD",5; } - Id: 400087 AegisName: 2020maypay_05 Name: Potential to Inspire Adventure Cap Type: Armor Weight: 200 Defense: 20 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 193 Script: | .@r = getrefine(); bonus bBaseAtk,10*.@r; bonus bMatk,10*.@r; bonus bMaxHP,1000*.@r; bonus2 bIgnoreDefClassRate,Class_Normal,5*(.@r/3); bonus2 bIgnoreMdefClassRate,Class_Normal,5*(.@r/3); if (.@r>=7) { bonus2 bAddRace,RC_All,7; bonus2 bMagicAddRace,RC_All,7; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,40; bonus2 bMagicAtkEle,Ele_Dark,40; } if (.@r>=11) { bonus5 bAutoSpell,"RK_STORMBLAST",1,20,BF_SHORT,1; bonus2 bSkillCooldown,"WZ_VERMILION",-4000; bonus2 bSkillCooldown,"WZ_STORMGUST",-5000; } if (.@r>=12) { skill "WL_RECOGNIZEDSPELL",1; skill "BS_MAXIMIZE",3; bonus bDelayrate,-20; } - Id: 400088 AegisName: 2020RTC_01 Name: 2020RTC Gold Naughty Ghost Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Refineable: true View: 2012 Script: | .@r = getrefine(); bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bSubRace,RC_Player_Human,15; bonus2 bSubRace,RC_Player_Doram,15; bonus2 bSubRace,RC_Brute,15; bonus2 bAddEffWhenHit,Eff_Freeze,5000; bonus bFixedCast,-100*(.@r/2); bonus bAtkRate,3*(.@r/2); bonus bMatkRate,3*(.@r/2); bonus bHealPower,5*(.@r/2); bonus bCritAtkRate,10*(.@r/2); bonus bCritical,3*(.@r/2); bonus2 bWeaponDamageRate,W_BOW,4*(.@r/2); hateffect HAT_EF_2020RTC_01,true; UnEquipScript: | hateffect HAT_EF_2020RTC_01,false; - Id: 400089 AegisName: 2020RTC_02 Name: 2020RTC Silver Naughty Ghost Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Refineable: true View: 2013 Script: | .@r = getrefine(); bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,13; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Brute,13; bonus2 bAddEffWhenHit,Eff_Freeze,3000; bonus bFixedCast,-100*(.@r/2); bonus bAtkRate,3*(.@r/2); bonus bMatkRate,3*(.@r/2); bonus bHealPower,4*(.@r/2); bonus bCritAtkRate,8*(.@r/2); bonus bCritical,3*(.@r/2); bonus2 bWeaponDamageRate,W_BOW,3*(.@r/2); hateffect HAT_EF_2020RTC_02,true; UnEquipScript: | hateffect HAT_EF_2020RTC_02,false; - Id: 400090 AegisName: 2020RTC_03 Name: 2020RTC Bronze Naughty Ghost Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true EquipLevelMin: 100 Refineable: true View: 2014 Script: | .@r = getrefine(); bonus bIntravision; bonus2 bSubRace,RC_DemiHuman,11; bonus2 bSubRace,RC_Player_Human,11; bonus2 bSubRace,RC_Player_Doram,11; bonus2 bSubRace,RC_Brute,11; bonus2 bAddEffWhenHit,Eff_Freeze,1000; bonus bFixedCast,-150*(.@r/3); bonus bAtkRate,3*(.@r/3); bonus bMatkRate,3*(.@r/3); bonus bHealPower,4*(.@r/3); bonus bCritAtkRate,8*(.@r/3); bonus bCritical,3*(.@r/3); bonus2 bWeaponDamageRate,W_BOW,3*(.@r/3); hateffect HAT_EF_2020RTC_03,true; UnEquipScript: | hateffect HAT_EF_2020RTC_03,false; - Id: 400091 AegisName: C_Gray_Helmet Name: Costume Gray Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 941 - Id: 400092 AegisName: C_L_Magestic_Goat2 Name: Costume Luxurious Horns Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 513 - Id: 400093 AegisName: C_18y_Hat_TW Name: Costume Ragnarok 18th Anniversary Headwear Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2015 - Id: 400094 AegisName: BioWeapon_Helm_WL Name: Jade Crown Type: Armor View: 510 Weight: 100 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bSPrecovRate,6*(.@r/2); bonus bMatkRate,2*(.@r/2); if (.@r>=7) { bonus bAllStats,3; } if (.@r>=9) { bonus bMatkRate,4; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Ghost,20; bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Fire,20; } - Id: 400095 AegisName: BioWeapon_Helm_SO Name: Spinel Diadem Type: Armor View: 509 Weight: 100 Defense: 10 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bSPrecovRate,6*(.@r/2); bonus bMatkRate,2*(.@r/2); if (.@r>=7) { bonus bAllStats,3; } if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Water,20; } - Id: 400097 AegisName: Egirnion_Helm Name: Aegirnion Helm Type: Armor View: 870 Weight: 800 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true Script: | bonus bUnbreakableHelm; bonus bMatkRate,7; bonus bAtkRate,7; if (getrefine()>=9) { bonus bMatk,40; bonus bBaseAtk,40; } - Id: 400098 AegisName: BioWeapon_Helm_NC Name: Bull Crown Type: Armor View: 536 Weight: 100 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - Id: 400099 AegisName: BioWeapon_Helm_GN Name: Taurus Diadem Type: Armor View: 535 Weight: 100 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - Id: 400100 AegisName: aegis_400100 Name: Costume Leon Wig Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2373 - Id: 400101 AegisName: GatesofNetherworld Name: Gate of Netherworld Type: Armor Weight: 100 Defense: 12 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 View: 2016 Refineable: true Script: | .@r = getrefine(); bonus bAgi,5; bonus bInt,5; bonus bDef,3; bonus bMdef,10; bonus2 bAddRace,RC_All,10; bonus2 bMagicAddRace,RC_All,10; if (.@i>=7) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; bonus bFixedCastrate,-50; } if (.@i>=9) { bonus bAspdRate,15; bonus bFixedCastrate,-70; } - Id: 400103 AegisName: Fletus_Tiara_MT Name: Costume Phoenix Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1056 - Id: 400104 AegisName: Fletus_Tiara_BO Name: Odin Mask (Middle) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 480 - Id: 400105 AegisName: Glacier_Helm_1 Name: Issgard Warrior Crown Type: Armor Weight: 300 Defense: 80 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true View: 1106 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bShortAtkRate,10; bonus bAtkRate,3*(.@r/2); bonus2 bAddSize,Size_All,4*(.@r/3); if (.@r>=7) { bonus bDelayrate,-8; if (.@r>=9) { bonus bShortAtkRate,10; bonus bPAtk,10; } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus bMdef,30; bonus bDef,150; if (.@g>=ENCHANTGRADE_B) { bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; } } } } - Id: 400106 AegisName: Glacier_Helm_2 Name: Issgard Magician Crown Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true View: 1107 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bMagicAtkEle,Ele_All,10; bonus bMatkRate,3*(.@r/2); bonus2 bMagicAddSize,Size_All,4*(.@r/3); if (.@r>=7) { bonus bDelayrate,-8; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus bSMatk,10; } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus bMdef,30; bonus bDef,150; if (.@g>=ENCHANTGRADE_B) { bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; } } } } - Id: 400107 AegisName: Glacier_Helm_3 Name: Issgard Ranger Crown Type: Armor Weight: 200 Defense: 50 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true View: 1108 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bLongAtkRate,10; bonus bAtkRate,3*(.@r/2); bonus2 bAddSize,Size_All,4*(.@r/3); if (.@r>=7) { bonus bDelayrate,-8; if (.@r>=9) { bonus bLongAtkRate,10; bonus bPAtk,10; } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus bMdef,30; bonus bDef,150; if (.@g>=ENCHANTGRADE_B) { bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; } } } } - Id: 400109 AegisName: Fletus_Tiara_SHC Name: Boitata Hat Type: Armor Weight: 400 Defense: 25 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true View: 808 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bHit,-25; bonus bPow,5; bonus bCrt,5; bonus bAspdRate,10; bonus bBaseAtk,20*(.@r/2); bonus bDef,10*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,15; bonus bLongAtkRate,15; if (.@r>=9) { bonus bAtkRate,10; bonus bBaseAtk,30; if (.@r>=11) { bonus bCritAtkRate,25; bonus bPAtk,8; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bPow,5; if (.@g>=ENCHANTGRADE_C) { bonus bCRate,3; bonus bCritical,15; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-300; if (.@g>=ENCHANTGRADE_A) { bonus bCritAtkRate,14*(.@r/3); bonus bCRate,(.@r/3); } } } } - Id: 400110 AegisName: Fletus_Tiara_ABC Name: Crown of Beelzebub Type: Armor Weight: 400 Defense: 45 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true View: 1343 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-15; bonus bPow,5; bonus bCon,5; bonus bAspdRate,10; bonus bBaseAtk,25*(.@r/2); bonus bDef,15*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,25; bonus bLongAtkRate,25; if (.@r>=9) { bonus bAtkRate,10; bonus bBaseAtk,40; if (.@r>=11) { bonus2 bAddEle,Ele_All,12; bonus bPAtk,12; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bPow,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,12; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-300; bonus bPAtk,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddRace,RC_All,3*(.@r/3); bonus2 bAddRace,RC_Player_Human,-3*(.@r/3); bonus2 bAddRace,RC_Player_Doram,-3*(.@r/3); bonus bPAtk,2*(.@r/3); } } } } - Id: 400111 AegisName: VesperHeadGear_ Name: Vesper Headgear Type: Armor Weight: 400 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true View: 1827 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxSPrate,-10; bonus bSpl,5; bonus bCon,5; bonus bVariableCastrate,-10; bonus bMatk,25*(.@r/2); bonus bDef,10*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,25; if (.@r>=9) { bonus bMatkRate,10; bonus bMatk,40; if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,12; bonus bSMatk,12; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; bonus bSpl,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,12; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-500; bonus bSMatk,2; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddRace,RC_All,3*(.@r/3); bonus2 bMagicAddRace,RC_Player_Human,-3*(.@r/3); bonus2 bMagicAddRace,RC_Player_Doram,-3*(.@r/3); bonus bSMatk,2*(.@r/3); } } } } - Id: 400113 AegisName: Victory_Ear_JP Name: Victory Wing Ear Type: Armor Weight: 300 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1185 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bResEff,Eff_Confusion,10000; bonus2 bMagicAddSize,Size_All,10; if (getskilllv("AB_ADORAMUS") >= 10) bonus bNoGemStone; if (getskilllv("AB_PRAEFATIO") >= 10) bonus bDelayrate,-15; - Id: 400114 AegisName: Victory_Ear_JP_ Name: Victory Wing Ear Type: Armor Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1185 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bResEff,Eff_Confusion,10000; bonus2 bMagicAddSize,Size_All,10; if (getskilllv("AB_ADORAMUS") >= 10) bonus bNoGemStone; if (getskilllv("AB_PRAEFATIO") >= 10) bonus bDelayrate,-15; - Id: 400115 AegisName: C_Rag_Origin_Hat Name: Costume Angeling Bread Hat Type: Armor View: 2019 Locations: Costume_Head_Top: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400116 AegisName: BioWeapon_Helm_RA Name: Celestial Jewel Crown Type: Armor View: 574 Weight: 100 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - Id: 400117 AegisName: BioWeapon_Helm_WM Name: Libra Crown Type: Armor View: 593 Weight: 100 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bLongAtkRate,15; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; bonus2 bAddSize,Size_All,10; } - Id: 400118 AegisName: BioWeapon_Helm_AB Name: Saint Crown Type: Armor View: 560 Weight: 100 Defense: 10 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus bMatkRate,15; bonus bAtkRate,15; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; bonus2 bAddSize,Size_All,10; } - Id: 400119 AegisName: BioWeapon_Helm_SR Name: Lion Crown Type: Armor View: 565 Weight: 100 Defense: 10 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bMaxHPrate,10; } if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - Id: 400120 AegisName: BioWeapon_Helm_SC Name: Goat Crown Type: Armor View: 621 Weight: 100 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bMatkRate,15; bonus bAtkRate,15; } if (.@r>=11) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 400121 AegisName: BioWeapon_Helm_GC Name: Twin Crown Type: Armor View: 551 Weight: 100 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 170 Refineable: true Flags: DropEffect: CLIENT Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } if (.@r>=9) { bonus bLongAtkRate,15; } if (.@r>=11) { bonus2 bAddSize,Size_All,10; } - Id: 400122 AegisName: Summer_Promo_Helm1 Name: Booster Power Hat (Physical) Type: Armor Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1601 Script: | .@r = getrefine(); bonus bBaseAtk,25; bonus bAspdRate,5; if (.@r>=9) bonus bBaseAtk,25; if (BaseLevel>=100) bonus bAtkRate,7; - Id: 400123 AegisName: Summer_Promo_Helm2 Name: Booster Power Hat (Magical) Type: Armor Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 1294 Script: | .@r = getrefine(); bonus bMatk,25; bonus bVariableCastrate,-5; if (.@r>=9) bonus bMatk,25; if (BaseLevel>=100) bonus bMatkRate,7; - Id: 400124 AegisName: C_Magestic_Goat2 Name: Costume Majestic Goat of Dawn Type: Armor View: 513 Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400125 AegisName: The_Kings_Hat Name: Hat of Ancient Kings Type: Armor Weight: 900 Defense: 15 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 334 Script: | .@r = getrefine(); bonus bBaseAtk,30; bonus bMaxHP,200*(.@r/2); if (.@r>=7) bonus2 bSubSize,Size_All,5; if (.@r>=9) { bonus bMaxHP,500; bonus bAtkRate,5; } - Id: 400126 AegisName: C_CAPOORING_TW Name: Costume Capooring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2021 - Id: 400127 AegisName: Ep18_Mini_Elly Name: Mini Elly Type: Armor Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 2077 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400128 AegisName: C_Ep18_Mini_Elly Name: Costume Dropping Elly Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2077 - Id: 400129 AegisName: C_Puriku_Cap Name: Costume Puriku Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2076 - Id: 400131 AegisName: C_Diadem_Of_Bruenhild Name: Costume Diadem of Brunhild Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1057 - Id: 400132 AegisName: C_Afro_Wig_J Name: Costume Afro Hair Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 302 - Id: 400133 AegisName: C_Para_Team_Hat160 Name: Costume Aurora Parade Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1530 - Id: 400134 AegisName: Thanos_Helm_1 Name: Thanos Warrior Helmet Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true View: 511 Script: | .@r = getrefine(); bonus bAtkRate,4*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus bShortAtkRate,10; if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } } - Id: 400135 AegisName: Thanos_Helm1_LT Name: Thanos Warrior Helmet-LT Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true View: 512 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5*(.@r/3); if (.@r>=7) { bonus bAspdRate,15; if (.@r>=9) { bonus bShortAtkRate,15; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddEle,Ele_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bShortAtkRate,5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bPow,2; } } - Id: 400136 AegisName: C_Ancient_Gold_Deco_TW Name: Costume Ancient Gold Deco # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 739 - Id: 400137 AegisName: 1Para_Cap_A Name: Paradise Cap Type: Armor Defense: 5 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@val = 2*(min(BaseLevel,100)/5); if (BaseLevel>=30) .@val += 5; if (BaseLevel>=45) .@val += 10; if (BaseLevel>=85) .@val += 15; bonus bBaseAtk,5+.@val; - Id: 400138 AegisName: 1Para_Cap_B Name: Paradise Hat Type: Armor Defense: 3 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@val = 2*(min(BaseLevel,100)/5); if (BaseLevel>=30) .@val += 5; if (BaseLevel>=45) .@val += 10; if (BaseLevel>=85) .@val += 15; bonus bMatk,5+.@val; - Id: 400139 AegisName: 2Para_Cap_A Name: Advanced Paradise Luxury Cap Type: Armor Defense: 10 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bBaseAtk,60; bonus2 bHPDrainRate,10,2; bonus2 bSPDrainRate,10,2; - Id: 400140 AegisName: 2Para_Cap_B Name: Advanced Paradise Hat Type: Armor Defense: 7 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,60; autobonus "{ bonus2 bHPRegenRate,350,1000; bonus2 bSPRegenRate,80,1000; }",1,4000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }"; - Id: 400141 AegisName: Thanos_Helm_2 Name: Thanos Shooter Helmet Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true View: 2089 Script: | .@r = getrefine(); bonus bAtkRate,4*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus bLongAtkRate,10; if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } } - Id: 400142 AegisName: Thanos_Helm2_LT Name: Thanos Shooter Helmet-LT Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true View: 2090 Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bAtkRate,5*(.@r/3); if (.@r>=7) { bonus bAspdRate,15; if (.@r>=9) { bonus bLongAtkRate,15; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddEle,Ele_All,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,2; bonus bPow,2; } } - Id: 400143 AegisName: C_Asgard_Circlet_TW Name: Costume Crimson Valkyrie Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2100 - Id: 400144 AegisName: C_Glory_Symbol_TW Name: Costume Glory Symbol Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2101 - Id: 400145 AegisName: Thanos_Helm3_LT Name: Thanos Magic Helmet-LT Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true View: 2102 Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMatkRate,5*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAddEle,Ele_All,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_All,5; if (.@g>=ENCHANTGRADE_C) { bonus bSMatk,2; bonus bSpl,2; } } - Id: 400146 AegisName: Thanos_Helm_3 Name: Thanos Magic Helmet Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true View: 2103 Script: | .@r = getrefine(); bonus bMatkRate,4*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } } - Id: 400147 AegisName: Drooping_Betelgeuse Name: Costume Dropping Betelgeuse Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2114 - Id: 400148 AegisName: C_Black_Dragon_Style Name: Costume Black Dragon Wig Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2115 - Id: 400149 AegisName: C_Black_Thunder Name: Costume Black Thunder Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 Script: | hateffect(HAT_EF_BLACK_THUNDER,true); UnEquipScript: | hateffect(HAT_EF_BLACK_THUNDER,false); - Id: 400150 AegisName: Thanos_Helm_4 Name: Thanos Fighter Helmet Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true View: 2105 Script: | .@r = getrefine(); bonus bAtkRate,4*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus bShortAtkRate,10; if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } } - Id: 400151 AegisName: Thanos_Helm4_LT Name: Thanos Fighter Helmet-LT Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true View: 2104 Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bAtkRate,5*(.@r/3); if (.@r>=7) { bonus bAspdRate,15; if (.@r>=9) { bonus bShortAtkRate,15; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddEle,Ele_All,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,2; bonus bPow,2; } } - Id: 400152 AegisName: Smoky_TransformHat_LT Name: Smokey's Transformation Leaf-LT Type: Armor Weight: 600 Defense: 7 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 1646 Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,2; bonus bSMatk,2; } bonus2 bMagicAtkEle,Ele_All,.@r; bonus bMatkRate,2*(.@r/3); bonus bAspd,(.@r/5); autobonus "{ .@r = getrefine(); bonus bMatk,100; bonus bHit,50; bonus3 bAutoSpell,\"SO_CLOUD_KILL\",max(3,getskilllv(\"SO_CLOUD_KILL\")),50; if (.@r>=7) { bonus bMatk,50; bonus bHit,25; if (.@r>=9) { bonus3 bAutoSpell,\"WL_HELLINFERNO\",5,50; if (.@r>=10) { bonus3 bAutoSpell,\"WL_CHAINLIGHTNING\",3,20; } } } }",1,10000,BF_WEAPON; if (.@g >= ENCHANTGRADE_D && .@r>=11) { bonus5 bAutoSpell,"RK_IGNITIONBREAK",9,30,BF_MAGIC,1; } if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bSMatk,2; } if (.@g >= ENCHANTGRADE_B && .@r>=12) { bonus bFixedCast,-500; } - Id: 400153 AegisName: Whikebain_Ears_K_LT Name: Wickebine's Black Cat Ears-LT Type: Armor Weight: 200 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 368 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bFlee,20; bonus2 bMagicAtkEle,Ele_All,15; bonus bCritAtkRate,15; if (BaseLevel>=210) { bonus bPAtk,2; bonus bSMatk,2; } if (.@r>=7) { bonus bCritAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=9) { bonus bAtkRate,5; bonus bMatkRate,5; if (.@r>=11) { bonus bDelayrate,-5; } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus bDelayrate,-5; } } if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bSMatk,2; if (.@g >= ENCHANTGRADE_B) { if (.@r>=12) { bonus bFixedCast,-500; } } } autobonus "{ bonus bCritical,30; }",1,10000,BF_WEAPON; autobonus "{ bonus2 bIgnoreMdefRaceRate,RC_All,100; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-100; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-100; }",1,10000,BF_MAGIC; - Id: 400154 AegisName: Survive_Circlet_K_LT Name: Survival Circlet-LT Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 1220 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,50; bonus bInt,3; if (BaseLevel>=180) { bonus bMatk,50; } if (BaseLevel>=210) { bonus bPAtk,2; bonus bSMatk,2; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; if (.@r>=10) { bonus bMatkRate,5; if (.@r>=11) { bonus2 bMagicAddClass,Class_Boss,20; } } } } if (.@g >= ENCHANTGRADE_D) { bonus bDelayrate,-5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bSMatk,2; if (.@g >= ENCHANTGRADE_B) { if (.@r>=12) { bonus bFixedCast,-500; } } } } bonus bMatk,10*(.@r/2); - Id: 400155 AegisName: GoldFish_Hat_LT Name: Gold Fish Head Hat-LT Type: Armor Weight: 400 Defense: 2 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 1645 Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,2; bonus bSMatk,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus bShortAtkRate,10; if (.@r>=9) { bonus bAtkRate,5; bonus bMatkRate,5; if (.@r>=11) { bonus2 bMagicAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Dark,20; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Holy,5; bonus bShortAtkRate,5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bSMatk,2; if (.@g >= ENCHANTGRADE_B) { if (.@r>=12) { bonus bFixedCast,-500; } } } } autobonus "{ bonus bAtkEle,Ele_Holy; }",1,60000,BF_WEAPON; autobonus "{ bonus2 bMagicAtkEle,Ele_Holy,20; }",1,60000,BF_MAGIC; - Id: 400156 AegisName: Imp_Hat_LT Name: Imp Hat-LT Type: Armor Weight: 400 Defense: 1 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 589 Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,2; bonus bSMatk,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus bShortAtkRate,10; if (.@r>=9) { bonus bAtkRate,5; bonus bMatkRate,5; if (.@r>=11) { bonus2 bMagicAddEle,Ele_Earth,20; bonus2 bAddEle,Ele_Earth,20; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Fire,5; bonus bShortAtkRate,5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bSMatk,2; if (.@g >= ENCHANTGRADE_B) { if (.@r>=12) { bonus bFixedCast,-500; } } } } autobonus "{ bonus bAtkEle,Ele_Fire; }",1,60000,BF_WEAPON; autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,20; }",1,60000,BF_MAGIC; - Id: 400157 AegisName: C_Astrologer_T_Hat Name: Costume Astrologer's Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2125 - Id: 400158 AegisName: C_Demon_Crown Name: Costume Demon Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2135 - Id: 400159 AegisName: C_Bridal_Heir_Band_TW Name: Costume Bridal Heir Band # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 167 - Id: 400160 AegisName: C_Wave_Noodle Name: Costume Wavy Noodles Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2138 - Id: 400161 AegisName: C_Hat_0f_King Name: Costume Hat of King Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 374 - Id: 400162 AegisName: C_Red_Navy_Hat Name: Costume Red Navy Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 651 - Id: 400163 AegisName: C_Whale_Cap Name: Costume Whale Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2140 - Id: 400164 AegisName: 2021RTC_Headset_TW Name: 2021RTC Gaming Headset Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 2134 Script: | bonus bFixedCast,-100; bonus bShortAtkRate,1; bonus bLongAtkRate,1; bonus2 bMagicAtkEle,Ele_All,1; - Id: 400165 AegisName: C_Green_Apple_Hat_J Name: Costume Green Apple Hat # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 821 - Id: 400166 AegisName: C_Egir_Helm Name: Costume Aegir Helm # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 870 - Id: 400167 AegisName: C_Mosquito_Coil Name: Costume Mosquito Coil # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 563 - Id: 400168 AegisName: C_Souvenirs_Of_Izlude Name: Costume Souvenirs Of Izlude # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1377 - Id: 400169 AegisName: C_Fish_Pin Name: Costume Fish Pin # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 669 - Id: 400170 AegisName: C_Jaty_C Name: Costume Jaty # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 686 - Id: 400171 AegisName: C_Angel_feather Name: Costume Angel feather # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 18 - Id: 400172 AegisName: C_Ati_Atihan_Hat_V Name: Costume Atihan Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 303 - Id: 400173 AegisName: C_Fancy_Phantom_Mask_V Name: Costume Fancy Phantom Mask (Middle) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 710 - Id: 400174 AegisName: C_Weissbier_Hat Name: Costume Buyers Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1079 - Id: 400175 AegisName: C_Campfire_Hat Name: Costume Camp Fire Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 416 - Id: 400176 AegisName: C_Fishbowl_Parfait_Hat Name: Costume Fishbowl Parfait Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2145 - Id: 400177 AegisName: Fafnir_Helm Name: Fafnir Helm Type: Armor View: 2149 Weight: 500 Defense: 10 Locations: Head_Top: true Slots: 1 ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; bonus2 bSkillAtk,"RK_DRAGONBREATH",30; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",30; bonus2 bSkillAtk,"RK_STORMBLAST",(.@r>=8?70:(.@r>=6?50:30)); bonus2 bFixedCastrate,"RK_REFRESH",-100; bonus2 bSubEle,Ele_Fire,3*.@r; bonus2 bSubEle,Ele_Water,3*.@r; autobonus3 "{ bonus bAtkRate,-50; bonus bMatkRate,-50; bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,10; }",1000,60000,"RK_MILLENNIUMSHIELD"; autobonus3 "{ percentheal 100,100; sc_end UNLUCKY; sc_end IGNORANCE; sc_end WEAKNESS; sc_end ENERVATION; sc_end LAZINESS; }",1000,1000,"RK_REFRESH"; autobonus3 "{ bonus bNoKnockback; }",1000,30000,"RK_CRUSHSTRIKE"; autobonus3 "{ bonus2 bHPRegenRate,500,10000; }",1000,300000,"RK_VITALITYACTIVATION"; autobonus3 "{ bonus bBaseAtk,10; bonus bAspdRate,10; }",1000,300000,"RK_FIGHTINGSPIRIT"; autobonus3 "{ bonus2 bSPRegenRate,40,10000; }",1000,300000,"RK_ABUNDANCE"; autobonus3 "{ bonus bStr,30; bonus bInt,-30; }",1000,300000,"RK_GIANTGROWTH"; autobonus3 "{ bonus bShortWeaponDamageReturn,10; heal -1000,0; }",1000,300000,"RK_STONEHARDSKIN"; if ((getskilllv("RK_DRAGONBREATH") == 10) && (getskilllv("RK_DRAGONBREATH_WATER") == 10)) { bonus bLongAtkRate,50; bonus2 bSkillFixedCast,"RK_DRAGONBREATH",-200; bonus2 bSkillFixedCast,"RK_DRAGONBREATH_WATER",-200; } if (getskilllv("RK_DRAGONTRAINING") == 5) { bonus bMaxHPrate,25; bonus bMaxSPrate,25; bonus bDelayrate,-20; } if (getskilllv("RK_DRAGONHOWLING") == 5) { bonus2 bSubClass,Class_Normal,20; bonus2 bSubClass,Class_Boss,20; } if (.@r>=6) autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,20; }",1000,60000,"RK_MILLENNIUMSHIELD"; if (.@r>=7) { bonus2 bSkillAtk,"RK_DRAGONBREATH",50; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; } if(.@r>=8) autobonus3 "{ bonus3 bAutoSpellWhenHit,\"RK_MILLENNIUMSHIELD\",1,30; }",1000,60000,"RK_MILLENNIUMSHIELD"; if (.@r>=9) { bonus2 bSkillAtk,"RK_DRAGONBREATH",70; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",70; } - Id: 400178 AegisName: Viva_Adul_Hat_WL1 Name: Helm of Faith (Warlock) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 1361 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_SOULEXPANSION",15*(.@r/3); bonus2 bMagicAtkEle,Ele_Ghost,7*(.@r/4); - Id: 400179 AegisName: Viva_Adul_Hat_WL2 Name: Helm of Faith II (Warlock) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 1361 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_COMET",15*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Dark,7*(.@r/4); - Id: 400180 AegisName: Viva_Adul_Hat_SR1 Name: Helm of Faith (Sura) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2149 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus bMaxHPrate,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400181 AegisName: Viva_Adul_Hat_SR2 Name: Helm of Faith II (Sura) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2149 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus bMaxSPrate,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400182 AegisName: C_Clinging_Doram_2 Name: Costume Doram Head Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1593 - Id: 400183 AegisName: C_Rabbit_Earplug_V Name: Costume Rabbit Earmuffs (Head) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 515 - Id: 400184 AegisName: C_Hill_Wind_Mask_V Name: Costume Hill Wind Head (Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1342 - Id: 400185 AegisName: C_Red_Tiger_Mask Name: Costume Tiger Mask # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 747 - Id: 400186 AegisName: C_Snake_Head Name: Costume Snake Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 393 - Id: 400187 AegisName: Purple_Cat_Ears_Beret Name: Cat Ears Beret Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 2153 Script: | .@r = getrefine(); bonus bInt,3*.@r; bonus bMdef,10; bonus bDelayrate,-10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; if (getskilllv("SO_CLOUD_KILL") ==5) bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; if (getskilllv("SO_PSYCHIC_WAVE") ==5) bonus bDelayrate,-20; if (getskilllv("SO_STRIKING") ==5) { bonus2 bMagicAtkEle,Ele_Earth,25; bonus2 bMagicAtkEle,Ele_Fire,25; bonus2 bMagicAtkEle,Ele_Water,25; bonus2 bMagicAtkEle,Ele_Wind,25; bonus2 bMagicAtkEle,Ele_Neutral,25; } if (getskilllv("SO_VACUUM_EXTREME") ==5) bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-2000; if (.@r>=7) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20; bonus2 bSkillAtk,"SO_DIAMONDDUST",20; } if (.@r>=9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; bonus2 bSkillAtk,"SO_DIAMONDDUST",30; } - Id: 400188 AegisName: C_Evt_RagFes_band Name: Costume Ragfest Commemorative Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2179 - Id: 400189 AegisName: Viva_Adul_Hat_AB1 Name: Helm of Faith (Archbishop) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2158 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"AB_ADORAMUS",15*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4); - Id: 400190 AegisName: Viva_Adul_Hat_AB2 Name: Helm of Faith II (Archbishop) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2158 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus bCritical,15; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15*(.@r/3); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus bShortAtkRate,7*(.@r/4); - Id: 400191 AegisName: Viva_Adul_Hat_SC1 Name: Helm of Faith (Shadow Chaser) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2159 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SC_FATALMENACE",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400192 AegisName: Viva_Adul_Hat_SC2 Name: Helm of Faith II (Shadow Chaser) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2159 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus bCritical,15; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SC_TRIANGLESHOT",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400193 AegisName: C_Navy_Drooping_Kitty Name: Costume Navy Drooping Kitty Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 749 - Id: 400194 AegisName: NostalgiaCherryBlossom Name: Nostalgia Cherry Blossom Type: Armor Buy: 20 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 2162 Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,10; bonus2 bAddClass,Class_Boss,25; bonus bPerfectHitAddRate,3*.@r; if (getskilllv("SJ_LIGHTOFMOON") == 5) { if (getskilllv("SJ_NEWMOONKICK") == 7) autobonus "{ bonus bSpeedRate,25; }",100,30000,BF_WEAPON; if (getskilllv("SJ_LUNARSTANCE") == 3) bonus bFlee,50; if (getskilllv("SJ_FULLMOONKICK") == 10) bonus2 bHPDrainRate,1000,2; } if(.@r>=7) { bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; } if(.@r>=9) { bonus2 bSkillAtk,"SJ_NEWMOONKICK",35; bonus2 bSkillAtk,"SJ_FULLMOONKICK",35; } - Id: 400195 AegisName: C_Pizza_Hat_J Name: Costume Pepperoni Pizza Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 487 - Id: 400196 AegisName: C_Autumnal_Flavor_J Name: Costume Autumn Flavor(Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1792 - Id: 400197 AegisName: C_Sweet_Chef_Hat Name: Costume Sweet Chef Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2163 - Id: 400198 AegisName: Viva_Adul_Hat_RA1 Name: Helm of Faith (Ranger) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2174 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RA_ARROWSTORM",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400199 AegisName: Viva_Adul_Hat_RA2 Name: Helm of Faith II (Ranger) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2174 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus bCritical,15; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RA_AIMEDBOLT",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400200 AegisName: Viva_Adul_Hat_LG1 Name: Helm of Faith (Royal Guard) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2173 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"LG_RAYOFGENESIS",15*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4); - Id: 400201 AegisName: Viva_Adul_Hat_LG2 Name: Helm of Faith II (Royal Guard) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2173 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"LG_OVERBRAND",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400203 AegisName: Wolf_Officer_Hat Name: Wolf Officer Hat Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 2177 Script: | .@r = getrefine(); bonus bDelayrate,-10; bonus2 bSkillAtk,"RA_ARROWSTORM",15; if (getskilllv("RA_AIMEDBOLT")>=10) { bonus2 bSubClass,Class_Boss,20; bonus bDelayrate,-15; } if (getskilllv("RA_WUGRIDER")>=3) bonus bDelayrate,-20; if (getskilllv("RA_RANGERMAIN")>=10) bonus2 bAddEle,Ele_All,25; if (getskilllv("RA_CAMOUFLAGE")>=5) bonus2 bSkillCooldown,"RA_ARROWSTORM",200; bonus bDex,3*.@r; if (.@r>=7) bonus2 bSkillAtk,"RA_ARROWSTORM",20; if (.@r>=9) bonus2 bSkillCooldown,"RA_UNLIMIT",-150000; - Id: 400204 AegisName: C_Cat_Ear_Red_Hat_TW Name: Costume Cat Ear Red Witch Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 2153 - Id: 400205 AegisName: C_Bun_Twin_Tail_BU Name: Costume Odango Twintails (Blue) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2190 - Id: 400206 AegisName: C_Bun_Twin_Tail_RD Name: Costume Odango Twintails (Red) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2191 - Id: 400207 AegisName: C_Bun_Twin_Tail_YL Name: Costume Odango Twintails (Yellow) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2192 - Id: 400208 AegisName: C_Bun_Twin_Tail_GN Name: Costume Odango Twintails (Green) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2193 - Id: 400209 AegisName: C_Bun_Twin_Tail_BL Name: Costume Odango Twintails (Black) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2194 - Id: 400210 AegisName: C_Bun_Twin_Tail_WH Name: Costume Odango Twintails (White) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2195 - Id: 400211 AegisName: C_Bun_Twin_Tail_OM Name: Costume Odango Twintails (Brown) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2196 - Id: 400212 AegisName: C_Bun_Twin_Tail_PP Name: Costume Odango Twintails (Purple) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2197 - Id: 400213 AegisName: Faith_Of_Yggdrasil Name: Faith of Yggdrasil Type: Armor Buy: 20 Weight: 50 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 2198 Script: | .@r = getrefine(); bonus bMdef,10; bonus bAllStats,3; bonus2 bSubClass,Class_Normal,20; bonus2 bSubClass,Class_Boss,20; bonus2 bAddSize,Size_All,((.@r>=9)?40:(.@r>=7?25:10)); bonus2 bMagicAddSize,Size_All,((.@r>=9)?40:(.@r>=7?25:10)); if (.@r>=7) bonus bDelayrate,-20; if (.@r>=9) { bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubRace,RC_Player_Doram,13; } - Id: 400214 AegisName: C_Faith_Of_Yggdrasil Name: "Costume: Faith of Yggdrasl" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2198 - Id: 400216 AegisName: Viva_Adul_Hat_GC1 Name: Helm of Faith (Guillotine Cross) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2202 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"GC_COUNTERSLASH",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400217 AegisName: Viva_Adul_Hat_GC2 Name: Helm of Faith II (Guillotine Cross) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2202 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus bCritical,15; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400218 AegisName: Viva_Adul_Hat_SO1 Name: Helm of Faith (Sorcerer) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2203 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"SO_POISON_BUSTER",15*(.@r/3); bonus2 bMagicAtkEle,Ele_Poison,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Fire,7*(.@r/4); - Id: 400219 AegisName: Viva_Adul_Hat_SO2 Name: Helm of Faith II (Sorcerer) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2203 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15*(.@r/3); bonus2 bMagicAtkEle,Ele_Earth,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Wind,7*(.@r/4); - Id: 400221 AegisName: C_Jasper_Crest Name: Costume Jasper Crest Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 399 - Id: 400223 AegisName: C_Fantastic_Wig Name: Costume Fantastic Wig Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 308 - Id: 400224 AegisName: C_Navy_Beret Name: Costume Navy Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 652 - Id: 400225 AegisName: C_Fluffy_Rabbit_Cape Name: Costume Fluffy Rabbit Cape Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 2205 - Id: 400226 AegisName: Viva_Adul_Hat_RK1 Name: Helm of Faith (Rune Knight) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2207 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RK_IGNITIONBREAK",15*(.@r/3); bonus2 bSkillAtk,"RK_WINDCUTTER",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400227 AegisName: Viva_Adul_Hat_RK2 Name: Helm of Faith II (Rune Knight) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2207 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400228 AegisName: Viva_Adul_Hat_WM1 Name: Helm of Faith (Minstrel & Wanderer) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2208 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WM_METALICSOUND",15*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); - Id: 400229 AegisName: Viva_Adul_Hat_WM2 Name: Helm of Faith II (Minstrel & Wanderer) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2208 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus bCritical,15; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400230 AegisName: Viva_Adul_Hat_NC1 Name: Helm of Faith (Mechanic) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2209 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"NC_AXETORNADO",15*(.@r/3); bonus2 bSkillAtk,"NC_AXEBOOMERANG",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400231 AegisName: Viva_Adul_Hat_NC2 Name: Helm of Faith II (Mechanic) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2209 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"NC_VULCANARM",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400232 AegisName: C_Crushed_Snow_Man Name: Costume Snowman Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2204 - Id: 400233 AegisName: Viva_Adul_Hat_GN1 Name: Helm of Faith (Genetic) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2210 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"GN_CARTCANNON",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400234 AegisName: Viva_Adul_Hat_GN2 Name: Helm of Faith II (Genetic) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2210 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"GN_CART_TORNADO",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400235 AegisName: Viva_Adul_Hat_KO1 Name: Helm of Faith (Kagerou & Oboro) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: KagerouOboro: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2217 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"KO_HUUMARANKA",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400236 AegisName: Viva_Adul_Hat_KO2 Name: Helm of Faith II (Kagerou & Oboro) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: KagerouOboro: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2217 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400237 AegisName: Viva_Adul_Hat_RL1 Name: Helm of Faith (Rebellion) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rebellion: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2218 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RL_FIREDANCE",15*(.@r/3); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15*(.@r/3); bonus2 bSkillAtk,"RL_D_TAIL",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400238 AegisName: Viva_Adul_Hat_RL2 Name: Helm of Faith II (Rebellion) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rebellion: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2218 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RL_R_TRIP",15*(.@r/3); bonus2 bSkillAtk,"RL_S_STORM",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400239 AegisName: Viva_Adul_Hat_SP1 Name: Helm of Faith (Soul Reaper) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: SoulLinker: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2219 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"SP_SPA",15*(.@r/3); bonus2 bSkillAtk,"SP_SWHOO",15*(.@r/3); bonus2 bMagicAtkEle,Ele_All,7*(.@r/4); - Id: 400240 AegisName: Viva_Adul_Hat_SP2 Name: Helm of Faith II (Soul Reaper) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: SoulLinker: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2219 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus2 bMagicAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15*(.@r/3); bonus2 bMagicAtkEle,Ele_All,7*(.@r/4); - Id: 400241 AegisName: Viva_Adul_Hat_SJ1 Name: Helm of Faith (Star Emperor) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: StarGladiator: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2220 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SJ_FULLMOONKICK",15*(.@r/3); bonus2 bSkillAtk,"SJ_NEWMOONKICK",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400242 AegisName: Viva_Adul_Hat_SJ2 Name: Helm of Faith II (Star Emperor) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: StarGladiator: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2220 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15*(.@r/3); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",15*(.@r/3); bonus bShortAtkRate,7*(.@r/4); - Id: 400243 AegisName: Viva_Adul_Hat_SU1 Name: Helm of Faith (Summoner) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2221 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bPow,3; } if (.@r>=7) { bonus2 bAddSize,Size_All,5; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15*(.@r/3); bonus2 bSkillAtk,"SU_PICKYPECK",15*(.@r/3); bonus bLongAtkRate,7*(.@r/4); - Id: 400244 AegisName: Viva_Adul_Hat_SU2 Name: Helm of Faith II (Summoner) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 2221 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (BaseLevel>=230) { bonus bSMatk,2; bonus bSpl,3; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bFixedCast,-200; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15*(.@r/3); bonus2 bSkillAtk,"SU_CN_METEOR",15*(.@r/3); bonus2 bMagicAtkEle,Ele_All,7*(.@r/4); - Id: 400245 AegisName: King_Tiger_Doll_Hat_LT Name: Tiger King Doll Hat-LT Type: Armor Weight: 400 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 495 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bStr,2; bonus bDex,2; bonus bPow,2; bonus bCon,2; bonus bAspdRate,10; bonus2 bAddRace,RC_Brute,10; bonus2 bAddRace,RC_Player_Doram,10; autobonus "{ .@r = getrefine(); bonus bBaseAtk,35*.@r; if (.@r>=10) { bonus bPAtk,20; } }",1,7000,BF_WEAPON; if (.@r>=7) { bonus bShortAtkRate,15; if (.@r>=9) { bonus bAtkRate,10; if (.@r>=11) { bonus bShortAtkRate,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bPow,3; if (.@g >= ENCHANTGRADE_C) { bonus bFixedCast,-500; bonus bSta,2; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bRes,20; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,7; } } } } - Id: 400246 AegisName: Baksojin_Hat_LT Name: Bacsojin Hat-LT Type: Armor Weight: 400 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 461 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bInt,2; bonus bDex,2; bonus bSpl,2; bonus bCon,2; bonus bVariableCastrate,-10; bonus2 bMagicAddRace,RC_Undead,10; autobonus "{ .@r = getrefine(); bonus bMatk,35*.@r; if (.@r>=10) { bonus bSMatk,20; } }",1,7000,BF_MAGIC; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,15; if (.@r>=9) { bonus bMatkRate,10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,5; bonus bSpl,3; if (.@g >= ENCHANTGRADE_C) { bonus bFixedCast,-500; bonus bWis,2; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,3; bonus bMRes,20; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,7; } } } } - Id: 400250 AegisName: C_RTC2021_Reward_1_TH Name: Costume The Winner of RTC 2021 Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2213 - Id: 400251 AegisName: C_RTC2021_Reward_2_TH Name: Costume First Runner Up of RTC 2021 Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2214 - Id: 400252 AegisName: C_RTC2021_Reward_3_TH Name: Costume Second Runner Up of RTC 2021 Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2215 - Id: 400253 AegisName: C_Macaron_Bunny_Head Name: Costume Macaron Bunny Headdress Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2223 - Id: 400254 AegisName: C_Gothic_Heart_Wing_V Name: Costume Gothic Wing Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1111 - Id: 400256 AegisName: 2022_LunarNewYears_band Name: Costume New Year Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 2179 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoAuction: true - Id: 400257 AegisName: Choco_Banana Name: Choco Banana Bonnet Type: Armor Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 2087 - Id: 400258 AegisName: C_Wanderer_Curl Name: Costume Wanderer Curl Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2224 - Id: 400259 AegisName: C_Notation_Hairband Name: Costume Music Note Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 607 - Id: 400260 AegisName: aegis_400260 Name: Costume Magic lamp Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 897 - Id: 400261 AegisName: Sagittarius_DiademK_LT Name: Sagittarius Celestial Coronet-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 170 Refineable: true View: 618 Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bLongAtkRate,20; if (.@r>=10) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } - Id: 400262 AegisName: Scorpio_Diadem_K_LT Name: Scorpio Celestial Coronet-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 170 Refineable: true View: 606 Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,20; if (.@r>=10) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,20; bonus2 bMagicAddSize,Size_Medium,20; } } } - Id: 400263 AegisName: Large_Sorcerer_Crown_LT Name: Great Magician's Ceremonial Crown-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 170 Refineable: true View: 1811 Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,20; if (.@r>=10) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,20; bonus2 bMagicAddSize,Size_Medium,20; } } } - Id: 400264 AegisName: Stripe_Hat_LT Name: Stripe Hat-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 170 Refineable: true View: 1728 Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bLongAtkRate,20; if (.@r>=10) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } - Id: 400265 AegisName: Phantom_Cap_LT Name: Phantom Cap-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 170 Refineable: true View: 1899 Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,20; if (.@r>=10) { bonus bFixedCast,-200; bonus2 bMagicAddSize,Size_Small,20; bonus2 bMagicAddSize,Size_Medium,20; } } } - Id: 400266 AegisName: Ignis_CapK_LT Name: Ignis Cap-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 170 Refineable: true View: 803 Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bLongAtkRate,20; if (.@r>=10) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } - Id: 400267 AegisName: Clock_Casket_RD_LT Name: Red Clock Casquette-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 170 Refineable: true View: 1777 Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bLongAtkRate,20; bonus bShortAtkRate,20; if (.@r>=10) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } - Id: 400268 AegisName: Rose_Crispinette Name: Rose Crespinette Type: Armor Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 2091 - Id: 400269 AegisName: C_NostalgiaCherry Name: Costume Nostalgia Cherry Blossom Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2162 - Id: 400270 AegisName: C_Kannam_On_Head Name: Costume Kannam On Head Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1003 - Id: 400271 AegisName: C_Shovel_Hat Name: Costume Shovel Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1024 - Id: 400272 AegisName: C_Many_Flowers_Prayer Name: Costume Hakuba's Wish Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2248 - Id: 400277 AegisName: C_Felock_Cap_ Name: Costume Felrock's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1489 - Id: 400278 AegisName: C_Drooping_Omega Name: "Costume: Drooping Omega" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2252 - Id: 400280 AegisName: C_AI_Nabi Name: "Costume: AI Nabi Minimi" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2259 - Id: 400287 AegisName: Legacy_of_Wise_One_J Name: Legacy of Wise One Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 2260 Script: | .@r = getrefine(); bonus bMdef,10; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus2 bAddEle,Ele_All,10; bonus2 bMagicAddEle,Ele_All,10; if (.@r>=7) { bonus bAllStats,10; bonus2 bAddEle,Ele_All,15; bonus2 bMagicAddEle,Ele_All,15; } if (.@r>=9) { bonus bAllStats,10; bonus2 bSubRace,RC_Player_Human,13; } - Id: 400289 AegisName: aegis_400289 Name: Costume Umbrella Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 338 - Id: 400290 AegisName: C_Pink_Angel_Hairband Name: Costume Pink Angel Hairband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 916 - Id: 400292 AegisName: C_Proba_Angel_Blessing Name: Costume Little Angle Gift Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 444 - Id: 400305 AegisName: C_KAKAO_Sky_Hat Name: Costume Sky Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 462 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400307 AegisName: Ally_of_the_Demons Name: Ally of the Demons Type: Armor View: 2268 Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAgi,3*.@r; bonus bMdef,10; bonus bPerfectHitAddRate,30; bonus2 bSkillAtk,"SR_HOWLINGOFLION",50; bonus2 bSkillAtk,"SR_KNUCKLEARROW",50; if (getskilllv("SR_KNUCKLEARROW") == 10) bonus2 bAddEle,Ele_All,25; if (getskilllv("SR_RAISINGDRAGON") == 10) { bonus bMaxHPrate,25; bonus2 bSubClass,Class_Boss,20; } if (getskilllv("SR_GENTLETOUCH_CURE") == 5) bonus bSPDrainValue,3; if (getskilllv("SR_GENTLETOUCH_CHANGE") == 5) bonus bNoSizeFix; if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",75; bonus2 bSkillAtk,"SR_KNUCKLEARROW",75; } if (.@r>=9) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",100; bonus2 bSkillAtk,"SR_KNUCKLEARROW",100; } - Id: 400309 AegisName: C_20th_Anniversary_Hat Name: Costume 20th Anniversary Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2284 - Id: 400310 AegisName: C_Indomitable_Crown Name: Costume Indomitable Crown # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2283 - Id: 400311 AegisName: C_Reliance_Crown Name: Costume Helmet of Light and Darkness Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2281 - Id: 400312 AegisName: aegis_400312 Name: Costume Tiraya Bonnet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 398 - Id: 400313 AegisName: C_Galaxy_Circlet Name: Costume Galaxy Circlet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 725 - Id: 400314 AegisName: C_Northern_Cross Name: Costume Northern Cross Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2132 - Id: 400315 AegisName: C_2012RMSCNO4 Name: Costume Blue Emotion Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2285 - Id: 400319 AegisName: C_Poringnoodle_Head Name: Poring in a Bowl of Costume Noodles # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1003 - Id: 400320 AegisName: aegis_400320 Name: Costume Drum Hood (Black) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2146 - Id: 400321 AegisName: aegis_400321 Name: Costume Academy Freshman Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 409 - Id: 400325 AegisName: C_Wondering_Wolf_V Name: Costume Wandering Wolf Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 490 - Id: 400326 AegisName: C_Bull_Hat Name: Costume Cowhide Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 819 - Id: 400327 AegisName: C_RA_Hair_PK Name: Costume Sleek Pink Half-Updo Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2278 - Id: 400336 AegisName: aegis_400336 Name: Herosria Helm Type: Armor Weight: 2000 Defense: 90 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 40 Script: | bonus bMdef,2; bonus2 bMagicAtkEle,Ele_All,-10; bonus bShortAtkRate,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bSubRace,RC_Player_Human,-5; bonus2 bSubRace,RC_Player_Doram,-5; - Id: 400337 AegisName: aegis_400337 Name: Herosria Apple of Archer Type: Armor Weight: 1400 Defense: 40 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 72 Script: | bonus bMdef,5; bonus2 bMagicAtkEle,Ele_All,-10; bonus bLongAtkRate,5; bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus2 bSubRace,RC_Player_Human,-5; bonus2 bSubRace,RC_Player_Doram,-5; - Id: 400338 AegisName: aegis_400338 Name: Herosria Mage Hat Type: Armor Weight: 1000 Defense: 20 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 112 Script: | bonus bMdef,10; bonus2 bMagicAtkEle,Ele_All,5; bonus bLongAtkRate,-10; bonus bShortAtkRate,-10; bonus2 bSubRace,RC_Player_Human,-5; bonus2 bSubRace,RC_Player_Doram,-5; bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; - Id: 400339 AegisName: aegis_400339 Name: Herosria Beret Type: Armor Weight: 3000 Defense: 120 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 226 Script: | bonus bMdef,8; bonus2 bSubEle,Ele_All,5; bonus bNearAtkDef,5; bonus bLongAtkDef,5; bonus bLongAtkRate,-10; bonus bShortAtkRate,-10; bonus2 bMagicAtkEle,Ele_All,-10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Player_Human,-10; bonus2 bAddRace,RC_Player_Doram,-10; bonus2 bMagicAddRace,RC_Player_Human,-10; bonus2 bMagicAddRace,RC_Player_Doram,-10; - Id: 400340 AegisName: aegis_400340 Name: Herosria Biretta Type: Armor Weight: 1000 Defense: 60 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 11 Script: | bonus bMdef,7; bonus bUseSPrate,10; bonus bHealPower,5; bonus2 bAddRace,RC_Player_Human,-10; bonus2 bAddRace,RC_Player_Doram,-10; bonus2 bMagicAddRace,RC_Player_Human,-10; bonus2 bMagicAddRace,RC_Player_Doram,-10; bonus bDelayrate,-5; - Id: 400341 AegisName: aegis_400341 Name: Costume Empty Can Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 851 - Id: 400342 AegisName: aegis_400342 Name: Costume Pure White Horn Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 42 - Id: 400343 AegisName: C_Fox_Bamboo_Hat Name: Costume Fox Bamboo Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2294 - Id: 400344 AegisName: aegis_400344 Name: Angel Of Happiness Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1251 Script: | bonus bMaxHP,BaseLevel*5; bonus bMaxSP,BaseLevel*2; - Id: 400345 AegisName: aegis_400345 Name: "[Not For Sale] Angel Of Happiness" Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1251 Script: | bonus bMaxHP,BaseLevel*5; bonus bMaxSP,BaseLevel*2; - Id: 400347 AegisName: aegis_400347 Name: Costume Necromancer Hood (Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 491 - Id: 400348 AegisName: aegis_400348 Name: Costume Red Cat Ear Witch Hat # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2153 - Id: 400349 AegisName: aegis_400349 Name: Costume Pumpkin Hat # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 206 - Id: 400350 AegisName: aegis_400350 Name: Costume Soul Ring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 69 - Id: 400351 AegisName: C_20Y_Anniv_Helmet Name: Costume Poring Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2302 - Id: 400354 AegisName: C_Vanargandr_Helm_GL Name: Costume Gold Helm of Vanagandr Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2312 - Id: 400355 AegisName: C_Balloon_Hat_Classical Name: Costume Classical Balloon Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2313 - Id: 400356 AegisName: C_Ignis_Cap_BU Name: Costume Denim Ignis Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2314 - Id: 400357 AegisName: C_Dragonhelm_Gold Name: Costume Asia Masters 1st Dragon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 452 - Id: 400358 AegisName: C_Dragonhelm_Silver Name: Costume Asia Masters 2nd Dragon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 453 - Id: 400359 AegisName: aegis_400359 Name: 1Lv Hat Type: Armor Slots: 1 Locations: Head_Top: true ArmorLevel: 1 Refineable: true View: 16 - Id: 400360 AegisName: aegis_400360 Name: Level 2 Hat # !todo check english name Type: Armor Slots: 1 Locations: Head_Top: true ArmorLevel: 2 Refineable: true View: 16 - Id: 400363 AegisName: aegis_400363 Name: Costume Book of Soyga Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 423 - Id: 400365 AegisName: C_Larva_Red Name: "Costume: Larva (Red)" Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2319 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400366 AegisName: aegis_400366 Name: Costume Royal Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1122 - Id: 400367 AegisName: aegis_400367 Name: Costume Ladys Feather Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1276 - Id: 400368 AegisName: 20th_Anniversary_Hat_TW Name: RO 20th Anniversary Limited Cap Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 2284 Script: | .@r = getrefine(); bonus bMaxHP,2000; bonus bMaxSP,200; bonus bBaseAtk,20*(.@r/2); bonus bMatk,20*(.@r/2); bonus bAtkRate,3*(.@r/3); bonus bMatkRate,3*(.@r/3); if (.@r>=7) bonus bAspdRate,10; if (.@r>=9) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; } if (.@r>=11) { bonus2 bAddEle,Ele_All,15; bonus2 bMagicAddEle,Ele_All,15; } if (.@r>=12) bonus bFixedCast,-15*(.@r-11); - Id: 400369 AegisName: aegis_400369 Name: Costume Rabbit Ears And Egg Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1000 - Id: 400370 AegisName: C_PU_EarWitchHat Name: Costume Purple Big Ears Witch Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2323 - Id: 400371 AegisName: aegis_400371 Name: ROC 1st Anniversary Hat Type: Armor Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1541 Script: | .@r = getrefine(); bonus bSpeedRate,25; if (.@r>=4) { bonus2 bRegenPercentHP,2,10000; bonus2 bRegenPercentSP,1,10000; } if (.@r>=5) bonus bAllStats,2; if (.@r>=6) skill "BS_GREED",1; - Id: 400372 AegisName: C_5th_Anniversary_Hat Name: Costume 5th Anniversary Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2326 - Id: 400373 AegisName: aegis_400373 Name: Costume Frozen Laurel Wreath # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 933 - Id: 400374 AegisName: GoodnEvil_Circlet_DK Name: Crown of Good and Evil (Dragon Knight) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Knight: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bAspdRate,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400375 AegisName: GoodnEvil_Circlet_IG Name: Crown of Good and Evil (Imperial Guard) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus bShortAtkRate,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bAspdRate,5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400376 AegisName: GoodnEvil_Circlet_AG Name: Crown of Good and Evil (Arch Mage) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus2 bMagicAtkEle,Ele_Water,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Ghost,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Dark,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400377 AegisName: GoodnEvil_Circlet_EM Name: Crown of Good and Evil (Elemental Master) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Sage: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus2 bMagicAtkEle,Ele_Earth,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Fire,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Water,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Poison,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400378 AegisName: GoodnEvil_Circlet_CD Name: Crown of Good and Evil (Cardinal) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Priest: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus bShortAtkRate,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Holy,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bCritical,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400379 AegisName: GoodnEvil_Circlet_IQ Name: Crown of Good and Evil (Inquisitor) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Monk: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bCritical,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400380 AegisName: GoodnEvil_Circlet_MT Name: Crown of Good and Evil (Meister) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bAspdRate,5; bonus bCritical,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400381 AegisName: GoodnEvil_Circlet_BO Name: Crown of Good and Evil (Biolo) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bAspdRate,5; bonus bCritical,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400382 AegisName: GoodnEvil_Circlet_SHC Name: Crown of Good and Evil (Shadow Cross) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400383 AegisName: GoodnEvil_Circlet_ABC Name: Crown of Good and Evil (Abyss Chaser) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bAspdRate,5; bonus bCritical,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bSpl,2; bonus bCon,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400384 AegisName: GoodnEvil_Circlet_WH Name: Crown of Good and Evil (Windhawk) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bVariableCastrate,-5; bonus bCritical,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bSpl,2; bonus bCon,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400385 AegisName: GoodnEvil_Circlet_TR Name: Crown of Good and Evil (Trouvere & Troubadour) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus2 bMagicAtkEle,Ele_All,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bSpl,2; bonus bCon,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400386 AegisName: GoodnEvil_Circlet_SS Name: Crown of Good and Evil (Shinkiro & Shiranui) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus2 bMagicAtkEle,Ele_All,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400387 AegisName: GoodnEvil_Circlet_SKE Name: Crown of Good and Evil (Sky Emperor) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: StarGladiator: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bShortAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400388 AegisName: GoodnEvil_Circlet_SOA Name: Crown of Good and Evil (Soul Ascetic) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: SoulLinker: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus2 bMagicAtkEle,Ele_All,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400389 AegisName: GoodnEvil_Circlet_HN Name: Crown of Good and Evil (Hyper Novice) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: SuperNovice: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Ghost,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400390 AegisName: GoodnEvil_Circlet_SH Name: Crown of Good and Evil (Spirit Handler) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Summoner: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus2 bMagicAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Ghost,7*(.@r/4); bonus2 bMagicAtkEle,Ele_Neutral,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bVariableCastrate,-5; bonus bCritical,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400391 AegisName: GoodnEvil_Circlet_NW # Name: Crown of Good and Evil (Night Watch - Grenade Launcher) Name: Crown of Good and Evil (Night Watch - GL) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bAspdRate,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400392 AegisName: GoodnEvil_Circlet_NW2 Name: Crown of Good and Evil (Night Watch - Revolver) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bAspdRate,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400393 AegisName: GoodnEvil_Circlet_NW3 Name: Crown of Good and Evil (Night Watch - Gatling Gun) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bAspdRate,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400394 AegisName: GoodnEvil_Circlet_NW4 Name: Crown of Good and Evil (Night Watch - Shotgun) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bAspdRate,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400395 AegisName: GoodnEvil_Circlet_NW5 Name: Crown of Good and Evil (Night Watch - Rifle) Type: Armor Weight: 100 Defense: 10 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 215 Refineable: true Gradable: true View: 2332 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bAddRace,RC_All,5*(.@r/3); bonus bLongAtkRate,7*(.@r/4); if (.@r>=7) { bonus bRes,50; if (.@r>=9) { bonus bDelayrate,-5; bonus bAspdRate,5; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,2; bonus bSpl,2; if (.@g>=ENCHANTGRADE_A) { bonus bMRes,50; bonus bRes,50; if (.@r>=12) { bonus bFixedCast,-200; } } } } } - Id: 400396 AegisName: aegis_400396 Name: Evil's Whisper Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 2338 Script: | .@r = getrefine(); .@b = BaseLevel; if (.@r>=9) { .@b *=3; bonus2 bSkillAtk,"ASC_BREAKER",BaseLevel*2; } else if (.@r>=7) { .@b *=2; bonus2 bSkillAtk,"ASC_BREAKER",BaseLevel; } bonus bMdef,10; bonus bAspdRate,10; bonus bDelayrate,-3*.@r; bonus2 bSkillAtk,"ASC_METEORASSAULT",.@b; if (getskilllv("GC_WEAPONCRUSH") == 5) bonus2 bAddEle,Ele_All,25; if (getskilllv("GC_WEAPONBLOCKING") == 5) bonus bDelayrate,-20; if (getskilllv("GC_COUNTERSLASH") == 10) bonus bWeaponAtkRate,25; if (getskilllv("GC_HALLUCINATIONWALK") == 5) { bonus2 bSubClass,Class_Normal,20; bonus2 bSubClass,Class_Boss,20; } - Id: 400397 AegisName: aegis_400397 Name: Costume Pretty Rabbit Hood (Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1085 - Id: 400398 AegisName: aegis_400398 Name: Costume Feather White Beret Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2286 - Id: 400399 AegisName: aegis_400399 Name: Bronze Crown Type: Armor Weight: 300 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1108 Script: | bonus bAllStats,5; bonus bMdef,5; bonus bSpeedRate,25; skill "AL_TELEPORT",1; - Id: 400400 AegisName: Red_Baby_Dragon_LT Name: Baby Red Dragon Hat-LT Type: Armor Weight: 700 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true View: 2339 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,3000; bonus bMaxSP,200; bonus2 bSkillAtk,"RK_DRAGONBREATH",10*(.@r/2); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10*(.@r/2); bonus bLongAtkRate,5*(.@r/3); if (BaseLevel>=200) { bonus bPow,3; bonus bPAtk,2; } if (.@r>=7) { bonus bAspd,1; if (.@r>=9) { bonus bMaxHPrate,15; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=13) { autobonus "{ bonus bLongAtkRate,25; }",20,10000,BF_WEAPON,"{ active_transform 1714,10000; }"; } } } } if (.@g >= ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g >= ENCHANTGRADE_C) { if (.@r>=11) { bonus bDelayrate,-8; if (.@g >= ENCHANTGRADE_B) { if (.@r>=13) { bonus bFixedCast,-500; if (.@g >= ENCHANTGRADE_A) { bonus2 bSkillAtk,"RK_DRAGONBREATH",30; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",30; } } } } } } - Id: 400401 AegisName: Yggdrasil_Faith Name: Faith of Yggdrasil Type: Armor Weight: 700 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 2198 Script: | .@r = getrefine(); bonus bMatk,20*(.@r/2); bonus2 bMagicAtkEle,Ele_All,7*(.@r/3); if (.@r>=7) bonus bMatkRate,10; if (.@r>=9) bonus bDelayrate,-10; if (.@r>=11) bonus2 bMagicAddRace,RC_All,15; if (.@r>=12) bonus2 bMagicAddEle,Ele_All,15; if (.@r>=13) bonus bFixedCast,-500; - Id: 400402 AegisName: C_1st_Evt_Hat_MSP Name: Costume GGH 1st Anniversary Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2344 - Id: 400403 AegisName: aegis_400403 Name: Costume Face Crusher (Middle) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1341 - Id: 400404 AegisName: aegis_400404 Name: Costume Dorothy Doll Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 582 - Id: 400405 AegisName: C_Ribbon_Magic_Hat Name: Costume Chocolate Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 794 - Id: 400406 AegisName: C_Sweets_Captive Name: Costume Sweets Captivated Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2347 - Id: 400407 AegisName: C_Black_Rabbit_Ear Name: Costume Black Rabbit Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2348 - Id: 400408 AegisName: aegis_400408 Name: Clockwise Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2350 Script: | .@r = getrefine(); bonus bSpl,3+.@r; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bMatkRate,40; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",BaseLevel/10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",BaseLevel/10; bonus2 bSkillAtk,"AG_FROZEN_SLASH",BaseLevel/10; bonus2 bSkillAtk,"AG_STORM_CANNON",BaseLevel/10; bonus2 bSkillAtk,"AG_ROCK_DOWN",BaseLevel/10; - Id: 400409 AegisName: Wild_Beast Name: Wild Beast Type: Armor Weight: 500 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2352 Script: | .@r = getrefine(); bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus2 bAddEle,Ele_All,3*.@r; bonus2 bMagicAddEle,Ele_All,3*.@r; - Id: 400410 AegisName: aegis_400410 Name: Heaven Cage Type: Armor Weight: 80 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 1286 Script: | bonus bLuk,5; bonus bCritical,5; bonus bFlee2,5; if (BaseJob == Job_Sniper) bonus2 bSkillAtk,"HT_BLITZBEAT",5*getrefine(); - Id: 400411 AegisName: aegis_400411 Name: "[Not For Sale] Heaven Cage" Type: Armor Weight: 80 Defense: 6 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true View: 1286 Script: | bonus bLuk,5; bonus bCritical,5; bonus bFlee2,5; if (BaseJob == Job_Sniper) bonus2 bSkillAtk,"HT_BLITZBEAT",5*getrefine(); - Id: 400412 AegisName: aegis_400412 Name: Pink Poo Hat Type: Armor Weight: 1200 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 View: 1102 Script: | bonus bUnbreakableHelm; bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Player_Human,13; - Id: 400413 AegisName: aegis_400413 Name: Kafra Employee Band Type: Armor Weight: 500 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 106 Script: | .@r = getrefine(); bonus2 bSubRace,RC_All,5; bonus2 bAddMonsterDropItem,7059,10*.@r; bonus2 bAddMonsterDropItem,7060,10*.@r; bonus2 bAddMonsterDropItem,23177,10*.@r; - Id: 400414 AegisName: aegis_400414 Name: Costume strong copo # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2356 - Id: 400415 AegisName: aegis_400415 Name: Fashionable Copo # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2357 - Id: 400416 AegisName: aegis_400416 Name: Squirrel Ear Hood (Albino) Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2371 Script: | .@r = getrefine(); bonus bPow,3+.@r; bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Normal,20; bonus2 bSubClass,Class_Boss,20; bonus bAtkRate,40; bonus2 bSkillAtk,"CD_PETITIO",BaseLevel/10; bonus2 bSkillAtk,"CD_EFFLIGO",BaseLevel/10; - Id: 400417 AegisName: aegis_400417 Name: "[Not For Sale] Deep Blue Angel Hairband" Type: Armor Weight: 100 Defense: 4 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 915 Script: | bonus bAgi,1; bonus bLuk,1; bonus bMdef,3; bonus2 bSubRace,RC_Demon,3; - Id: 400418 AegisName: aegis_400418 Name: Nymph Green Sapphire Type: Armor Weight: 600 Defense: 60 Slots: 1 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 566 Script: | .@r = getrefine(); bonus bMatkRate,.@r; bonus bFixedCastrate,-5*.@r; - Id: 400419 AegisName: aegis_400419 Name: "[Not For Sale] Nymph Green Sapphire" Type: Armor Weight: 600 Defense: 60 Slots: 1 Jobs: Mage: true Sage: true Wizard: true Classes: All_Upper: true Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 566 Script: | .@r = getrefine(); bonus bMatkRate,.@r; bonus bFixedCastrate,-5*.@r; - Id: 400420 AegisName: aegis_400420 Name: Dragon Circlet Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2358 Script: | .@r = getrefine(); bonus bPow,3+.@r; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubClass,Class_Normal,20; bonus2 bSubClass,Class_Boss,20; bonus bAtkRate,40; bonus2 bSkillAtk,"DK_HACKANDSLASHER",BaseLevel/10; bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",BaseLevel/10; - Id: 400421 AegisName: aegis_400421 Name: Two Tone Cap Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2359 Script: | .@r = getrefine(); bonus bPow,3+.@r; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubClass,Class_Normal,20; bonus2 bSubClass,Class_Boss,20; bonus bAtkRate,40; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",BaseLevel/10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",BaseLevel/10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",BaseLevel/10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",BaseLevel/10; - Id: 400422 AegisName: aegis_400422 Name: Costume Dark Bacilium (Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 364 - Id: 400423 AegisName: aegis_400423 Name: Costume World-erosive Curse Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2020 - Id: 400424 AegisName: C_Owlviscount_Silk_Hat Name: Costume Owl Viscount Silk Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1323 - Id: 400425 AegisName: aegis_400425 Name: Costume Falconer Flute Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1143 - Id: 400426 AegisName: C_Smoky_TransformHat Name: Costume Smoky Transform Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1646 - Id: 400427 AegisName: aegis_400427 Name: Costume Demi Freyja Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2360 - Id: 400428 AegisName: aegis_400428 Name: Costume Bunny Ear Eggs Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2364 - Id: 400429 AegisName: aegis_400429 Name: Costume Mountain Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2098 - Id: 400430 AegisName: aegis_400430 Name: Costume Twin Casquette Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 576 - Id: 400431 AegisName: aegis_400431 Name: Costume Sakura Witch Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2366 - Id: 400432 AegisName: C_Heart_Chiffon_Rabbit Name: Costume Heart Chiffon Rabbit Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2367 - Id: 400433 AegisName: Gothic_HW_TW_LT Name: Fallen Wing Hairpin-LT Type: Armor Weight: 300 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 1 Refineable: true Gradable: true View: 2372 Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMaxHPrate,10; bonus bDelayrate,8-(2*(.@r/2)); bonus bMaxHP,3000*(.@r/3); if (.@r>=7) { bonus bDelayrate,-10; if (.@r>=9) { bonus bAtkRate,10; bonus bMatkRate,10; if (.@r>=11) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; if (.@r>=13) { bonus bNearAtkDef,10; bonus bLongAtkDef,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHP,15000; bonus bDelayrate,-5; if (.@g>=ENCHANTGRADE_B) { autobonus "{ bonus2 bMagicAtkEle,Ele_All,20; bonus bShortAtkRate,20; bonus bLongAtkRate,20; }",20,10000,BF_WEAPON|BF_MAGIC; if (.@g>=ENCHANTGRADE_A) { bonus2 bSubEle,Ele_All,10; } } } } - Id: 400434 AegisName: aegis_400434 Name: Costume Fallen Angel Lost Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 907 - Id: 400435 AegisName: aegis_400435 Name: Costume Mad Hatter's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2376 - Id: 400436 AegisName: aegis_400436 Name: Costume Overpiamet Hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2377 - Id: 400437 AegisName: aegis_400437 Name: Chic Peony Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2380 Script: | bonus bPow,3+getrefine(); bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bAtkRate,40; bonus2 bSkillAtk,"SHC_SHADOW_STAB",BaseLevel/10; bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",BaseLevel/10; - Id: 400438 AegisName: aegis_400438 Name: Bobcat Knit Hat (White) Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2381 Script: | bonus bPow,3+getrefine(); bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bAtkRate,40; bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",BaseLevel/10; bonus2 bSkillAtk,"ABC_UNLUCKY_RUSH",BaseLevel/10; bonus2 bSkillAtk,"ABC_DEFT_STAB",BaseLevel/10; - Id: 400439 AegisName: aegis_400439 Name: Costume Angel's Kiss Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 255 - Id: 400440 AegisName: Remorse_C_Crown Name: Penance Charm Crown Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 725 Script: | .@r = getrefine(); bonus bMdef,10; bonus bMatk,15*(.@r/2); bonus bMatkRate,5*(.@r/3); bonus2 bMagicAtkEle,Ele_All,5*(.@r/4); if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bMagicAddRace,RC_All,15; if (.@r>=13) { bonus2 bMagicAddRace,RC_All,20; bonus bFixedCast,-500; } } } - Id: 400441 AegisName: aegis_400441 Name: "[Not For Sale] Fox Ears Bell Ribbon" Type: Armor Weight: 400 Defense: 4 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1070 Script: | bonus bAgi,2; bonus bAspdRate,10; autobonus "{ .@r = getrefine(); bonus bCritical,100; bonus bLongAtkRate,5+max(0,.@r-6); }",50+(.@r*2),5000,BF_NORMAL,"{ active_transform 1150,5000; }"; - Id: 400442 AegisName: aegis_400442 Name: "[Not For Sale] Super Scell" Type: Armor Weight: 100 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 688 Script: | bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",max(getskilllv("MG_LIGHTNINGBOLT"),5),50+(getskilllv("MG_LIGHTNINGBOLT")*5); bonus3 bAutoSpell,"MG_THUNDERSTORM",max(getskilllv("MG_THUNDERSTORM"),5),50+(getskilllv("MG_THUNDERSTORM")*5); - Id: 400443 AegisName: aegis_400443 Name: "[Not For Sale] Cloud Buster" Type: Armor Weight: 100 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 705 Script: | bonus3 bAutoSpell,"MG_COLDBOLT",max(getskilllv("MG_COLDBOLT"),5),50+(getskilllv("MG_COLDBOLT")*5); bonus3 bAutoSpell,"MG_FROSTDIVER",max(getskilllv("MG_FROSTDIVER"),5),50+(getskilllv("MG_FROSTDIVER")*5); - Id: 400444 AegisName: aegis_400444 Name: Costume Black Fox Ear Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1726 - Id: 400445 AegisName: Officer_Cap_LT Name: Officer's Hat-LT Type: Armor Weight: 400 Defense: 35 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 100 Refineable: true Gradable: true View: 1759 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); if (.@r>=7) { bonus bMatkRate,5; bonus bAtkRate,5; if (.@r>=9) { bonus2 bHPDrainRate,50,5; bonus2 bSPDrainRate,10,3; autobonus "{ bonus2 bHPRegenRate,300,1000; bonus2 bSPRegenRate,70,1000; }",40,4000,BF_MAGIC; if (.@r>=11) { bonus bAspdRate,10; bonus bVariableCastrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_All,5; bonus bLongAtkRate,5; bonus bShortAtkRate,5; if (.@g>=ENCHANTGRADE_C) { if (.@r>=12) { bonus bFixedCast,-500; } if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,5; bonus bSMatk,5; } } } - Id: 400446 AegisName: aegis_400446 Name: Costume Adventurer's Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2385 - Id: 400447 AegisName: Poenetentia_B_Crown Name: Confession Courage Crown Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2393 Script: | .@r = getrefine(); bonus bMdef,10; bonus bBaseAtk,15*(.@r/2); bonus bAtkRate,5*(.@r/3); bonus2 bAddEle,Ele_All,3*(.@r/4); bonus2 bMagicAddEle,Ele_All,3*(.@r/4); if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bAddRace,RC_All,15; if (.@r>=13) { bonus2 bAddRace,RC_All,20; bonus bFixedCast,-500; } } } - Id: 400448 AegisName: aegis_400448 Name: Costume Juan Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2387 - Id: 400449 AegisName: aegis_400449 Name: Costume Tare Maid Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1083 - Id: 400450 AegisName: C_Lion_Crown Name: Costume Lion Crown Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2390 - Id: 400451 AegisName: aegis_400451 Name: Costume Angeling Bread Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2019 - Id: 400452 AegisName: aegis_400452 Name: Costume Heavy Infantry Silver Helmet Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1781 - Id: 400453 AegisName: aegis_400453 Name: Invincible Crest Hat Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2391 Script: | .@r = getrefine(); bonus bCon,3+.@r; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bAtkRate,40; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",BaseLevel/10; bonus2 bSkillAtk,"WH_GALESTORM",BaseLevel/10; - Id: 400454 AegisName: aegis_400454 Name: Khalitzburg Knight White Helm Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2392 Script: | .@r = getrefine(); bonus bSpl,3+.@r; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bMatkRate,40; bonus2 bSkillAtk,"IG_CROSS_RAIN",BaseLevel/10; bonus2 bSkillAtk,"IG_JUDGEMENT_CROSS",BaseLevel/10; - Id: 400455 AegisName: aegis_400455 Name: Diadem Of Bruenhild Type: Armor Weight: 600 Defense: 6 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true View: 1057 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus bLongAtkDef,min(.@r,10); if (.@r>=7) autobonus2 "{ sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_POISON; sc_end SC_SILENCE; bonus2 bResEff,Eff_Confuse,10000; bonus2 bResEff,Eff_Curse,10000; bonus2 bResEff,Eff_Poison,10000; bonus2 bResEff,Eff_Silence,10000; }",(.@r>=10?40:10),3000,BF_MAGIC|BF_WEAPON; if (.@r>=10) bonus bMaxHPrate,3; - Id: 400456 AegisName: aegis_400456 Name: "[Not For Sale] Diadem Of Bruenhild" Type: Armor Weight: 600 Defense: 6 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 80 Refineable: true View: 1057 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,5; bonus2 bSubRace,RC_Dragon,5; bonus bLongAtkDef,min(.@r,10); if (.@r>=7) autobonus2 "{ sc_end SC_CONFUSION; sc_end SC_CURSE; sc_end SC_POISON; sc_end SC_SILENCE; bonus2 bResEff,Eff_Confuse,10000; bonus2 bResEff,Eff_Curse,10000; bonus2 bResEff,Eff_Poison,10000; bonus2 bResEff,Eff_Silence,10000; }",(.@r>=10?40:10),3000,BF_MAGIC|BF_WEAPON; if (.@r>=10) bonus bMaxHPrate,3; - Id: 400457 AegisName: Poenetentia_V_Crown Name: Confession Domineering Crown Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2394 Script: | .@r = getrefine(); bonus bMdef,10; bonus bBaseAtk,15*(.@r/2); bonus bCritAtkRate,5*(.@r/3); bonus bShortAtkRate,4*(.@r/4); bonus2 bMagicAddEle,Ele_All,3*(.@r/4); if (.@r>=9) { bonus bCritical,8; if (.@r>=11) { bonus2 bAddRace,RC_All,15; if (.@r>=13) { bonus2 bAddRace,RC_All,20; bonus bFixedCast,-500; } } } - Id: 400458 AegisName: aegis_400458 Name: Costume Ally of the Demons Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2268 - Id: 400459 AegisName: aegis_400459 Name: Costume Naval Officer Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 792 - Id: 400460 AegisName: aegis_400460 Name: Costume Burst Flame Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 451 - Id: 400461 AegisName: aegis_400461 Name: Costume Red Pirate Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 496 - Id: 400462 AegisName: C_Sailor_Cap Name: Costume Sailor Cap Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2398 - Id: 400463 AegisName: Up_Apple_Of_Archer_IL Name: Opened Illusion Apple of Archer Type: Armor Weight: 200 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 72 Script: | .@r = getrefine(); bonus bLuk,5; bonus bDex,5; bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bAtkRate,5; if (.@r>=11) bonus2 bAddSize,Size_All,5; - Id: 400464 AegisName: Up_Nurse_Cap_IL Name: Opened Illusion Nursing Cap Type: Armor Weight: 100 Defense: 24 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 64 Script: | .@r = getrefine(); bonus bInt,5; bonus bDex,5; bonus bHealPower,3*.@r; if (.@r>=7) bonus bVariableCastrate,-5; if (.@r>=9) bonus bMatkRate,5; if (.@r>=11) bonus2 bMagicAddSize,Size_All,5; - Id: 400465 AegisName: Dolor_HatK_LT Name: Drooping Thanatos's Dolor-LT Type: Armor Weight: 100 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true View: 547 Script: | .@r = getrefine(); .@g = getenchantgrade(); .@a = (2*(.@r/3)); bonus bMaxHPrate,10; bonus bMaxSPrate,7; bonus2 bAddEle,Ele_Dark,10+.@a; bonus2 bAddEle,Ele_Holy,10+.@a; bonus2 bAddRace,RC_Angel,10+.@a; bonus2 bAddRace,RC_Dragon,10+.@a; bonus2 bMagicAddEle,Ele_Dark,10+.@a; bonus2 bMagicAddEle,Ele_Holy,10+.@a; bonus2 bMagicAddRace,RC_Angel,10+.@a; bonus2 bMagicAddRace,RC_Dragon,10+.@a; if (.@a>=7) { bonus bAtkRate,5; bonus bMatkRate,5; } if (.@r>=9) bonus bVariableCastrate,-15; if (.@r>=11) bonus bDelayrate,-15; if (.@g>=ENCHANTGRADE_D) bonus bAllTraitStats,2; if (.@g>=ENCHANTGRADE_C) { bonus bRes,50; bonus bMRes,50; } if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } if (.@g>=ENCHANTGRADE_A) { bonus2 bSubRace,RC_Angel,5; bonus2 bSubRace,RC_Dragon,5; } - Id: 400466 AegisName: aegis_400466 Name: Costume Rainbow Popcorn # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2400 - Id: 400467 AegisName: aegis_400467 Name: Northern Tiara Type: Armor Weight: 100 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 2132 Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,3; bonus bMatk,20*(.@r/2); if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,7; bonus bFixedCast,-100*(min((.@r-10),15)/1); } - Id: 400468 AegisName: aegis_400468 Name: Mom Chicken Hat Type: Armor Weight: 100 Defense: 2 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true View: 432 Script: | .@r = getrefine(); bonus2 bHPDrainRate,20,2+(.@r/2); bonus2 bSPDrainRate,10,2+(.@r/3); bonus2 bHPRegenRate,-.@r,5000; - Id: 400469 AegisName: Poenetentia_D_Crown Name: Penance Crown Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2402 Script: | .@r = getrefine(); bonus bMdef,10; bonus bBaseAtk,15*(.@r/2); bonus bAtkRate,5*(.@r/2); bonus bLongAtkRate,4*(.@r/4); if (.@r>=9) bonus bAspdRate,10; if (.@r>=11) bonus2 bAddSize,Size_All,15; if (.@r>=13) { bonus2 bAddRace,RC_All,20; bonus bFixedCast,-500; } - Id: 400470 AegisName: aegis_400470 Name: Southern Tiara Type: Armor Weight: 100 Defense: 35 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 601 Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bBaseAtk,15*(.@r/2); if (.@r>=7) bonus bAspdRate,10; if (.@r>=9) { bonus bWeaponAtkRate,5; bonus bAspd,1; } if (.@r>=11) { bonus bCritAtkRate,3; bonus bLongAtkRate,3; bonus bFixedCast,-100*(min((.@r-10),15)/1); } - Id: 400471 AegisName: aegis_400471 Name: Costume Angry Fish # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2410 - Id: 400472 AegisName: aegis_400472 Name: Circlet Of Phoenix Type: Armor Weight: 1000 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1056 Script: | .@r = getrefine(); bonus bLongAtkRate,5; bonus bBaseAtk,(readparam(bDex)/9); if (BaseClass == Job_Hunter || BaseClass == Job_Bard || BaseClass == Job_Dancer) { bonus2 bSkillAtk,"SN_SHARPSHOOTING",2*.@r; bonus2 bSkillAtk,"CG_ARROWVULCAN",2*.@r; if (.@r>=5) { bonus2 bVariableCastrate,"SN_SHARPSHOOTING",-20; bonus2 bVariableCastrate,"CG_ARROWVULCAN",-20; if (.@r>=7) { bonus bCritical,10; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"CG_ARROWVULCAN",10; } } } - Id: 400473 AegisName: aegis_400473 Name: "[Not For Sale] Circlet Of Phoenix" Type: Armor Weight: 1000 Jobs: All: true Novice: false SuperNovice: false Classes: All_Upper: true Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1056 Script: | .@r = getrefine(); bonus bLongAtkRate,5; bonus bBaseAtk,(readparam(bDex)/9); if (BaseClass == Job_Hunter || BaseClass == Job_Bard || BaseClass == Job_Dancer) { bonus2 bSkillAtk,"SN_SHARPSHOOTING",2*.@r; bonus2 bSkillAtk,"CG_ARROWVULCAN",2*.@r; if (.@r>=5) { bonus2 bVariableCastrate,"SN_SHARPSHOOTING",-20; bonus2 bVariableCastrate,"CG_ARROWVULCAN",-20; if (.@r>=7) { bonus bCritical,10; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; bonus2 bSkillAtk,"CG_ARROWVULCAN",10; } } } - Id: 400474 AegisName: Remorse_Crown Name: Remorse Crown Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2408 Script: | .@r = getrefine(); bonus bMdef,10; bonus bBaseAtk,15*(.@r/2); bonus bAtkRate,5*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@r>=9) bonus bDelayrate,-8; if (.@r>=11) bonus2 bAddSize,Size_All,15; if (.@r>=13) { bonus2 bAddRace,RC_All,20; bonus bFixedCast,-500; } - Id: 400475 AegisName: aegis_400475 Name: Costume Night Market Egg Bulb Hall # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2409 - Id: 400476 AegisName: aegis_400476 Name: Sustained Beret Type: Armor Weight: 400 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1868 Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bMatk,15*(.@r/2); if (.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,15; if (.@r>=9) bonus bLongAtkRate,15; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_Small,15; bonus2 bAddSize,Size_Medium,15; bonus2 bMagicAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Medium,15; } - Id: 400477 AegisName: aegis_400477 Name: Agricultural Tools Type: Armor Weight: 700 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1024 Script: | bonus bUnbreakableHelm; bonus bHPGainValue,500; bonus bSPGainValue,50; bonus bLongHPGainValue,500; bonus bLongSPGainValue,50; bonus bMagicHPGainValue,500; bonus bMagicSPGainValue,50; - Id: 400478 AegisName: aegis_400478 Name: Red Commando Beret Type: Armor Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 559 Script: | bonus bBaseAtk,15; bonus bHit,30; bonus2 bAddRace,RC_DemiHuman,5; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) bonus2 bSkillAtk,"RG_BACKSTAP",5*getrefine(); - Id: 400479 AegisName: aegis_400479 Name: "[Not For Sale] Red Commando Beret" Type: Armor Weight: 100 Defense: 3 Slots: 1 Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 559 Script: | bonus bBaseAtk,15; bonus bHit,30; bonus2 bAddRace,RC_DemiHuman,5; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) bonus2 bSkillAtk,"RG_BACKSTAP",5*getrefine(); - Id: 400480 AegisName: aegis_400480 Name: Costume Cat Straw Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2413 - Id: 400481 AegisName: aegis_400481 Name: The Brandishing Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2415 Script: | bonus bCrt,3+getrefine(); bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bAtkRate,40; bonus2 bSkillAtk,"DK_SERVANT_W_PHANTOM",BaseLevel/10; bonus2 bSkillAtk,"DK_SERVANT_W_DEMOL",BaseLevel/10; bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",BaseLevel/10; - Id: 400482 AegisName: Poenetentia_H_Crown Name: Penance Glory Crown Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2416 Script: | .@r = getrefine(); bonus bMdef,10; bonus bMatk,15*(.@r/2); bonus bMatkRate,5*(.@r/3); bonus2 bMagicAtkEle,Ele_All,5; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAddSize,Size_All,15; if (.@r>=13) { bonus2 bMagicAddRace,RC_All,20; bonus bFixedCast,-500; } - Id: 400483 AegisName: aegis_400483 Name: Opened Illusion Cap Type: Armor Weight: 400 Defense: 40 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 14 Script: | .@r = getrefine(); bonus bBaseAtk,5+(9*(.@r/2)); bonus bAtkRate,5; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus2 bAddRace,RC_All,5; if (.@r>=11) bonus2 bAddSize,Size_All,5; - Id: 400484 AegisName: aegis_400484 Name: Costume Bomb Hat Type: Armor Weight: 100 Locations: Costume_Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 1191 - Id: 400485 AegisName: aegis_400485 Name: Costume Twinkling Star Type: Armor Weight: 100 Locations: Costume_Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 1005 - Id: 400486 AegisName: aegis_400486 Name: Monarch's Crown Type: Armor Weight: 100 Defense: 30 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 933 Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus2 bAddRace,RC_Demon,10+(.@r/2); bonus2 bAddRace,RC_Undead,10+(.@r/2); bonus2 bAddEle,Ele_Ghost,10+(.@r/2); bonus2 bAddEle,Ele_Undead,10+(.@r/2); bonus2 bMagicAddRace,RC_Demon,10+(.@r/2); bonus2 bMagicAddRace,RC_Undead,10+(.@r/2); bonus2 bMagicAddEle,Ele_Ghost,10+(.@r/2); bonus2 bMagicAddEle,Ele_Undead,10+(.@r/2); if (.@r>=7) { bonus bAtkRate,5; bonus bMatkRate,5; } if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus bDelayrate,-15; - Id: 400487 AegisName: Up_Fancy_Flower_IL Name: Opened Illusion Fancy Flower Type: Armor Weight: 100 Defense: 18 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bMatk,5+(9*(.@r/2)); bonus bMatkRate,5; if (.@r>=7) bonus bVariableCastrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; if (.@r>=11) bonus2 bMagicAddSize,Size_All,5; - Id: 400488 AegisName: aegis_400488 Name: Hairband Of Asmodeus Type: Armor Weight: 300 Defense: 12 Slots: 1 Jobs: Swordman: true Classes: All_Upper: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 55 Refineable: true View: 2249 Script: | bonus2 bAddSize,Size_All,10; bonus bCritAtkRate,10*getrefine(); - Id: 400489 AegisName: aegis_400489 Name: "[Not For Sale] Hairband Of Asmodeus" Type: Armor Weight: 300 Defense: 12 Slots: 1 Jobs: Swordman: true Classes: All_Upper: true Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 55 Refineable: true View: 2249 Script: | bonus2 bAddSize,Size_All,10; bonus bCritAtkRate,10*getrefine(); - Id: 400490 AegisName: aegis_400490 Name: "[Not for Sale] Boxer Glove" Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 55 Script: | bonus bStr,3; bonus bAgi,3; bonus bMaxSP,75; bonus bMdef,15; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,1000; if (BaseJob == Job_Monk) { bonus4 bAutoSpellOnSkill,"CH_CHAINCRUSH","CH_SOULCOLLECT",1,1000; bonus2 bSkillAtk,"MO_CHAINCOMBO",BaseLevel; bonus2 bSkillAtk,"MO_COMBOFINISH",BaseLevel; bonus2 bSkillAtk,"CH_TIGERFIST",BaseLevel; bonus2 bSkillAtk,"CH_CHAINCRUSH",BaseLevel; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",JobLevel; } - Id: 400495 AegisName: aegis_400495 Name: Costume Crescent Helm (Upper) Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 213 - Id: 400496 AegisName: aegis_400496 Name: Costume White Fox Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2419 - Id: 400497 AegisName: aegis_400497 Name: Costume Academy 1st Completion Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 410 - Id: 400498 AegisName: aegis_400498 Name: Germes Horn Type: Armor Weight: 300 Defense: 20 Slots: 1 Jobs: Assassin: true Classes: All_Upper: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1127 Script: | .@r = getrefine(); bonus bStr,3; bonus bInt,3; bonus bDelayrate,-5; bonus bLongAtkRate,.@r; if (.@r>=5) bonus2 bSkillAtk,"ASC_METEORASSAULT",20; if (.@r>=7) bonus bDelayrate,-7; - Id: 400499 AegisName: aegis_400499 Name: "[Not For Sale] Germes Horn" Type: Armor Weight: 300 Defense: 20 Slots: 1 Jobs: Assassin: true Classes: All_Upper: true Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 1127 Script: | .@r = getrefine(); bonus bStr,3; bonus bInt,3; bonus bDelayrate,-5; bonus bLongAtkRate,.@r; if (.@r>=5) bonus2 bSkillAtk,"ASC_METEORASSAULT",20; if (.@r>=7) bonus bDelayrate,-7; - Id: 400500 AegisName: aegis_400500 Name: Gigant Helm Type: Armor Weight: 500 Defense: 10 Slots: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Classes: All_Upper: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1221 Script: | .@r = getrefine(); bonus bMaxHP,500; bonus2 bResEff,Eff_Stun,3000; skill "ITM_TOMAHAWK",1; bonus bHit,10*.@r; if (.@r>=5) bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if (.@r>=7) bonus2 bSkillAtk,"WS_CARTTERMINATION",15; - Id: 400501 AegisName: aegis_400501 Name: "[Not For Sale] Gigant Helm" Type: Armor Weight: 500 Defense: 10 Slots: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Classes: All_Upper: true Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1221 Script: | .@r = getrefine(); bonus bMaxHP,500; bonus2 bResEff,Eff_Stun,3000; skill "ITM_TOMAHAWK",1; bonus bHit,10*.@r; if (.@r>=5) bonus2 bSkillAtk,"WS_CARTTERMINATION",15; if (.@r>=7) bonus2 bSkillAtk,"WS_CARTTERMINATION",15; - Id: 400502 AegisName: C_Sonic_Ring Name: Costume Ring Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2433 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400503 AegisName: C_Hosangto_Hat Name: Costume Bunny Ear Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2422 - Id: 400504 AegisName: aegis_400504 Name: Autumn one piece costume # !todo check english name Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2424 - Id: 400505 AegisName: aegis_400505 Name: Striped Ribbon Hat Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2425 Script: | bonus bSpl,3+getrefine(); bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bMatkRate,40; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",BaseLevel/10; bonus2 bSkillAtk,"CD_PNEUMATICUS_PROCELLA",BaseLevel/10; bonus2 bSkillAtk,"CD_FRAMEN",BaseLevel/10; - Id: 400506 AegisName: aegis_400506 Name: Altair Hat Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2426 Script: | bonus bCon,3+getrefine(); bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bAtkRate,40; bonus2 bSkillAtk,"WH_HAWKBOOMERANG",BaseLevel/10; bonus2 bSkillAtk,"WH_HAWKRUSH",BaseLevel/10; - Id: 400509 AegisName: aegis_400509 Name: Costume Golden Whickebein's Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1588 - Id: 400510 AegisName: aegis_400510 Name: Costume Blue Kitten Ears Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1589 - Id: 400511 AegisName: aegis_400511 Name: Queen Scaraba Helmet Type: Armor Weight: 10 Defense: 20 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1231 Script: | .@r = getrefine(); bonus bPow,3; bonus bCon,3; bonus bCrt,3; bonus bBaseAtk,20*(.@r/2); bonus bCritical,4*(.@r/2); bonus bCritAtkRate,10*(.@r/3); if (.@r>=7) { bonus bAtkRate,10; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; if (.@r>=12) { bonus2 bAddRace,RC_All,15; if (.@r>=13) { bonus bFixedCast,-500; } } } } } /*Todo : After Using Transformation Scroll (Horn Scaraba) (22750)*/ /*Physical and Magical Damage to All Race 5% for 5 Minute*/ - Id: 400512 AegisName: aegis_400512 Name: Hat of Desert Type: Armor Weight: 300 Defense: 20 Slots: 1 Job: Crusader: true Knight: true Swordman: true Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1598 Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bAspd,1; if (.@r>=5) { bonus bBaseAtk,20; bonus2 bSkillAtk,"KN_BOWLINGBASH",10; if (.@r>=7) { bonus2 bSkillAtk,"KN_BOWLINGBASH",20; if (.@r>=9) { bonus2 bHPDrainRate,30,5; bonus bNoRegen,1; bonus bNoRegen,2; } } } - Id: 400513 AegisName: aegis_400513 Name: "[Not For Sale] Hat of Desert" Type: Armor Weight: 300 Defense: 20 Slots: 1 Job: Crusader: true Knight: true Swordman: true Locations: Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true View: 1598 Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bAspd,1; if (.@r>=5) { bonus bBaseAtk,20; bonus2 bSkillAtk,"KN_BOWLINGBASH",10; if (.@r>=7) { bonus2 bSkillAtk,"KN_BOWLINGBASH",20; if (.@r>=9) { bonus2 bHPDrainRate,30,5; bonus bNoRegen,1; bonus bNoRegen,2; } } } - Id: 400516 AegisName: aegis_400516 Name: Costume Skull hood Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 598 - Id: 400517 AegisName: aegis_400517 Name: Costume Fairy Tale Poison Apple Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2438 - Id: 400518 AegisName: aegis_400518 Name: Costume Juno's Eye Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 570 - Id: 400519 AegisName: aegis_400519 Name: Costume Majestic Goat of Dawn Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 513 - Id: 400520 AegisName: C_Comp_Gold_Magestic Name: "[Not for Sale] Costume Golden Magestic Goat" Type: Armor Locations: Costume_Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 1800 - Id: 400529 AegisName: Time_DM_R_Crown_DK Name: Time Dimensions Rune Crown (Dragon Knight) Type: Armor Defense: 50 Slots: 1 Jobs: Knight: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",5*(.@r/4); bonus2 bSkillAtk,"DK_HACKANDSLASHER",5*(.@r/4); if (.@r>=7) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400530 AegisName: Time_DM_R_Crown_IG Name: Time Dimensions Rune Crown (Imperial Guard) Type: Armor Defense: 50 Slots: 1 Jobs: Crusader: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"IG_OVERSLASH",5*(.@r/4); bonus2 bSkillAtk,"IG_CROSS_RAIN",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@r>=9) { bonus bPAtk,5; bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bDelayrate,-10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400531 AegisName: Time_DM_R_Crown_MT Name: Time Dimensions Rune Crown (Meister) Type: Armor Defense: 50 Slots: 1 Jobs: Blacksmith: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"MT_TRIPLE_LASER",5*(.@r/4); bonus2 bSkillAtk,"MT_MIGHTY_SMASH",5*(.@r/4); if (.@r>=7) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bBaseAtk,50; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400532 AegisName: Time_DM_R_Crown_BO Name: Time Dimensions Rune Crown (Biolo) Type: Armor Defense: 50 Slots: 1 Jobs: Alchemist: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",5*(.@r/4); bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",5*(.@r/4); if (.@r>=7) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400533 AegisName: Time_DM_R_Crown_SHC Name: Time Dimensions Rune Crown (Shadow Cross) Type: Armor Defense: 50 Slots: 1 Jobs: Assassin: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",5*(.@r/4); bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",5*(.@r/4); if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bCritical,15; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400534 AegisName: Time_DM_R_Crown_ABC Name: Time Dimensions Rune Crown (Abyss Chaser) Type: Armor Defense: 50 Slots: 1 Jobs: Rogue: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"ABC_DEFT_STAB",5*(.@r/4); bonus2 bSkillAtk,"ABC_FRENZY_SHOT",5*(.@r/4); if (.@r>=7) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400535 AegisName: Time_DM_R_Crown_AG Name: Time Dimensions Rune Crown (Arch Mage) Type: Armor Defense: 50 Slots: 1 Jobs: Wizard: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus2 bSkillAtk,"AG_CRIMSON_ARROW",5*(.@r/4); bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",5*(.@r/4); bonus2 bSkillAtk,"AG_FROZEN_SLASH",5*(.@r/4); bonus2 bSkillAtk,"AG_STORM_CANNON",5*(.@r/4); bonus2 bSkillAtk,"AG_ROCK_DOWN",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=9) { bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bMatk,50; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400536 AegisName: Time_DM_R_Crown_EM Name: Time Dimensions Rune Crown (Elemental Master) Type: Armor Defense: 50 Slots: 1 Jobs: Sage: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus2 bSkillAtk,"EM_DIAMOND_STORM",5*(.@r/4); bonus2 bSkillAtk,"EM_CONFLAGRATION",5*(.@r/4); bonus2 bSkillAtk,"EM_LIGHTNING_LAND",5*(.@r/4); bonus2 bSkillAtk,"EM_TERRA_DRIVE",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=9) { bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bMatk,50; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400537 AegisName: Time_DM_R_Crown_CD Name: Time Dimensions Rune Crown (Cardinal) Type: Armor Defense: 50 Slots: 1 Jobs: Priest: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"CD_ARBITRIUM",5*(.@r/4); bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",5*(.@r/4); bonus2 bSkillAtk,"CD_PETITIO",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@r>=9) { bonus bPAtk,5; bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400538 AegisName: Time_DM_R_Crown_IQ Name: Time Dimensions Rune Crown (Inquisitor) Type: Armor Defense: 50 Slots: 1 Jobs: Monk: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",5*(.@r/4); bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",5*(.@r/4); if (.@r>=7) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bCritical,10; bonus bMaxHPrate,3; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400539 AegisName: Time_DM_R_Crown_WH Name: Time Dimensions Rune Crown (Windhawk) Type: Armor Defense: 50 Slots: 1 Jobs: Hunter: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5*(.@r/4); bonus2 bSkillAtk,"WH_HAWKRUSH",5*(.@r/4); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400540 AegisName: Time_DM_R_Crown_TR Name: Time Dimensions Rune Crown (Troubadour & Trouvere) Type: Armor Defense: 50 Slots: 1 Jobs: BardDancer: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"TR_ROSEBLOSSOM",5*(.@r/4); bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",5*(.@r/4); bonus2 bSkillAtk,"TR_METALIC_FURY",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bMaxHPrate,3; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400541 AegisName: Time_DM_R_Crown_SS Name: Time Dimensions Rune Crown (Shinkiro & Shiranui) Type: Armor Defense: 50 Slots: 1 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"SS_KAGEGISSEN",5*(.@r/4); bonus2 bSkillAtk,"SS_SEKIENHOU",5*(.@r/4); bonus2 bSkillAtk,"SS_RAIDENPOU",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@r>=9) { bonus bPAtk,5; bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus2 bAddEle,Ele_All,3*getskilllv("KG_KYOMU"); bonus2 bMagicAddEle,Ele_All,3*getskilllv("OB_OBOROGENSOU"); } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400542 AegisName: Time_DM_R_Crown_NW Name: Time Dimensions Rune Crown (Night Watch) Type: Armor Defense: 50 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5*(.@r/4); bonus2 bSkillAtk,"NW_WILD_FIRE",5*(.@r/4); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400543 AegisName: Time_DM_R_Crown_SKE Name: Time Dimensions Rune Crown (Sky Emperor) Type: Armor Defense: 50 Slots: 1 Jobs: StarGladiator: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"SKE_SUNSET_BLAST",5*(.@r/4); bonus2 bSkillAtk,"SKE_DAWN_BREAK",5*(.@r/4); if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus bPAtk,5; if (.@r>=10) { bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; } } } } - Id: 400544 AegisName: Time_DM_R_Crown_SOA Name: Time Dimensions Rune Crown (Soul Ascetic) Type: Armor Defense: 50 Slots: 1 Jobs: SoulLinker: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLUE_DRAGON",5*(.@r/4); bonus2 bSkillAtk,"SOA_TALISMAN_OF_WHITE_TIGER",5*(.@r/4); bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",5*(.@r/4); bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=9) { bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bMatk,50; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400545 AegisName: Time_DM_R_Crown_HN Name: Time Dimensions Rune Crown (Hyper Novice) Type: Armor Defense: 50 Slots: 1 Jobs: SuperNovice: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",5*(.@r/4); bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",5*(.@r/4); bonus2 bSkillAtk,"HN_HELLS_DRIVE",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@r>=9) { bonus bPAtk,5; bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400546 AegisName: Time_DM_R_Crown_SH Name: Time Dimensions Rune Crown (Spirit Handler) Type: Armor Defense: 50 Slots: 1 Jobs: Summoner: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true View: 2441 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,120*(.@r/2); bonus bMaxSP,30*(.@r/2); bonus bMatkRate,2*(.@r/3); bonus bAtkRate,2*(.@r/3); bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",5*(.@r/4); bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",5*(.@r/4); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus bPAtk,5; bonus bSMatk,5; if (.@r>=10) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; bonus2 bAddRace,RC_All,15; bonus2 bAddRace,RC_Player_Human,-15; bonus2 bAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus bFixedCast,-500; bonus bCritical,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; } } } } - Id: 400556 AegisName: aegis_400556 Name: Inquisitor's Veil Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true View: 2447 Script: | bonus bPow,3+getrefine(); bonus2 bSubRace,RC_Player_Human,13; bonus2 bSubRace,RC_Player_Doram,13; bonus2 bSubClass,Class_Boss,20; bonus2 bSubClass,Class_Normal,20; bonus bAtkRate,40; bonus2 bSkillAtk,"IQ_MASSIVE_F_BLASTER",BaseLevel/10; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",BaseLevel/10; - Id: 400557 AegisName: aegis_400557 Name: Costume Egg Picky Doll Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1001 - Id: 400558 AegisName: aegis_400558 Name: Costume Snowman Experience Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2486 - Id: 400574 AegisName: ROZ_Bijou_Hat_Str Name: Bijou's Hat (Strength) Type: Armor Weight: 200 Defense: 9 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 1334 Script: | .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bShortAtkRate,4*(.@r/2); if (.@r>=6) { bonus bShortAtkRate,6; if (.@r>=9) { bonus2 bAddSize,Size_All,6; bonus2 bMagicAddSize,Size_All,6; if (.@r>=12) { bonus2 bIgnoreDefRaceRate,RC_All,6; bonus2 bIgnoreMdefRaceRate,RC_All,6; } } } - Id: 400575 AegisName: ROZ_Bijou_Hat_Agi Name: Bijou's Hat (Agility) Type: Armor Weight: 200 Defense: 9 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 1334 Script: | .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bAspdRate,3*(.@r/2); if (.@r>=6) { bonus bAspdRate,6; if (.@r>=9) { bonus2 bAddSize,Size_All,6; bonus2 bMagicAddSize,Size_All,6; if (.@r>=12) { bonus2 bIgnoreDefRaceRate,RC_All,6; bonus2 bIgnoreMdefRaceRate,RC_All,6; } } } - Id: 400576 AegisName: ROZ_Bijou_Hat_Vit Name: Bijou's Hat (Vitality) Type: Armor Weight: 200 Defense: 9 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 1334 Script: | .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus2 bSubSize,Size_All,.@r/2; if (.@r>=6) { bonus2 bSubSize,Size_All,6; if (.@r>=9) { bonus2 bAddSize,Size_All,6; bonus2 bMagicAddSize,Size_All,6; if (.@r>=12) { bonus2 bIgnoreDefRaceRate,RC_All,6; bonus2 bIgnoreMdefRaceRate,RC_All,6; } } } - Id: 400577 AegisName: ROZ_Bijou_Hat_Int Name: Bijou's Hat (Intelligence) Type: Armor Weight: 200 Defense: 9 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 1334 Script: | .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus2 bMagicAtkEle,Ele_All,3*(.@r/2); if (.@r>=6) { bonus2 bMagicAtkEle,Ele_All,6; if (.@r>=9) { bonus2 bAddSize,Size_All,6; bonus2 bMagicAddSize,Size_All,6; if (.@r>=12) { bonus2 bIgnoreDefRaceRate,RC_All,6; bonus2 bIgnoreMdefRaceRate,RC_All,6; } } } - Id: 400578 AegisName: ROZ_Bijou_Hat_Dex Name: Bijou's Hat (Dexterity) Type: Armor Weight: 200 Defense: 9 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 1334 Script: | .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bLongAtkRate,2*(.@r/2); if (.@r>=6) { bonus bLongAtkRate,6; if (.@r>=9) { bonus2 bAddSize,Size_All,6; bonus2 bMagicAddSize,Size_All,6; if (.@r>=12) { bonus2 bIgnoreDefRaceRate,RC_All,6; bonus2 bIgnoreMdefRaceRate,RC_All,6; } } } - Id: 400579 AegisName: ROZ_Bijou_Hat_Luk Name: Bijou's Hat (Lucky) Type: Armor Weight: 200 Defense: 9 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 165 Refineable: true View: 1334 Script: | .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bCritAtkRate,3*(.@r/2); if (.@r>=6) { bonus bCritAtkRate,6; if (.@r>=9) { bonus2 bAddSize,Size_All,6; bonus2 bMagicAddSize,Size_All,6; if (.@r>=12) { bonus2 bIgnoreDefRaceRate,RC_All,6; bonus2 bIgnoreMdefRaceRate,RC_All,6; } } } - Id: 400585 AegisName: C_SnowmanHat Name: Costume Snowman Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2488 - Id: 400605 AegisName: C_VIP_Poring_Cake_Cap Name: Costume Birthday Cake Hat Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 417 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 400608 AegisName: FuriousCirclet_WH Name: Furious Crown (Windhawk) Type: Armor Weight: 300 Defense: 30 Slots: 1 Jobs: Hunter: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 235 Refineable: true Gradable: true View: 2415 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",4*(.@r/3); bonus2 bSkillAtk,"WH_GALESTORM",4*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bLongAtkRate,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-200; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bCritAtkRate,15; bonus bCRate,5; } } } } - Id: 400609 AegisName: FuriousCirclet_CD Name: Furious Crown (Cardinal) Type: Armor Weight: 300 Defense: 30 Slots: 1 Jobs: Priest: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 235 Refineable: true Gradable: true View: 2415 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"CD_PETITIO",4*(.@r/3); bonus2 bSkillAtk,"CD_FRAMEN",4*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bShortAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; bonus bPow,5; bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-200; bonus bMatkRate,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAtkEle,Ele_All,15; bonus bCritAtkRate,15; bonus bPAtk,5; bonus bSMatk,5; } } } } - Id: 400610 AegisName: FuriousCirclet_SKE Name: Furious Crown (Sky Emperor) Type: Armor Weight: 300 Defense: 30 Slots: 1 Jobs: StarGladiator: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 235 Refineable: true Gradable: true View: 2415 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SKE_NOON_BLAST",4*(.@r/3); bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",4*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-200; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bShortAtkRate,15; bonus bPAtk,5; } } } } - Id: 400628 AegisName: FuriousCirclet_DK Name: Furious Crown (Dragon Knight) Type: Armor Weight: 300 Defense: 30 Slots: 1 Jobs: Knight: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 235 Refineable: true Gradable: true View: 2415 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",4*(.@r/3); bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",4*(.@r/3); if (.@r>=7) { bonus bAspdRate,15; if (.@r>=9) { bonus bLongAtkRate,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bCritAtkRate,10; bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-200; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bCritAtkRate,15; bonus bLongAtkRate,15; bonus bPAtk,5; } } } } - Id: 400629 AegisName: FuriousCirclet_ABC Name: Furious Crown (Abyss Chaser) Type: Armor Weight: 300 Defense: 30 Slots: 1 Jobs: Rogue: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 235 Refineable: true Gradable: true View: 2415 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",4*(.@r/3); bonus2 bSkillAtk,"ABC_DEFT_STAB",4*(.@r/3); if (.@r>=7) { bonus bAspdRate,15; if (.@r>=9) { bonus bShortAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; bonus bPow,5; bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-200; bonus bMatkRate,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bShortAtkRate,15; bonus2 bMagicAtkEle,Ele_All,15; bonus bPAtk,5; bonus bSMatk,5; } } } } - Id: 400630 AegisName: FuriousCirclet_SH Name: Furious Crown (Spirit Handler) Type: Armor Weight: 300 Defense: 30 Slots: 1 Jobs: Summoner: true Classes: Fourth: true Locations: Head_Top: true ArmorLevel: 2 EquipLevelMin: 235 Refineable: true Gradable: true View: 2415 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",4*(.@r/3); bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",4*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bFixedCast,-300; bonus bMatkRate,5; bonus bAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,3; bonus bSMatk,3; bonus bPow,5; bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bFixedCast,-200; bonus bMatkRate,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bLongAtkRate,15; bonus2 bMagicAtkEle,Ele_All,15; bonus bPAtk,5; bonus bSMatk,5; } } } } - Id: 410000 AegisName: Resonate_Taego_J Name: Ancient Resonance Type: Armor Buy: 20 Weight: 300 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1823 Script: | if (readparam(bStr)>=125) { bonus bAtkRate,10; bonus2 bAddClass,Class_Boss,10; } else if (readparam(bStr)>=90) { bonus bAtkRate,5; bonus2 bAddClass,Class_Boss,5; } else { bonus bAtkRate,2; bonus2 bAddClass,Class_Boss,2; } - Id: 410001 AegisName: Phalanx Name: Phalanx Type: Armor Buy: 20 Weight: 800 Defense: 50 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1949 Script: | bonus bMdef,3; if (readparam(bVit)>=125) { bonus2 bSubRace,RC_All,5; bonus2 bHPRegenRate,150,5000; bonus2 bHPRegenRate,15,5000; } else if (readparam(bVit)>=90) { bonus2 bSubRace,RC_All,2; bonus2 bHPRegenRate,90,5000; bonus2 bHPRegenRate,9,5000; } else { bonus2 bSubRace,RC_All,1; bonus2 bHPRegenRate,60,5000; bonus2 bHPRegenRate,6,5000; } - Id: 410002 AegisName: 711_Headphone Name: 7-Eleven Headphones Type: Armor Weight: 200 Defense: 7 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1131 Script: | bonus bMdef,11; bonus bHPGainValue,150; bonus bMagicHPGainValue,150; bonus bSPGainValue,15; bonus bMagicSPGainValue,15; bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410003 AegisName: 711_Headphone_ Name: 7-Eleven Headphones Type: Armor Weight: 200 Defense: 7 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1131 Script: | bonus bMdef,11; bonus bHPGainValue,150; bonus bMagicHPGainValue,150; bonus bSPGainValue,15; bonus bMagicSPGainValue,15; bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410004 AegisName: Gambler_Seal_ Name: Gambler's Seal Type: Armor Buy: 20 Weight: 500 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 70 View: 1202 Script: | .@dex = readparam(bDex); .@luk = readparam(bLuk); .@critical = 3 + (.@luk / 10); .@critical_dmg = 3 - (.@dex/10) * 2; .@sub_arrowstorm = 10; .@sub_gateofhell = 10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk / 10) * 2; if (.@luk > 107) { .@critical += 5; .@critical_dmg += 10; } if (.@luk > 119) { .@critical += 10; .@critical_dmg += 17; .@sub_arrowstorm += 30; .@sub_gateofhell += 30; } bonus bCritical,.@critical; bonus bCritAtkRate,.@critical_dmg; bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm; bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell; - Id: 410005 AegisName: C_Magic_Heir_TW Name: Costume Magic Heir Type: Armor View: 1996 Locations: Costume_Head_Mid: true ArmorLevel: 1 Script: | hateffect HAT_EF_C_Magic_Heir_TW,true; UnEquipScript: | hateffect HAT_EF_C_Magic_Heir_TW,false; - Id: 410006 AegisName: aegis_410006 Name: Costume Sudden Wealth Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1997 Script: | hateffect HAT_EF_C_SUDDEN_WEALTH_TW,true; UnEquipScript: | hateffect HAT_EF_C_SUDDEN_WEALTH_TW,false; - Id: 410007 AegisName: JP_Helm31_L Name: "[Rental] Citrus Ribbon" Type: Armor Weight: 500 Defense: 5 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 90 View: 1900 Script: | bonus bMdef,3; bonus2 bAddClass,Class_Boss,7; bonus bPerfectHitAddRate,20; - Id: 410008 AegisName: JP_Helm32_L Name: "[Rental] Phalanx" Type: Armor Buy: 20 Weight: 800 Defense: 50 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 View: 1949 Script: | bonus bMdef,3; if (readparam(bVit)>=125) { bonus2 bSubRace,RC_All,5; bonus2 bHPRegenRate,150,5000; bonus2 bHPRegenRate,15,5000; } else if (readparam(bVit)>=90) { bonus2 bSubRace,RC_All,2; bonus2 bHPRegenRate,90,5000; bonus2 bHPRegenRate,9,5000; } else { bonus2 bSubRace,RC_All,1; bonus2 bHPRegenRate,60,5000; bonus2 bHPRegenRate,6,5000; } - Id: 410009 AegisName: Rainbow_Star_ Name: Rainbow Star Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1019 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Silence,10000; if (getskilllv("RA_RESEARCHTRAP") == 10) bonus bPerfectHitAddRate,30; if (getskilllv("RA_UNLIMIT") == 5) bonus bFixedCastrate,-70; - Id: 410010 AegisName: Eyes_Of_Illusion_ Name: Eyes of Illusion Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1779 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("GN_ILLUSIONDOPING") == 5) skill "SA_DISPELL",5; if (getskilllv("GN_MANDRAGORA") == 5) bonus bFixedCastrate,-70; - Id: 410011 AegisName: C_Dark_Blindfold Name: Costume Dark Blinkers Type: Armor View: 187 Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 410012 AegisName: EXP_Processor Name: EXP Advisor Type: Armor Locations: Head_Mid: true ArmorLevel: 1 View: 1266 Script: | bonus2 bExpAddRace,RC_All,2; - Id: 410013 AegisName: EXP_Processor_ Name: EXP Advisor Type: Armor Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 1266 Script: | bonus2 bExpAddRace,RC_All,1; - Id: 410014 AegisName: Cor_Core_Headset Name: Cor Core Headphone Type: Armor View: 2017 Weight: 100 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,3; bonus bDelayrate,-10; - Id: 410015 AegisName: Cor_Core_Headset_ Name: Cor Core Headphone Type: Armor View: 2017 Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,3; bonus bDelayrate,-10; - Id: 410016 AegisName: Battle_Processor Name: Battle Processor Type: Armor View: 1552 Locations: Head_Mid: true ArmorLevel: 1 Script: | bonus bMatk,20; bonus bBaseAtk,20; - Id: 410017 AegisName: Battle_Processor_ Name: Battle Processor Type: Armor View: 1552 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 Script: | bonus bMatk,10; bonus bBaseAtk,10; - Id: 410018 AegisName: Booster_Mask_A Name: Booster Mask A-type Type: Armor View: 876 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bDelayrate,-8; - Id: 410019 AegisName: Booster_Mask_B Name: Booster Mask B-type Type: Armor View: 917 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVariableCastrate,-8; - Id: 410020 AegisName: Booster_Mask_C Name: Booster Mask C-type Type: Armor View: 906 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,8; - Id: 410021 AegisName: C_Resonate_Taego_J Name: Costume Ancient Resonance Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1823 Script: | hateffect(HAT_EF_RESONATETAEGO,true); UnEquipScript: | hateffect(HAT_EF_RESONATETAEGO,false); - Id: 410022 AegisName: C_Peking_b_mask_J Name: Costume Blue Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 545 - Id: 410023 AegisName: Ribbon_Of_Life_J Name: Brazil Twin Ribbon Type: Armor View: 575 Weight: 300 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Sleep,10000; skill "DC_DANCINGLESSON",getskilllv("BA_MUSICALLESSON"); skill "BA_MUSICALLESSON",getskilllv("DC_DANCINGLESSON"); if (getskilllv("WM_UNLIMITED_HUMMING_VOICE") == 5) bonus bPerfectHitAddRate,30; if (getskilllv("WM_GLOOMYDAY") == 5) { skill "DC_FORTUNEKISS",getskilllv("BA_POEMBRAGI"); skill "BA_POEMBRAGI",getskilllv("DC_FORTUNEKISS"); } - Id: 410024 AegisName: Ribbon_Of_Life_J_ Name: Twin Ribbon of Gemini Type: Armor View: 575 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Sleep,10000; skill "DC_DANCINGLESSON",getskilllv("BA_MUSICALLESSON"); skill "BA_MUSICALLESSON",getskilllv("DC_DANCINGLESSON"); if (getskilllv("WM_UNLIMITED_HUMMING_VOICE") == 5) bonus bPerfectHitAddRate,30; if (getskilllv("WM_GLOOMYDAY") == 5) { skill "DC_FORTUNEKISS",getskilllv("BA_POEMBRAGI"); skill "BA_POEMBRAGI",getskilllv("DC_FORTUNEKISS"); } - Id: 410025 AegisName: Magic_Heir_J Name: Floating Artifacts Type: Armor Buy: 20 Weight: 200 Defense: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1996 Script: | bonus bMdef,5; bonus bHPGainValue,150; bonus bMagicHPGainValue,150; bonus bSPGainValue,15; bonus bMagicSPGainValue,15; bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410026 AegisName: Magic_Heir_J_ Name: Floating Artifacts Type: Armor Buy: 20 Weight: 200 Defense: 10 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1996 Script: | bonus bMdef,5; bonus bHPGainValue,150; bonus bMagicHPGainValue,150; bonus bSPGainValue,15; bonus bMagicSPGainValue,15; bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410027 AegisName: Wonder_Egg_Basket Name: Wonder Egg Basket Type: Armor Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2055 Script: | bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; switch( getpetinfo(PETINFO_EGGID) ) { case 9112: // Moonlight_Egg bonus2 bHPVanishRate,40,4; break; case 9088: // Angeling_Egg bonus bBaseAtk,readparam(bLuk); bonus bMatk,readparam(bLuk); bonus2 bExpAddClass,Class_All,5; break; case 9096: // Cat_O_Nine_Tail_Egg bonus2 bAddRace,RC_Demon,30; bonus2 bMagicAddRace,RC_Demon,30; bonus2 bSubRace,RC_Demon,5; break; case 9087: // High_Orc_Egg bonus2 bAddRace,RC_Brute,30; bonus2 bMagicAddRace,RC_Brute,30; bonus2 bSubRace,RC_Brute,5; break; case 9069: // Mastering_Egg bonus2 bAddRace,RC_Plant,30; bonus2 bMagicAddRace,RC_Plant,30; bonus2 bSubRace,RC_Plant,5; break; case 9106: // Metaller_Egg bonus3 bAutoSpell,"WM_METALICSOUND",5,150; break; } - Id: 410028 AegisName: Wonder_Egg_Basket_ Name: Wonder Egg Basket Type: Armor Buy: 20 View: 2055 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; switch( getpetinfo(PETINFO_EGGID) ) { case 9109: // Sweet_Drops_Egg case 9112: // Moonlight_Egg case 9115: // Bacsojin_Egg2 case 9121: // Orc_Hero_Egg_ case 9126: // Kiel_Egg case 9136: // Eddga_Egg bonus bBaseAtk,200; bonus bMatk,200; bonus bAllStats,10; break; case 9088: // Angeling_Egg case 9108: // Xm_Teddybear_Egg case 9113: // Roost_Of_Skelion bonus bBaseAtk,200; bonus bMatk,200; bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; break; case 9069: // Mastering_Egg case 9087: // High_Orc_Egg case 9096: // Cat_O_Nine_Tail_Egg case 9106: // Metaller_Egg case 9117: // Contaminated_Wanderer_Egg case 9118: // Aliot_Egg case 9119: // Alicel_Egg case 9120: // Aliza_Egg case 9124: // Ep17_2_C_Admin2_Egg bonus bBaseAtk,200; bonus bMatk,200; bonus bDef,150; bonus bMdef,15; break; } - Id: 410029 AegisName: C_Wonder_Egg_Basket Name: Costume Wonder Egg Basket Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2055 - Id: 410030 AegisName: C_Country_Tail_BU Name: Costume Country Tail (Blue) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2039 - Id: 410031 AegisName: C_Country_Tail_RD Name: Costume Country Tail (Red) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2040 - Id: 410032 AegisName: C_Country_Tail_YL Name: Costume Country Tail (Yellow) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2041 - Id: 410033 AegisName: C_Country_Tail_GN Name: Costume Country Tail (Green) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2042 - Id: 410034 AegisName: C_Country_Tail_BL Name: Costume Country Tail (Black) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2043 - Id: 410035 AegisName: C_Country_Tail_WH Name: Costume Country Tail (White) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2044 - Id: 410036 AegisName: C_Country_Tail_OM Name: Costume Country Tail (Brown) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2045 - Id: 410037 AegisName: C_Country_Tail_PP Name: Costume Country Tail (Purple) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2046 - Id: 410038 AegisName: C_Braid_Half_Up_BU Name: Costume Braid Half Up (Blue) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2047 - Id: 410039 AegisName: C_Braid_Half_Up_RD Name: Costume Braid Half Up (Red) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2048 - Id: 410040 AegisName: C_Braid_Half_Up_YL Name: Costume Braid Half Up (Yellow) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2049 - Id: 410041 AegisName: C_Braid_Half_Up_GN Name: Costume Braid Half Up (Green) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2050 - Id: 410042 AegisName: C_Braid_Half_Up_BL Name: Costume Braid Half Up (Black) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2051 - Id: 410043 AegisName: C_Braid_Half_Up_WH Name: Costume Braid Half Up (White) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2052 - Id: 410044 AegisName: C_Braid_Half_Up_OM Name: Costume Braid Half Up (Brown) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2053 - Id: 410045 AegisName: C_Braid_Half_Up_PP Name: Costume Braid Half Up (Purple) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2054 - Id: 410046 AegisName: C_18y_Hat_JP Name: Costume 18th Anniversary Board Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2015 - Id: 410047 AegisName: C_Mask_of_Hero Name: Costume Hero Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1367 - Id: 410048 AegisName: C_Tiger Name: Costume Tiger Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2058 - Id: 410049 AegisName: C_Blink_Eyes_Golden Name: Costume Blinking Golden Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2060 - Id: 410050 AegisName: C_Puriku_Pcha Name: Costume Puriku White Tea Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2075 - Id: 410051 AegisName: C_Falling_Snow Name: Costume Falling Snow Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2080 Script: | hateffect HAT_EF_FALLING_SNOW,true; UnEquipScript: | hateffect HAT_EF_FALLING_SNOW,false; - Id: 410053 AegisName: C_Exosrcist_Glass Name: Costume Exorcist Glasses Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1169 - Id: 410054 AegisName: C_Long_Ribbon Name: Costume Long Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2083 - Id: 410055 AegisName: C_Floating_Parasol Name: Costume Floating Parasol Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2082 - Id: 410056 AegisName: C_Poulet_TW Name: Costume Poulet Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2086 - Id: 410057 AegisName: YinYang_Earring_Y Name: Yinyang Earring (Yellow) Type: Armor Buy: 20 Weight: 500 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2088 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Silence,10000; if (getskilllv("SJ_LIGHTOFMOON") == 5) bonus bFixedCastrate,-70; if (getskilllv("SJ_FULLMOONKICK") == 10) { bonus2 bAddSize,Size_All,15; bonus bHPGainValue,150; bonus bSPGainValue,15; } - Id: 410058 AegisName: YinYang_Earring_Y_ Name: Yinyang Earring (Yellow) Type: Armor Buy: 20 Weight: 500 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2088 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Silence,10000; if (getskilllv("SJ_LIGHTOFMOON") == 5) bonus bFixedCastrate,-70; if (getskilllv("SJ_FULLMOONKICK") == 10) { bonus2 bAddSize,Size_All,15; bonus bHPGainValue,150; bonus bSPGainValue,15; } - Id: 410059 AegisName: C_ZoMask_Green_TW Name: Costume Ghoul Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2092 - Id: 410060 AegisName: C_Ghost_Bat_TW Name: Costume Ghost Bat Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2093 - Id: 410061 AegisName: C_Deviruchi_Apron Name: Costume Deviruchi Apron Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2095 - Id: 410062 AegisName: C_Carefree_Face Name: Costume Carefree Face Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2113 - Id: 410063 AegisName: C_Cherry_Ribbon Name: Costume Cherry Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2112 - Id: 410064 AegisName: Diving_Goggles Name: Diving Goggles Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2116 Script: | bonus bMaxHPrate,15; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bHealPower,25; if (getskilllv("SU_SPIRITOFSEA") == 1) skill "MG_SAFETYWALL",10; if (getskilllv("SU_GROOMING") == 5) bonus bFixedCastrate,-70; - Id: 410065 AegisName: Diving_Goggles_ Name: Diving Goggles Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2116 Script: | bonus bMaxHPrate,15; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bHealPower,25; if (getskilllv("SU_SPIRITOFSEA") == 1) skill "MG_SAFETYWALL",10; if (getskilllv("SU_GROOMING") == 5) bonus bFixedCastrate,-70; - Id: 410066 AegisName: Professor_MiniGlass Name: Professor's Mini Glasses Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2118 Script: | bonus2 bMagicAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Sleep,10000; if (getskilllv("SO_PSYCHIC_WAVE") == 5) { bonus2 bFixedCastrate,"SO_PSYCHIC_WAVE",-100; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-4000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-4000; } if (getskilllv("SO_VACUUM_EXTREME") == 5) bonus bDelayrate,-15; - Id: 410067 AegisName: Professor_MiniGlass_ Name: Professor's Mini Glasses Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2118 Script: | bonus2 bMagicAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Sleep,10000; if (getskilllv("SO_PSYCHIC_WAVE") == 5) { bonus2 bFixedCastrate,"SO_PSYCHIC_WAVE",-100; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-4000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-4000; } if (getskilllv("SO_VACUUM_EXTREME") == 5) bonus bDelayrate,-15; - Id: 410068 AegisName: C_Fish_Marche Name: Costume Fish Marche Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2126 - Id: 410069 AegisName: C_Pet_Popcorn_Box Name: Costume Pet Popcorn Box Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2142 - Id: 410070 AegisName: Demons_Familiar Name: Demon's Familiar Type: Armor Buy: 20 Weight: 200 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2127 Script: | bonus bAllStats,10; - Id: 410071 AegisName: Demons_Familiar_ Name: Demons Familiar Type: Armor Buy: 20 Weight: 200 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2127 Script: | bonus bAllStats,10; - Id: 410072 AegisName: C_Demons_Familiar Name: Costume Demons Familiar Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2127 - Id: 410073 AegisName: C_Diadem_V Name: Costume Diadem Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 335 - Id: 410074 AegisName: C_Gravekeeper_Blinker Name: Costume Gravekeeper Blinker Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1210 - Id: 410075 AegisName: C_Pig_Boy_J Name: Costume Hagu Hagu Poring Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1872 - Id: 410076 AegisName: C_Pig_Girl_J Name: Costume Hagu Hagu Marin Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1871 - Id: 410077 AegisName: C_Happy_Balloon Name: Costume Happy Balloon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1183 - Id: 410078 AegisName: C_2021RTC_Headset_TW Name: Costume 2021RTC Gaming Headset Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2134 - Id: 410079 AegisName: Deepblue_Sunglasses Name: Deep Blue Sunglasses Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 View: 1169 Script: | bonus bVariableCastrate,-10; - Id: 410080 AegisName: Deepblue_Sunglasses_ Name: Deep Blue Sunglasses Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 1169 Script: | bonus bVariableCastrate,-5; - Id: 410081 AegisName: C_Released_Ground Name: Costume Released Ground Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2136 Script: | hateffect HAT_EF_C_Released_Ground,true; UnEquipScript: | hateffect HAT_EF_C_Released_Ground,false; - Id: 410082 AegisName: C_BirthDay_Balloon_TW Name: Costume Happy Carnival Balloon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2137 - Id: 410083 AegisName: C_Scuba_Mask Name: Costume Scuba Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 400 - Id: 410084 AegisName: Melon_Headphone_J_ Name: Premium Melon Headphones Type: Armor View: 2129 Buy: 2000000 Weight: 200 Defense: 6 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; - Id: 410085 AegisName: Melon_Headphone_J Name: Premium Melon Headphones Type: Armor View: 2129 Buy: 2000000 Weight: 200 Defense: 6 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; - Id: 410086 AegisName: C_Melon_Headphone_J Name: Costume Melon Headphone # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2129 - Id: 410087 AegisName: C_Demons_Familiar_K Name: Costume Robotic Watcher Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2127 - Id: 410088 AegisName: Supplement_P_Income Name: Powered Income Type: Armor Buy: 20 Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2148 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("NC_NEUTRALBARRIER") == 3) bonus bDelayrate,-15; if (getskilllv("NC_RESEARCHFE") == 5) { bonus2 bVariableCastrate,"NC_ARMSCANNON",-100; bonus bNoMadoFuel; } - Id: 410089 AegisName: Supplement_P_Income_ Name: Powered Income Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2148 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("NC_NEUTRALBARRIER") == 3) bonus bDelayrate,-15; if (getskilllv("NC_RESEARCHFE") == 5) { bonus2 bVariableCastrate,"NC_ARMSCANNON",-100; bonus bNoMadoFuel; } - Id: 410090 AegisName: Love_Cheek_TW Name: Love Redness Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 90 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true View: 1318 - Id: 410091 AegisName: Cor_Core_Booster Name: Cor Core Booster Type: Armor Weight: 100 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 View: 2017 Script: | bonus bDelayrate,-8; bonus bVariableCastrate,-8; - Id: 410092 AegisName: Cor_Core_Booster_ Name: Cor Core Booster Type: Armor Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 View: 2017 Script: | bonus bDelayrate,-5; bonus bVariableCastrate,-5; - Id: 410093 AegisName: Chain_Of_Seal Name: Sealed Chain Type: Armor Weight: 100 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 View: 1417 Script: | bonus bLongAtkRate,8; bonus bShortAtkRate,8; bonus bCritical,8; - Id: 410094 AegisName: Chain_Of_Seal_ Name: Sealed Chain Type: Armor Weight: 100 Defense: 5 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 View: 1417 Script: | bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bCritical,5; - Id: 410095 AegisName: C_White_Cat_On_Shoulder Name: Costume White Cat on Shoulder Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2151 - Id: 410096 AegisName: Pope_Ribbon_R Name: Red Pope Ribbon Type: Armor View: 2152 Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bMagicAddSize,Size_All,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bResEff,Eff_Confusion,10000; if (getskilllv("SP_SWHOO") == 10) { bonus2 bFixedCastrate,"SP_SPA",-100; bonus2 bFixedCastrate,"SP_SWHOO",-100; } if (getskilllv("SP_SOULUNITY") == 7) bonus bAspd,2; - Id: 410097 AegisName: Pope_Ribbon_R_ Name: Red Pope Ribbon Type: Armor View: 2152 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bMagicAddSize,Size_All,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bResEff,Eff_Confusion,10000; if (getskilllv("SP_SWHOO") == 10) { bonus2 bFixedCastrate,"SP_SPA",-100; bonus2 bFixedCastrate,"SP_SWHOO",-100; } if (getskilllv("SP_SOULUNITY") == 7) bonus bAspd,2; - Id: 410098 AegisName: C_Nero_Mask Name: Costume Nero Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 917 - Id: 410099 AegisName: C_Avenger Name: Costume Avenger Type: Armor Jobs: All: true Summoner: false Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2156 - Id: 410100 AegisName: 2021RTC_Headset_1_TW Name: 2021RTC Champion Gaming Headset Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2157 Script: | bonus bFixedCast,-500; bonus bShortAtkRate,10; bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bDelayrate,-5; - Id: 410101 AegisName: 2021RTC_Headset_2_TW Name: 2021RTC Runner-Up Gaming Headset Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2160 Script: | bonus bFixedCast,-300; bonus bShortAtkRate,6; bonus bLongAtkRate,6; bonus2 bMagicAtkEle,Ele_All,6; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus bDelayrate,-3; - Id: 410102 AegisName: 2021RTC_Headset_3_TW Name: 2021RTC 3rd Place Gaming Headset Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2161 Script: | bonus bFixedCast,-200; bonus bShortAtkRate,3; bonus bLongAtkRate,3; bonus2 bMagicAtkEle,Ele_All,3; bonus2 bSubRace,RC_DemiHuman,1; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; bonus bDelayrate,-1; - Id: 410103 AegisName: C_Silk_Of_Soul Name: Costume Soul Silk Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2171 - Id: 410104 AegisName: C_Lude_Mask_V Name: Costume Lude Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 802 - Id: 410105 AegisName: C_Cube_Mask_V Name: Costume Cube Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 472 - Id: 410107 AegisName: C_Straw_Rice_Bag_V Name: Costume Rice Bale (Middle) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1273 - Id: 410108 AegisName: C_B_Shiba_Inu_TW Name: Costume Black Shiba Inu Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2169 - Id: 410109 AegisName: Fluffy_Lovely_Fox Name: Fluffy Lovely Fox Type: Armor Buy: 20 Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2178 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Confusion,10000; bonus bVit,5*getskilllv("SU_HISS"); if (getskilllv("SU_SPIRITOFLIFE") ==1) { bonus2 bVariableCastrate,"SU_STOOP",-100; bonus2 bVariableCastrate,"SU_LOPE",-100; autobonus3 "{ .@val = max(100, (Hp/1000)); bonus2 bSkillAtk,\"SU_PICKYPECK\",.@val; bonus2 bSkillAtk,\"SU_SCAROFTAROU\",.@val; bonus2 bSkillAtk,\"SU_LUNATICCARROTBEAT\",.@val; bonus2 bSkillAtk,\"SU_SVG_SPIRIT\",.@val; }",1000,15000,"SU_SCAROFTAROU"; } - Id: 410110 AegisName: Fluffy_Lovely_Fox_ Name: Fluffy Lovely Fox Type: Armor Buy: 20 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2178 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Confusion,10000; bonus bVit,5*getskilllv("SU_HISS"); if (getskilllv("SU_SPIRITOFLIFE") ==1) { bonus2 bVariableCastrate,"SU_STOOP",-100; bonus2 bVariableCastrate,"SU_LOPE",-100; autobonus3 "{ .@val = max(100, (Hp/1000)); bonus2 bSkillAtk,\"SU_PICKYPECK\",.@val; bonus2 bSkillAtk,\"SU_SCAROFTAROU\",.@val; bonus2 bSkillAtk,\"SU_LUNATICCARROTBEAT\",.@val; bonus2 bSkillAtk,\"SU_SVG_SPIRIT\",.@val; }",1000,15000,"SU_SCAROFTAROU"; } - Id: 410111 AegisName: C_Intake_BU Name: Costume Intake(Blue) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2182 - Id: 410112 AegisName: C_Intake_RD Name: Costume Intake(Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2183 - Id: 410113 AegisName: C_Intake_YL Name: Costume Intake(Yellow) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2184 - Id: 410114 AegisName: C_Intake_GN Name: Costume Intake(Green) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2185 - Id: 410115 AegisName: C_Intake_BL Name: Costume Intake(Black) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2186 - Id: 410116 AegisName: C_Intake_WH Name: Costume Intake(White) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2187 - Id: 410117 AegisName: C_Intake_OM Name: Costume Intake(Orange) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2188 - Id: 410118 AegisName: C_Intake_PP Name: Costume Intake(Purple) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2189 - Id: 410119 AegisName: Guardian_Helm Name: Guardian Helm Type: Armor Buy: 20 Weight: 300 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2199 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_DemiHuman,5; - Id: 410120 AegisName: Guardian_Helm_ Name: Guardian Helm Type: Armor Buy: 20 Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2199 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_DemiHuman,5; - Id: 410121 AegisName: C_Guardian_Helm Name: Costume Guardian Helm Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2199 - Id: 410122 AegisName: C_B_Thin_Eyes_B_TW Name: Costume Blinking Small Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2201 - Id: 410123 AegisName: C_Bear_Head_J Name: Costume Bear Head Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2147 - Id: 410124 AegisName: Grisly_Soul Name: Ears of Grisly Soul Type: Armor Buy: 20 Weight: 300 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2212 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus bNoCastCancel; if (getskilllv("SR_EARTHSHAKER") == 5) { bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; } if (getskilllv("SR_RIDEINLIGHTNING") == 5) bonus bAspdRate,15; - Id: 410125 AegisName: Grisly_Soul_ Name: Ears of Grisly Soul Type: Armor Buy: 20 Weight: 300 Slots: 1 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2212 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus bNoCastCancel; if (getskilllv("SR_EARTHSHAKER") == 5) { bonus2 bFixedCastrate,"SR_HOWLINGOFLION",-100; bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-9500; } if (getskilllv("SR_RIDEINLIGHTNING") == 5) bonus bAspdRate,15; - Id: 410126 AegisName: C_Professor_MiniGlass Name: Costume Professor's Mini Glass Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2118 - Id: 410127 AegisName: C_Spot_Light Name: Costume Spotlight Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 Script: | hateffect HAT_EF_C_SPOT_LIGHT,true; UnEquipScript: | hateffect HAT_EF_C_SPOT_LIGHT,false; - Id: 410128 AegisName: C_Supplement_P_Income Name: Costume Powered Income Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2148 - Id: 410129 AegisName: Phantom_Ear Name: Phantom Ears Type: Armor Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2226 Script: | bonus2 bMagicAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Sleep,10000; if (getskilllv("WL_TELEKINESIS_INTENSE")>=5) { bonus2 bFixedCastrate,"WL_JACKFROST",-100; bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-80000; } if (getskilllv("WL_RECOGNIZEDSPELL")>=5) bonus bDelayrate,-15; UnEquipScript: | sc_end SC_RECOGNIZEDSPELL; - Id: 410130 AegisName: Phantom_Ear_ Name: Phantom Ears Type: Armor Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2226 Script: | bonus2 bMagicAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Sleep,10000; if (getskilllv("WL_TELEKINESIS_INTENSE")>=5) { bonus2 bFixedCastrate,"WL_JACKFROST",-100; bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-80000; } if (getskilllv("WL_RECOGNIZEDSPELL")>=5) bonus bDelayrate,-15; UnEquipScript: | sc_end SC_RECOGNIZEDSPELL; - Id: 410131 AegisName: C_Tiger_WH Name: Costume Tiger (White) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2244 - Id: 410132 AegisName: C_Tiger_BL Name: Costume Tiger (Black) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2245 - Id: 410133 AegisName: C_Belka_Strelka Name: Costume Puppy Diverse Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2246 - Id: 410136 AegisName: aegis_410136 Name: Raven Of Tomb Type: Armor Weight: 10 Defense: 10 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 1035 Script: | if (readparam(bStr) >= 100) { bonus2 bAddClass,Class_All,4; bonus bHit,10; if (readparam(bStr) >= 120) { bonus2 bAddClass,Class_All,6; bonus bHit,10; } } if (readparam(bInt) >= 100) { bonus bMatkRate,4; bonus2 bMagicAtkEle,Ele_All,4; if (readparam(bInt) >= 120) { bonus bMatkRate,6; bonus2 bMagicAtkEle,Ele_All,6; } } if (readparam(bDex) >= 100) { bonus bDelayrate,-3; bonus bCritical,4; if (readparam(bDex) >= 120) { bonus bDelayrate,-3; bonus bCritical,6; } } if (readparam(bVit) >= 100) { bonus bMaxHPrate,4; bonus bAspdRate,4; if (readparam(bVit) >= 120) { bonus bMaxHPrate,4; bonus bAspdRate,4; } } if (readparam(bLuk) >= 100) { bonus bBaseAtk,20; bonus bMatk,20; if (readparam(bLuk) >= 120) { bonus bBaseAtk,40; bonus bMatk,40; } } if (readparam(bAgi) >= 100) { bonus bFlee,10; bonus bCritAtkRate,7; if (readparam(bAgi) >= 120) { bonus bFlee,10; bonus bCritAtkRate,7; } } - Id: 410138 AegisName: C_Flowerpot_Mask_V Name: Costume Flower Pot Mask (Middle) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1086 - Id: 410139 AegisName: aegis_410139 Name: Wings of Asmodeus Type: Armor Weight: 300 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2249 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("RK_IGNITIONBREAK") == 5) { bonus2 bFixedCastrate,"RK_REFRESH",-100; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-2500; } if (getskilllv("RK_SONICWAVE") == 10) bonus bPerfectHitAddRate,25; - Id: 410140 AegisName: Hairband_Of_Asmodeus_ Name: Wings of Asmodeus Type: Armor Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2249 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bResEff,Eff_Blind,10000; if (getskilllv("RK_IGNITIONBREAK") == 5) { bonus2 bFixedCastrate,"RK_REFRESH",-100; bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-2500; } if (getskilllv("RK_SONICWAVE") == 10) bonus bPerfectHitAddRate,25; - Id: 410141 AegisName: GorgonCoronet Name: Gorgon Coronet Type: Armor Weight: 300 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2250 Script: | bonus bMaxHPrate,15; bonus2 bSubRace,RC_All,5; - Id: 410142 AegisName: aegis_410142 Name: Gorgon Coronet Type: Armor Weight: 300 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2250 Script: | bonus bMaxHPrate,15; bonus2 bSubRace,RC_All,5; - Id: 410143 AegisName: C_Charlie_Beard Name: Costume Charlie's Mustache Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 700 - Id: 410144 AegisName: C_Omega_Golf_Bag Name: "Costume: Omega Golf Bag" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2251 - Id: 410145 AegisName: C_Agnes_Mini Name: "Costume: Agnes Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2254 - Id: 410146 AegisName: C_Debris_Mini Name: "Costume: De Vries Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2255 - Id: 410147 AegisName: C_ElenaVolkova_Mini Name: "Costume: Elena Volkova Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2256 - Id: 410148 AegisName: C_Elumina_Mini Name: "Costume: Elumina Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2257 - Id: 410149 AegisName: C_Berner_Mini Name: "Costume: Eisen Werner Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2258 - Id: 410154 AegisName: aegis_410154 Name: Costume Flowery Vision Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1744 - Id: 410155 AegisName: aegis_410155 Name: Costume Twin Margaret Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1472 - Id: 410156 AegisName: C_Bouquet_Valletta Name: Costume Bouquet Valletta Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2263 - Id: 410157 AegisName: C_Happening_Clover Name: Costume Happening Clover Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2262 - Id: 410158 AegisName: aegis_410158 Name: Magic Celestial Globe Type: Armor Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2265 Script: | bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410159 AegisName: aegis_410159 Name: Magic Celestial Globe Type: Armor Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2265 Script: | bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410160 AegisName: aegis_410160 Name: Costume Magic Orb # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2265 - Id: 410167 AegisName: aegis_410167 Name: Costume Popcorn Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2142 - Id: 410168 AegisName: aegis_410168 Name: Costume Heart balloon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1039 - Id: 410169 AegisName: aegis_410169 Name: Costume Fluffy Lovely Fox Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2178 - Id: 410170 AegisName: C_Star_Eyepatch Name: Costume Star Eyepatch Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 800 - Id: 410171 AegisName: C_Wish_Tree_Hat_J Name: Costume Wishing Tree Hat Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1270 - Id: 410178 AegisName: C_Princess_Headphone Name: Costume Princess Headphones Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2275 - Id: 410179 AegisName: aegis_410179 Name: Costume Queen Melon Headphones Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2276 - Id: 410182 AegisName: C_Traveller_Oil_Lantern Name: Costume Traveler's Oil Lantern Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2280 - Id: 410185 AegisName: Rebel_Pocket_Watch Name: Rebellion Pocket Watch Type: Armor View: 2289 Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Silence,10000; if (getskilllv("RL_FALLEN_ANGEL") == 1) { bonus2 bSkillCooldown,"RL_AM_BLAST",-5000; bonus2 bSkillCooldown,"RL_RICHS_COIN",-3000; } if (getskilllv("RL_P_ALTER") == 5) bonus bDelayrate,-15; - Id: 410186 AegisName: aegis_410186 Name: Rebellion Pocket Watch Type: Armor View: 2289 Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddSize,Size_All,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bResEff,Eff_Silence,10000; if (getskilllv("RL_FALLEN_ANGEL") == 1) { bonus2 bSkillCooldown,"RL_AM_BLAST",-5000; bonus2 bSkillCooldown,"RL_RICHS_COIN",-3000; } if (getskilllv("RL_P_ALTER") == 5) bonus bDelayrate,-15; - Id: 410187 AegisName: C_Diving_Goggles Name: Costume Diving Goggles Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2116 - Id: 410188 AegisName: C_King_Mini Name: "Costume: King Mini-Me" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2290 - Id: 410189 AegisName: C_Angeling_Mini Name: "Costume: Angeling Mini-Me" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2291 - Id: 410190 AegisName: C_Seyren_Mini Name: "Costume: Seyren Mini-Me" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2292 - Id: 410191 AegisName: C_Spica_Mini Name: "Costume: Spica Nerius Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2307 - Id: 410192 AegisName: C_Evil_Mini Name: "Costume: Evil Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2304 - Id: 410193 AegisName: C_Gulaling_Mini Name: "Costume: Gularing Mini-Me" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2293 - Id: 410194 AegisName: aegis_410194 Name: Costume White Fox Mask (Middle) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 403 - Id: 410195 AegisName: aegis_410195 Name: Costume Fluffy Lovely Fox Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2178 - Id: 410196 AegisName: C_YinYang_Earring_Y Name: Costume Yinyang Earrings (Yellow) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2088 - Id: 410198 AegisName: C_2022Cosutama_Imp_JP Name: Costume Deviruchi Party Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2299 - Id: 410199 AegisName: C_Midnight_Candle Name: Costume Midnight Candle Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2301 - Id: 410200 AegisName: C_Serving_Rabbit Name: Costume Butler Bunny Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2362 - Id: 410201 AegisName: C_Spinning_Skulls Name: Costume Haunting Skull Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2363 - Id: 410202 AegisName: C_ROROGO Name: Costume Poring Scooter Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2303 - Id: 410205 AegisName: C_Marlbron_Mini Name: "Costume: Marlbron Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2306 - Id: 410206 AegisName: C_Lehar_Mini Name: "Costume: Lehar Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2305 - Id: 410207 AegisName: aegis_410207 Name: Silk of Soul Type: Armor Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2171 - Id: 410208 AegisName: aegis_410208 Name: 1Lv Glasses Type: Armor Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 View: 3 - Id: 410209 AegisName: aegis_410209 Name: Level 2 Glasses # !todo check english name Type: Armor Slots: 1 Locations: Head_Mid: true ArmorLevel: 2 View: 3 - Id: 410210 AegisName: aegis_410210 Name: Little Abyss Dragon Type: Armor Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2316 Script: | bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410211 AegisName: aegis_410211 Name: Little Abyss Dragon Type: Armor Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2316 Script: | bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410212 AegisName: C_Little_Abyss_Dragon Name: Costume Little Abyss Dragon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2316 - Id: 410213 AegisName: Ear_OF_Bloody Name: Bloody Ears Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2318 Script: | .@a = (readparam(bDex)+readparam(bLuk))/15; .@b = (readparam(bDex)+readparam(bLuk))/30; .@c = (readparam(bDex)+readparam(bLuk))/250; bonus bCon,.@a; bonus bLongAtkRate,.@b+(15*.@c); - Id: 410214 AegisName: C_Larva_Yellow_Mini Name: "Costume: Larva Yellow Minimi" Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2321 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 410215 AegisName: Ear_OF_Spirit Name: Spirit Ears Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2212 Script: | .@a = (readparam(bStr)+readparam(bVit))/15; .@b = (readparam(bStr)+readparam(bVit))/30; .@c = (readparam(bStr)+readparam(bVit))/250; bonus bPow,.@a; bonus bShortAtkRate,.@b+(15*.@c); - Id: 410216 AegisName: Ear_OF_Abyss Name: Abyss Ears Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 1 View: 2322 Script: | .@a = (readparam(bAgi)+readparam(bInt))/15; .@b = (readparam(bAgi)+readparam(bInt))/30; .@c = (readparam(bAgi)+readparam(bInt))/250; bonus bSpl,.@a; bonus bMatkRate,.@b+(15*.@c); - Id: 410217 AegisName: C_Yesterday_Once_More_K Name: Costume Magic Cards Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2264 - Id: 410218 AegisName: C_Soccer_Ball Name: Costume Soccer Ball Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2324 - Id: 410219 AegisName: C_Jumbo_Rabbit Name: Costume Flemish Giant Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2334 - Id: 410220 AegisName: C_Blink_Eyes_Frozen Name: Costume Twinkling Frozen Eyes Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2336 - Id: 410221 AegisName: C_white_tteok Name: Costume White Rice Cake Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2341 - Id: 410222 AegisName: C_blacksesame_tteok Name: Costume Black Sesame Rice Cake Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2342 - Id: 410223 AegisName: C_bean_tteok Name: Costume Soybean Rice Cake Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2343 - Id: 410224 AegisName: aegis_410224 Name: Costume Red Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2152 - Id: 410226 AegisName: C_Black_Rabbit Name: Costume Black Rabbit Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2349 - Id: 410228 AegisName: aegis_410228 Name: Costume Tomboy Fairy Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 998 - Id: 410229 AegisName: aegis_410229 Name: Costume Serpentine Crystal Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2355 - Id: 410230 AegisName: aegis_410230 Name: Costume Twin Ribbon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 575 - Id: 410231 AegisName: C_Teaparty_Wonderland Name: Costume Tea Party in Wonderland Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 Script: | hateffect(HAT_EF_alice_tea,true); UnEquipScript: | hateffect(HAT_EF_alice_tea,false); - Id: 410232 AegisName: aegis_410232 Name: Gambler's Seal Type: Armor Weight: 100 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 View: 1202 - Id: 410233 AegisName: Gambler_Seal_KR_ Name: Gambler's Seal Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 150 View: 1202 - Id: 410234 AegisName: aegis_410234 Name: Costume Rebellion Pocket Watch Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2289 - Id: 410236 AegisName: C_Bird_Cage_Candle_Hold Name: Costume Birdcage Candle Holders Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2378 - Id: 410238 AegisName: aegis_410238 Name: Costume Adventurer Pope Mini-Me Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2384 - Id: 410239 AegisName: aegis_410239 Name: Costume Flying Tilby Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2386 - Id: 410240 AegisName: aegis_410240 Name: Costume White Rabbit Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2388 - Id: 410241 AegisName: aegis_410241 Name: Costume Ribbon Sweets Party Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2370 - Id: 410242 AegisName: aegis_410242 Name: Costume Wanderer Grim Reaper Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2395 - Id: 410243 AegisName: aegis_410243 Name: Wanderer Grim Reaper Type: Armor Weight: 100 Defense: 2 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2395 Script: | bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; - Id: 410244 AegisName: aegis_410244 Name: Wanderer Grim Reaper Type: Armor Weight: 100 Defense: 2 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2395 Script: | bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; - Id: 410245 AegisName: aegis_410245 Name: Costume Brother Keen Eye Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2399 - Id: 410247 AegisName: aegis_410247 Name: Lightning Savage Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 2403 Script: | bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; - Id: 410248 AegisName: aegis_410248 Name: Costume Tuk Tuk Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2404 - Id: 410251 AegisName: aegis_410251 Name: Costume Alien Sunglasses (Blue) # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2405 - Id: 410252 AegisName: aegis_410252 Name: Costume Alien Sunglasses (Red) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2407 - Id: 410253 AegisName: aegis_410253 Name: Costume Alien Sunglasses (Green) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2406 - Id: 410254 AegisName: Old_Moroc_Acc Name: Ancient Morocc Noble Jewelry Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 100 View: 335 Script: | .@a = ((5*(readparam(bStr)/8))+(3*(readparam(bAgi)/8))+(2*(readparam(bVit)/8))+(2*(readparam(bDex)/8))); .@b = ((2*(readparam(bVit)/8))+(5*(readparam(bInt)/8))+(2*(readparam(bDex)/8))+(3*(readparam(bLuk)/8))); bonus bBaseAtk,.@a; bonus bMatk,.@b; - Id: 410255 AegisName: aegis_410255 Name: Costume Red & White Headband Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 342 - Id: 410256 AegisName: Magic_Star_TW_LT Name: Magic Star-LT Type: Armor Weight: 100 Slots: 1 Locations: Head_Mid: true ArmorLevel: 2 EquipLevelMin: 100 Script: | .@a = (readparam(bStr)+readparam(bAgi)+readparam(bVit)+readparam(bInt)+readparam(bDex)+readparam(bLuk))/600; .@b = (readparam(bStr)+readparam(bAgi)+readparam(bVit)+readparam(bInt)+readparam(bDex)+readparam(bLuk))/160; bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Neutral,2*(readparam(bStr)/12); bonus2 bMagicAtkEle,Ele_Wind,2*(readparam(bAgi)/12); bonus2 bMagicAtkEle,Ele_Water,2*(readparam(bVit)/12); bonus2 bMagicAtkEle,Ele_Fire,2*(readparam(bInt)/12); bonus2 bMagicAtkEle,Ele_Earth,2*(readparam(bDex)/12); bonus2 bMagicAtkEle,Ele_Holy,2*(readparam(bLuk)/12); bonus bMatkRate,10*.@a; bonus bAspd,.@a; bonus bSpl,5*.@b; bonus bSMatk,5*.@b; hateffect(HAT_EF_Magic_Star_TW,true); UnEquipScript: | hateffect(HAT_EF_Magic_Star_TW,false); - Id: 410257 AegisName: aegis_410257 Name: Costume Happy Droopy Lunatic Ear Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1340 - Id: 410258 AegisName: aegis_410258 Name: Costume Kabuki Mask Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 214 - Id: 410261 AegisName: aegis_410261 Name: Costume King Melon Headphones Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2421 - Id: 410262 AegisName: C_Sonic_Mini Name: Costume Sonic Mini-Me Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2429 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 410263 AegisName: C_Super_Sonic_Mini Name: Costume Super Sonic Mini-Me Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2430 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 410264 AegisName: C_Tails_Mini Name: Costume Tails Mini-Me Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2431 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 410265 AegisName: C_S_Attack_Ring Name: Costume Power Ring Drop Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2432 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 410266 AegisName: C_H_N_Hat Name: Costume Miss Rabbit and Little Dog Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2423 - Id: 410267 AegisName: C_Cinnamon Name: Costume Cinnamoroll Type: Armor Locations: Costume_Head_Mid: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 2427 - Id: 410268 AegisName: C_Cinnamon2 Name: Costume Cinnamoroll in the Sky Type: Armor Locations: Costume_Head_Mid: true Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 View: 2427 - Id: 410269 AegisName: Comp_Crow_Tengu_Mask Name: "[NFS] Crow Tengu Mask" Type: Armor Weight: 30 Locations: Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 80 View: 1287 Script: | bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; if (readparam(bStr)>=108) { bonus2 bAddSize,Size_All,1; bonus bLongAtkRate,2; } if (readparam(bStr)>=120) { bonus2 bAddSize,Size_All,2; bonus bLongAtkRate,3; } - Id: 410270 AegisName: aegis_410270 Name: Cultist's Circlet (Strength) Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 160 View: 2288 Script: | autobonus "{ bonus bStr,20; bonus bBaseAtk,100; bonus bMatk,100; }",50,10000,BF_WEAPON|BF_MAGIC; - Id: 410271 AegisName: aegis_410271 Name: Cultist's Circlet (Agility) Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 160 View: 2288 Script: | autobonus "{ bonus bAgi,20; bonus bBaseAtk,100; bonus bMatk,100; }",50,10000,BF_WEAPON|BF_MAGIC; - Id: 410272 AegisName: aegis_410272 Name: Cultist's Circlet (Vitality) Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 160 View: 2288 Script: | autobonus "{ bonus bVit,20; bonus bBaseAtk,100; bonus bMatk,100; }",50,10000,BF_WEAPON|BF_MAGIC; - Id: 410273 AegisName: aegis_410273 Name: Cultist's Circlet (Intelligence) Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 160 View: 2288 Script: | autobonus "{ bonus bInt,20; bonus bBaseAtk,100; bonus bMatk,100; }",50,10000,BF_WEAPON|BF_MAGIC; - Id: 410274 AegisName: aegis_410274 Name: Cultist's Circlet (Dexterity) Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 160 View: 2288 Script: | autobonus "{ bonus bDex,20; bonus bBaseAtk,100; bonus bMatk,100; }",50,10000,BF_WEAPON|BF_MAGIC; - Id: 410275 AegisName: aegis_410275 Name: Cultist's Circlet (Lucky) Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 160 View: 2288 Script: | autobonus "{ bonus bLuk,20; bonus bBaseAtk,100; bonus bMatk,100; }",50,10000,BF_WEAPON|BF_MAGIC; - Id: 410276 AegisName: aegis_410276 Name: Costume Vengeful Ghost Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2212 - Id: 410277 AegisName: aegis_410277 Name: Costume Ragdoll Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2436 - Id: 410278 AegisName: aegis_410278 Name: Costume Twinkling Bloody Eye Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2437 - Id: 410281 AegisName: aegis_410281 Name: Costume Tiger Face (Middle) Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 483 - Id: 410283 AegisName: aegis_410283 Name: Costume Wing Headphone Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 1347 - Id: 410289 AegisName: aegis_410289 Name: Costume Baby Gloom Under Night Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2481 - Id: 410290 AegisName: aegis_410290 Name: Costume Jellyfish Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2482 - Id: 410291 AegisName: aegis_410291 Name: Little Abyss Dragon Type: Armor Weight: 300 Defense: 5 Locations: Head_Mid: true ArmorLevel: 1 EquipLevelMin: 60 View: 2316 Script: | bonus bBaseAtk,(min(BaseLevel,100)/2); bonus bMatk,(min(BaseLevel,100)/2); - Id: 410292 AegisName: aegis_410292 Name: Costume Little Abyss Dragon Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2316 - Id: 410293 AegisName: aegis_410293 Name: Costume Red Baby Dragon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 1463 - Id: 410295 AegisName: C_WinterNightBells Name: Costume Winter Night Bells Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 - Id: 410315 AegisName: aegis_410315 Name: Costume Sacred Faith Ornament # !todo check english name Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2518 - Id: 420000 AegisName: Isabella_Carrot Name: Isabella Carrot Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 View: 829 Script: | bonus bVit,1; bonus bDex,1; bonus bInt,1; - Id: 420003 AegisName: CD_In_MouthK Name: CD in Mouth Type: Armor View: 815 Weight: 200 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 Script: | bonus2 bMagicAtkEle,Ele_All,5; bonus5 bAutoSpell,"MG_SOULSTRIKE",10,100,BF_SHORT|BF_WEAPON,1; - Id: 420004 AegisName: Nine_Tail_Fox_Hair Name: Fox Hair Type: Armor View: 1884 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus2 bAddRace,RC_Demon,20; bonus2 bMagicAddRace,RC_Demon,20; bonus2 bResEff,Eff_Blind,10000; - Id: 420005 AegisName: Love_Feeling_TW Name: Feeling of Love Type: Armor View: 1717 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | autobonus "{ bonus2 bHPRegenRate,400,1000; bonus2 bSPRegenRate,80,1000; }",10,10000,BF_MAGIC; - Id: 420006 AegisName: Vassalage_Necklace Name: Vassalage Necklace Type: Armor View: 2018 Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 Script: | .@val = (readparam(bStr)+readparam(bLuk))/50; bonus2 bAddSize,Size_All,4*.@val; bonus bPerfectHitAddRate,5*.@val; - Id: 420010 AegisName: C_Cons_Of_Darkness Name: Costume Dark Master Type: Armor View: 2020 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 420011 AegisName: C_Gluttony_CAPOO_TW Name: Costume Gluttony CAPOO Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2022 - Id: 420013 AegisName: Spirit_Of_Chung_E_J Name: Spirit of Chun Yi Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 882 Script: | bonus bBaseAtk,30; bonus bMatk,30; if (BaseClass == Job_Taekwon) { bonus bSpeedRate,25; bonus2 bExpAddRace,RC_All,5; } - Id: 420014 AegisName: C_Japanes_Hair Name: Costume Japanese Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2027 - Id: 420015 AegisName: C_Onihime_Camellia Name: Costume Camellia Demon Ribbon Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 View: 2026 - Id: 420016 AegisName: C_Katashiro_Flying Name: Costume Katashiro Flying Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2025 - Id: 420017 AegisName: Tree_Of_Sprout_STR Name: Young Leaf of World Tree (Str) Type: Armor View: 848 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 - Id: 420018 AegisName: Tree_Of_Sprout_DEX Name: Young Leaf of World Tree (Dex) Type: Armor View: 848 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 - Id: 420019 AegisName: Tree_Of_Sprout_AGI Name: Young Leaf of World Tree (Agi) Type: Armor View: 848 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 - Id: 420020 AegisName: Tree_Of_Sprout_LUK Name: Young Leaf of World Tree (Luk) Type: Armor View: 848 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 - Id: 420021 AegisName: Tree_Of_Sprout_VIT Name: Young Leaf of World Tree (Vit) Type: Armor View: 848 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 - Id: 420022 AegisName: Tree_Of_Sprout_INT Name: Young Leaf of World Tree (Int) Type: Armor View: 848 Weight: 50 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 - Id: 420023 AegisName: C_Mintgum_In_Mouth Name: Costume Mintgum In Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1096 - Id: 420024 AegisName: C_Deviruchi_Balloon_J Name: Costume Deviruchi Balloon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1082 - Id: 420025 AegisName: C_OneEyedJack Name: Costume One Eyed Jack Type: Armor View: 2023 Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 420026 AegisName: C_Ribbon_Piamat_J Name: Costume Piamette Ribbon Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1403 - Id: 420027 AegisName: C_Fishbone_Hair Name: Costume Fishbone Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2139 - Id: 420028 AegisName: Imperial_Glory Name: Imperial Glory Type: Armor View: 2056 Buy: 20 Weight: 300 Defense: 70 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 70 Script: | .@a = (readparam(bAgi)+readparam(bVit))/50; bonus bMdef,4*.@a; bonus bDelayrate,-3*.@a; - Id: 420029 AegisName: C_Imperial_Glory Name: Costume Imperial Glory Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2056 - Id: 420030 AegisName: Falconer_Flute_C Name: Feather In Mouth Type: Armor View: 1143 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 Script: | bonus bLongAtkRate,5; - Id: 420031 AegisName: Mask_Of_Orochimaru_C Name: Ninja's Blue Mask Type: Armor View: 1089 Weight: 10 Locations: Head_Low: true ArmorLevel: 1 Script: | bonus bShortAtkRate,5; - Id: 420032 AegisName: TwinCannon_TW Name: Double Barrel Cannon Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1865 Script: | bonus bDelayrate,-3; bonus bAspd,1; - Id: 420033 AegisName: C_Airy_Two_Side_Up_WH Name: Costume Airy Twin Tails (White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2028 - Id: 420034 AegisName: C_Long_Wave_BD Name: Costume Long Wave(Blonde) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2029 - Id: 420035 AegisName: C_Long_Wave_SV Name: Costume Long Wave(Silver) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2030 - Id: 420036 AegisName: C_Fluffy_Semi_Long_LB Name: Costume Fluffy Semi-Long Hair(Light Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2031 - Id: 420037 AegisName: C_Fluffy_Semi_Long_CB Name: Costume Fluffy Semi-Long Hair(Cherry Blossom) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2032 - Id: 420038 AegisName: C_Fluffy_Semi_Long_YL Name: Costume Fluffy Semi-Long Hair(Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2033 - Id: 420039 AegisName: C_Fluffy_Semi_Long_BG Name: Costume Fluffy Semi-Long Hair(Turquoise) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2034 - Id: 420040 AegisName: C_Fluffy_Semi_Long_JBL Name: Costume Fluffy Semi-Long Hair(Jet Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2035 - Id: 420041 AegisName: C_Fluffy_Semi_Long_WH Name: Costume Fluffy Semi-Long Hair(White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2036 - Id: 420042 AegisName: C_Fluffy_Semi_Long_OM Name: Costume Fluffy Semi-Long Hair(Orange) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2037 - Id: 420043 AegisName: C_Fluffy_Semi_Long_LPP Name: Costume Fluffy Semi-Long Hair(Light Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2038 - Id: 420044 AegisName: C_Sailor_Collar_WH Name: Costume Sailor's White Lapel Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2141 - Id: 420046 AegisName: C_Royal_Mantle Name: Costume Royal Mantle Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1697 - Id: 420047 AegisName: C_H_Knight_Cloak Name: Costume Honorable Knight Cloak Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2059 - Id: 420048 AegisName: C_White_Corone Name: Costume White Coronet Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2081 - Id: 420050 AegisName: C_Hair_Bun_Wave Name: Costume Dumbling Wave Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2084 - Id: 420051 AegisName: C_ZilantNecklace Name: Costume Fire and Lightning Witch Necklace Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1831 - Id: 420052 AegisName: C_Spirit_Of_Chung_E_J Name: Costume Chungee's Soul Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 882 - Id: 420053 AegisName: C_Shadow_Devil Name: Costume Shadow Devil Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2096 - Id: 420054 AegisName: C_Smokie_Muffler Name: Costume Smokie Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2097 - Id: 420055 AegisName: Cherryblossom_Fan Name: Cherry Blossom Fan Type: Armor Locations: Head_Low: true ArmorLevel: 1 View: 857 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 420056 AegisName: C_Schmidt_Helm_J Name: Costume Schmitz's Helm Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 634 - Id: 420057 AegisName: C_AB_Hair_RD Name: Costume Ponytail Hair(Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2106 - Id: 420058 AegisName: C_AB_Hair_YL Name: Costume Ponytail Hair(Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2107 - Id: 420059 AegisName: C_AB_Hair_BU Name: Costume Ponytail Hair(Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2108 - Id: 420060 AegisName: C_AB_Hair_GN Name: Costume Ponytail Hair(Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2109 - Id: 420061 AegisName: C_AB_Hair_PK Name: Costume Ponytail Hair(Pink) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2110 - Id: 420062 AegisName: C_AB_Hair_PP Name: Costume Ponytail Hair(Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2111 - Id: 420063 AegisName: C_Piece_Of_White_Cloth Name: Costume White Sunshade Headscarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 363 - Id: 420064 AegisName: Noble_Hankie_TW Name: Noble Handkerchief Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 818 Script: | bonus2 bMagicAtkEle,Ele_All,2; bonus3 bAutoSpell,"WL_CHAINLIGHTNING",2,20; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; skill "WL_MARSHOFABYSS",1; - Id: 420065 AegisName: Angeling_Balloon_TW Name: Eternal Poring Balloon Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1435 Script: | bonus2 bSubRace,RC_All,2; - Id: 420066 AegisName: SurviveOrb_K_LT Name: Survive Orb-LT Type: Armor Weight: 300 Defense: 2 Locations: Head_Low: true ArmorLevel: 2 EquipLevelMin: 150 View: 1488 Script: | bonus2 bMagicAtkEle,Ele_All,7; bonus bVariableCastrate,-3; - Id: 420067 AegisName: C_Hopping_Twin_Pigtail Name: Costume Hopping Twin Pigtail Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2124 - Id: 420068 AegisName: Lord_of_Royals Name: Lord of Royals Type: Armor View: 2128 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@val = (readparam(bStr)+readparam(bInt))/50; bonus2 bAddSize,Size_All,4*.@val; bonus2 bMagicAddSize,Size_All,4*.@val; - Id: 420069 AegisName: C_Lord_of_Royals Name: Costume King Schmidt's Cape Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2128 - Id: 420070 AegisName: C_Cap_Of_Blindness_V Name: Costume Blind Hood (Low) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 326 - Id: 420071 AegisName: C_Feather_Stola Name: Costume Feather Stola Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2130 - Id: 420072 AegisName: C_L_Knitting_Low_Twin_W Name: Costume Lightly Braided Low Twin (White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2131 - Id: 420073 AegisName: C_2021RTC_Wing_TW Name: Costume 2021RTC Supporting Wings Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2133 - Id: 420074 AegisName: Limesoda_In_Mouth Name: Lime Soda in Mouth Type: Armor Locations: Head_Low: true ArmorLevel: 1 View: 1643 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 420075 AegisName: C_Floating_Gioia_J Name: Costume Floating Gioia # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1730 - Id: 420076 AegisName: Choker_Of_Restriction Name: Bondage Necklace Type: Armor Weight: 10 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 150 View: 2018 Script: | bonus bCritAtkRate,5; bonus bCritical,3; - Id: 420077 AegisName: C_Cat_Footprints Name: Costume Cat Footprints Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2150 - Id: 420078 AegisName: C_Ghost_Bat_J Name: Costume Ghost Bat(Lower) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2093 - Id: 420079 AegisName: C_Inner_Color_Long Name: Costume Inner Color Long Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2155 - Id: 420081 AegisName: C_Carrot_In_Mouth_J Name: Costume Carrot in Mouth Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 829 - Id: 420082 AegisName: C_WL_Hair_BU Name: Costume Side Roll Pony Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2164 - Id: 420083 AegisName: C_L_Ribbon_M_WH Name: Costume Large Ribbon Muffler (White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2165 - Id: 420084 AegisName: C_Mermaid_Wig_Peach Name: Costume Mermaid Wig (Pink) # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2166 - Id: 420085 AegisName: C_Kururinpa_Hair_BD Name: Costume Curly Hair (Blonde) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2167 - Id: 420086 AegisName: C_Long_Wave_LBW Name: Costume Long Wave (Light Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2168 - Id: 420087 AegisName: Magic_Circle_TW Name: Magic Star Array Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bFixedCast,-200; hateffect(HAT_EF_Magic_Circle_TW,true); UnEquipScript: | hateffect(HAT_EF_Magic_Circle_TW,false); - Id: 420088 AegisName: C_Heart_Angel_TW Name: Costume Little Angel of Love Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2170 - Id: 420089 AegisName: SLD_Mob_Scarf Name: "[Rental] Sealed Mob Scarf" Type: Armor Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1568 Script: | skill "SA_SPELLBREAKER",2; - Id: 420091 AegisName: C_Silky_Long_BD Name: Costume Silky Long(Blonde) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2180 - Id: 420092 AegisName: C_Silky_Long_SV Name: Costume Silky Long(Silver) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2181 - Id: 420093 AegisName: Einherial_Mantle Name: Einherjar Manteau Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 90 View: 2200 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bHPRegenRate,150,5000; bonus2 bSPRegenRate,15,5000; - Id: 420094 AegisName: C_Einherial_Mantle Name: Costume Cloak of Einherjar Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2200 - Id: 420095 AegisName: C_Braid_Half_Up_WH_K Name: Costume Pigtails Half Up(White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2052 - Id: 420096 AegisName: C_Braid_Half_Up_OM_K Name: Costume Pigtails Half Up(Orange) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2053 - Id: 420097 AegisName: C_Braid_Half_Up_PP_K Name: Costume Pigtails Half Up(Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2054 - Id: 420098 AegisName: C_Braid_Half_Up_BL_K Name: Costume Pigtails Half Up(Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2051 - Id: 420099 AegisName: C_Braid_Half_Up_BU_K Name: Costume Pigtails Half Up(Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2047 - Id: 420100 AegisName: C_Braid_Half_Up_YL_K Name: Costume Pigtails Half Up(Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2049 - Id: 420101 AegisName: C_Braid_Half_Up_RD_K Name: Costume Pigtails Half Up(Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2048 - Id: 420102 AegisName: C_Braid_Half_Up_GN_K Name: Costume Pigtails Half Up(Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2050 - Id: 420103 AegisName: C_Charm_Of_Mistic_Froze Name: Costume Charm of Mystic Frozen Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1262 - Id: 420104 AegisName: C_SR_Hair_SV Name: Costume Wild Long Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2206 - Id: 420105 AegisName: Curse_Eats_the_World Name: World-erosive Curse Type: Armor Buy: 20 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2020 Script: | bonus2 bAddRace,RC_DemiHuman,20; bonus2 bAddRace,RC_Player_Doram,20; bonus2 bAddRace,RC_Player_Human,20; bonus2 bMagicAddRace,RC_DemiHuman,20; bonus2 bMagicAddRace,RC_Player_Doram,20; bonus2 bMagicAddRace,RC_Player_Human,20; bonus2 bResEff,Eff_Curse,10000; - Id: 420107 AegisName: C_Twinkle_Twin Name: Costume Twinkle Twin Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2222 - Id: 420108 AegisName: C_Chocolate_Bomb Name: Costume Chocolate Bomb Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1110 - Id: 420109 AegisName: C_Charm_Of_Flame_Heart Name: Costume Charm of Flame Heart Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1261 - Id: 420110 AegisName: ScarfOfHero_J Name: Old Camouflage Scarf Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1882 Script: | bonus2 bAddSize,Size_All,BaseLevel/10; bonus2 bMagicAddSize,Size_All,BaseLevel/10; - Id: 420111 AegisName: C_Rocking_Short Name: Costume Rocking Short Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2225 - Id: 420112 AegisName: Guardian_Claus Name: Guardian Claus Type: Armor Defense: 2 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2227 Script: | bonus bMdef,5; bonus bMaxHPrate,15; bonus2 bSubRace,RC_DemiHuman,3; - Id: 420113 AegisName: C_WL_Hair_BL Name: Costume Side Roll Pony (Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2228 - Id: 420114 AegisName: C_WL_Hair_GN Name: Costume Side Roll Pony (Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2229 - Id: 420115 AegisName: C_WL_Hair_OM Name: Costume Side Roll Pony (Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2230 - Id: 420116 AegisName: C_WL_Hair_PK Name: Costume Side Roll Pony (Pink) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2231 - Id: 420117 AegisName: C_WL_Hair_PP Name: Costume Side Roll Pony (Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2232 - Id: 420118 AegisName: C_WL_Hair_RD Name: Costume Side Roll Pony (Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2233 - Id: 420119 AegisName: C_WL_Hair_WH Name: Costume Side Roll Pony (White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2234 - Id: 420120 AegisName: C_WL_Hair_YL Name: Costume Side Roll Pony (Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2235 - Id: 420121 AegisName: C_SR_Hair_BL Name: Costume Wild Long Hair (Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2236 - Id: 420122 AegisName: C_SR_Hair_GN Name: Costume Wild Long Hair (Green) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2237 - Id: 420123 AegisName: C_SR_Hair_OM Name: Costume Wild Long Hair (Brown) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2238 - Id: 420124 AegisName: C_SR_Hair_PK Name: Costume Wild Long Hair (Pink) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2239 - Id: 420125 AegisName: C_SR_Hair_PP Name: Costume Wild Long Hair (Purple) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2240 - Id: 420126 AegisName: C_SR_Hair_RD Name: Costume Wild Long Hair (Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2241 - Id: 420127 AegisName: C_SR_Hair_WH Name: Costume Wild Long Hair (White) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2242 - Id: 420128 AegisName: C_SR_Hair_YL Name: Costume Wild Long Hair (Yellow) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2243 - Id: 420129 AegisName: aegis_420129 Name: Wei Brush Tattoo Type: Armor Weight: 300 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1291 Script: | skill "RG_GRAFFITI",1; bonus2 bResEff,Eff_Hallucination,10000; - Id: 420130 AegisName: aegis_420130 Name: Fumi Fan Type: Armor Weight: 500 Defense: 20 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1051 Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bLongAtkDef,5; bonus bHealPower2,5; - Id: 420131 AegisName: aegis_420131 Name: "[Not for Sale] Fumi Fan" Type: Armor Weight: 500 Defense: 20 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1051 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bHealPower2,5; bonus bLongAtkDef,5; - Id: 420132 AegisName: C_Charm_Of_Great_Nature Name: Costume Charm of Great Nature Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1264 - Id: 420133 AegisName: C_Dreaming_Rose_Long Name: Costume Dreaming Rose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2247 - Id: 420134 AegisName: aegis_420134 Name: The Spirit Of World Type: Armor Weight: 600 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@str = readparam(bStr); .@agi = readparam(bAgi); .@vit = readparam(bVit); .@int = readparam(bInt); .@dex = readparam(bDex); .@luk = readparam(bLuk); bonus bMatk,60; bonus2 bHPRegenRate,60,6000; bonus2 bMagicAtkEle,Ele_Neutral,2*(.@str/10); bonus2 bMagicAtkEle,Ele_Wind,2*(.@agi/10); bonus2 bMagicAtkEle,Ele_Earth,2*(.@vit/10); bonus2 bMagicAtkEle,Ele_Fire,2*(.@int/10); bonus2 bMagicAtkEle,Ele_Water,2*(.@dex/10); bonus2 bMagicAtkEle,Ele_Holy,2*(.@luk/10); if (.@str + .@agi + .@vit + .@int + .@dex + .@luk >= 60) bonus2 bMagicAtkEle,Ele_Ghost,2; hateffect HAT_EF_STRANGELIGHTS,true; UnEquipScript: | hateffect HAT_EF_STRANGELIGHTS,false; - Id: 420135 AegisName: aegis_420135 Name: "[Not For Sale] Isabella Carrot" Type: Armor Weight: 100 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 70 View: 829 Script: | bonus bVit,1; bonus bDex,1; bonus bInt,1; - Id: 420136 AegisName: aegis_420136 Name: "[Not For Sale] The Spirit Of World" Type: Armor Weight: 600 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@str = readparam(bStr); .@agi = readparam(bAgi); .@vit = readparam(bVit); .@int = readparam(bInt); .@dex = readparam(bDex); .@luk = readparam(bLuk); bonus bMatk,60; bonus2 bHPRegenRate,60,6000; bonus2 bMagicAtkEle,Ele_Neutral,2*(.@str/10); bonus2 bMagicAtkEle,Ele_Wind,2*(.@agi/10); bonus2 bMagicAtkEle,Ele_Earth,2*(.@vit/10); bonus2 bMagicAtkEle,Ele_Fire,2*(.@int/10); bonus2 bMagicAtkEle,Ele_Water,2*(.@dex/10); bonus2 bMagicAtkEle,Ele_Holy,2*(.@luk/10); if (.@str + .@agi + .@vit + .@int + .@dex + .@luk >= 60) bonus2 bMagicAtkEle,Ele_Ghost,2; hateffect HAT_EF_STRANGELIGHTS,true; UnEquipScript: | hateffect HAT_EF_STRANGELIGHTS,false; - Id: 420137 AegisName: aegis_420137 Name: Frenzy Galapago Type: Armor Weight: 500 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 55 View: 1358 Script: | set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus bAgi,1; bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2); bonus2 bSkillAtk,"HT_BLITZBEAT",40*getskilllv("HT_STEELCROW"); - Id: 420138 AegisName: aegis_420138 Name: Poker Card In Mouth Type: Armor Weight: 500 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 10 View: 889 Script: | bonus2 bAddRace,RC_DemiHuman,2; bonus2 bMagicAddRace,RC_DemiHuman,2; - Id: 420139 AegisName: aegis_420139 Name: "[Not For Sale]Frenzy Galapago" Type: Armor Weight: 500 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 55 View: 1358 Script: | set .@bblvl,max(getskilllv("HT_BLITZBEAT"),1); set .@luk,min(readparam(bLuk),120); bonus bAgi,1; bonus3 bAutoSpell,"HT_BLITZBEAT",.@bblvl,50 + (.@luk / 3) + (.@bblvl * 2); bonus2 bSkillAtk,"HT_BLITZBEAT",40*getskilllv("HT_STEELCROW"); - Id: 420140 AegisName: C_Alpha_Long_Pony Name: Costume Alpha Long Ponytail Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2253 - Id: 420141 AegisName: aegis_420141 Name: Flutter Butterfly Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAspd,1; bonus bLongAtkRate,min(readparam(bDex)/10,10); hateffect HAT_EF_FLUTTER_BUTTERFLY,true; UnEquipScript: | hateffect HAT_EF_FLUTTER_BUTTERFLY,false; - Id: 420150 AegisName: C_Twinkle_Twin_B Name: Costume Twinkle Twin (Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2274 - Id: 420151 AegisName: C_Cons_Of_Light_Dark_ Name: Costume Master of Light and Darkness (bind) # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2273 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 420152 AegisName: C_Cons_Of_Light_Dark Name: Costume Light and Dark Master Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2273 - Id: 420153 AegisName: Booster_Scarf_A Name: Booster Scarf A-type Type: Armor Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 130 View: 1416 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVariableCastrate,-3; bonus bLongAtkRate,5; bonus bShortAtkRate,5; - Id: 420154 AegisName: Booster_Scarf_B Name: Booster Scarf B-type Type: Armor Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 130 View: 1776 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVariableCastrate,-3; bonus2 bMagicAtkEle,Ele_All,5; - Id: 420155 AegisName: Booster_Scarf_C Name: Booster Scarf C-type Type: Armor Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 130 View: 1501 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,3; bonus bCritAtkRate,5; - Id: 420156 AegisName: C_Flower_L_Knitting Name: Costume Flower Knitting Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2261 - Id: 420158 AegisName: aegis_420158 Name: Yesterday Once More Type: Armor Weight: 500 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2264 Script: | bonus bMdef,5; bonus bAspdRate,10; - Id: 420159 AegisName: C_Yesterday_Once_More Name: Costume Yesterday Once More Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2264 - Id: 420160 AegisName: Cons_Of_Earth_J Name: Tyrant of Earth Type: Armor View: 1982 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddSize,Size_All,BaseLevel/10; bonus2 bMagicAddSize,Size_All,BaseLevel/10; - Id: 420161 AegisName: C_Starry_Long_Wave Name: Costume Starry Long Wave Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2271 - Id: 420162 AegisName: aegis_420162 Name: Costume Starry Ribbon Twin Tail Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2270 - Id: 420163 AegisName: C_Protect_Cloth_B Name: "Costume: Protect Cloth" Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2272 - Id: 420164 AegisName: Sleep_RedSheep Name: Dreaming Red Sheep Type: Armor View: 2277 Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-15; bonus2 bAddSize,Size_All,5*getskilllv("RA_WUGRIDER"); if (getskilllv("RA_CAMOUFLAGE") == 5) bonus2 bSkillCooldown,"RA_UNLIMIT",-60000; UnEquipScript: | sc_end SC_UNLIMIT; - Id: 420165 AegisName: C_Tent Name: Costume Tent Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2279 - Id: 420168 AegisName: C_bullhead_J Name: Costume Cow mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2078 - Id: 420169 AegisName: C_Pipe_Of_Jiraiya Name: Costume Pipe of Jiraiya Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1088 - Id: 420170 AegisName: C_Silky_Long_BL Name: Costume Silky Long Hair (Black) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2295 - Id: 420171 AegisName: aegis_420171 Name: Costume Thorn Scarf Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 459 - Id: 420172 AegisName: aegis_420172 Name: Costume Braid Ring # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2300 - Id: 420174 AegisName: aegis_420174 Name: Raging Tempest Type: Armor Weight: 100 Slots: 1 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1924 Script: | bonus2 bAddSize,Size_All,BaseLevel/10; bonus2 bMagicAddSize,Size_All,BaseLevel/10; - Id: 420177 AegisName: aegis_420177 Name: Costume Valkyrie Hair # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2311 - Id: 420178 AegisName: aegis_420178 Name: 1Lv Mask Type: Armor Locations: Head_Low: true ArmorLevel: 1 View: 8 - Id: 420179 AegisName: aegis_420179 Name: 2Lv Mask # !todo check english name Type: Armor Locations: Head_Low: true ArmorLevel: 2 View: 8 - Id: 420180 AegisName: aegis_420180 Name: Eispinne Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2317 Script: | bonus2 bSubRace,RC_Player_Human,3; bonus bDelayrate,-10; - Id: 420181 AegisName: aegis_420181 Name: Costume Eispinne Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2317 - Id: 420182 AegisName: aegis_420182 Name: Book of Sorcery Type: Armor Weight: 100 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2327 Script: | bonus bAspdRate,10; bonus2 bMagicAddSize,Size_All,3*getskilllv("SO_PSYCHIC_WAVE"); if (getskilllv("SO_VACUUM_EXTREME") == 5) { bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; bonus2 bFixedCastrate,"SO_EARTHGRAVE",-100; } - Id: 420185 AegisName: aegis_420185 Name: Costume Red Sailor Collar Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1364 - Id: 420186 AegisName: 20th_Anniversary_TW Name: 20th Anniversary Balloon Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2005 Script: | bonus bPAtk,2; bonus bSMatk,2; bonus bFixedCast,-100; - Id: 420187 AegisName: Sacred_Lapel Name: Sacred Lapel Type: Armor Weight: 100 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2337 Script: | bonus2 bMagicAtkEle,Ele_Holy,10; if (getskilllv("AB_ORATIO") == 10) bonus2 bSkillCooldown,"AB_ORATIO",-1500; if (getskilllv("AB_CLEARANCE") == 5) bonus2 bMagicAddSize,Size_All,15; - Id: 420190 AegisName: aegis_420190 Name: Costume Orochimaru's Mask Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1089 - Id: 420191 AegisName: C_Snow_Rabbit_Wig Name: Costume Snow Rabbit Wig Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2333 - Id: 420192 AegisName: C_Friendly_White_Fox Name: Costume Friendly White Fox Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2335 - Id: 420193 AegisName: C_L_Ribbon_M_BU Name: Costume Giant Bow Scarf (Blue) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2340 - Id: 420194 AegisName: Rescue_whistle Name: Survival Whistle Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 952 Script: | .@a = (((readparam(bStr)+readparam(bAgi)+readparam(bVit)+readparam(bInt)+readparam(bDex)+readparam(bLuk))/600)*10); bonus bFlee,10+.@a; bonus2 bAddEle,Ele_All,.@a+(readparam(bStr)/20); bonus2 bAddEle,Ele_Neutral,(readparam(bAgi)/20); bonus2 bAddEle,Ele_Water,(readparam(bVit)/20); bonus2 bAddEle,Ele_Earth,(readparam(bInt)/20); bonus2 bAddEle,Ele_Fire,(readparam(bDex)/20); bonus2 bAddEle,Ele_Wind,(readparam(bLuk)/20); - Id: 420195 AegisName: C_1st_Evt_Balloon_MSP Name: Costume GGH 1st Anniversary Balloons Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2345 - Id: 420196 AegisName: aegis_420196 Name: Costume Fruit Stick Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 855 - Id: 420197 AegisName: aegis_420197 Name: Costume Twinkle Wave Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2346 - Id: 420198 AegisName: aegis_420198 Name: Sanctus Type: Armor Weight: 100 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2351 Script: | bonus bMaxHPrate,15; if (getskilllv("SR_KNUCKLEARROW") == 10) bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-200; if (getskilllv("SR_RAISINGDRAGON") == 10) bonus2 bAddSize,Size_All,15; - Id: 420199 AegisName: Ghost_Fire Name: Phantom Fireball Type: Armor Weight: 700 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 90 View: 2353 Script: | bonus bVariableCastrate,-8; bonus bDelayrate,-5; bonus bFixedCast,-100; - Id: 420201 AegisName: aegis_420201 Name: Costume Baeksayo Wig # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2354 - Id: 420204 AegisName: aegis_420204 Name: Costume Yunkea Wig # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2361 - Id: 420205 AegisName: aegis_420205 Name: Costume Memorial Claus Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2310 Script: | hateffect HAT_EF_20TH_SCARF_J,true; UnEquipScript: | hateffect HAT_EF_20TH_SCARF_J,false; - Id: 420206 AegisName: aegis_420206 Name: Costume Samambaia (Lower) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 508 - Id: 420207 AegisName: aegis_420207 Name: Costume Eternal Rose Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2365 - Id: 420208 AegisName: C_Chocolat_Rabbit_Hair Name: Costume Chocolate Rabbit Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2369 - Id: 420209 AegisName: C_Cookie_PinkRibbon Name: Costume Cookie Ribbon # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2370 - Id: 420210 AegisName: Heart_Ace_Melee Name: Ace of Hearts in Mouth (Melee Physical) Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 150 View: 1679 - Id: 420211 AegisName: C_Sleep_RedSheep Name: Garment Sheep Counting (Red) # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2277 - Id: 420212 AegisName: C_Guardian_Claus Name: Costume Protect Cloth (Red) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2227 - Id: 420213 AegisName: Spade_Ace_Melee Name: Ace of Spades in Mouth (Magical) Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 150 View: 2374 - Id: 420218 AegisName: aegis_420218 Name: Costume Wonderer Curl (white) Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2379 - Id: 420219 AegisName: aegis_420219 Name: Melon when clothes come # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2382 - Id: 420220 AegisName: Diamond_Ace_Range Name: Ace of Diamonds in Mouth (Long Ranged Physical) Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 150 View: 2383 - Id: 420221 AegisName: C_Skia_Two_Side_Up Name: Costume Skia Two Side Up Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2389 - Id: 420222 AegisName: aegis_420222 Name: Costume Consecrate Fides Aureola Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2396 - Id: 420223 AegisName: aegis_420223 Name: Consecrate Fides Aureola Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2396 Script: | bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; - Id: 420224 AegisName: C_Ocean_Color_Long Name: Costume Ocean Color Long Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2397 - Id: 420225 AegisName: Octopus_Leg_In_Mouth Name: Bite octopus leg # !todo check english name Type: Armor Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 20 View: 2401 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 420230 AegisName: aegis_420230 Name: Costume Consecrate Fides Aureola (Garment) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 2396 - Id: 420231 AegisName: MD_Hol_Protection Name: Constellation's Protection Type: Armor Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 250 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 420232 AegisName: aegis_420232 Name: Costume Cheese Stick Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 843 - Id: 420233 AegisName: aegis_420233 Name: Costume Trouvere Side-Tail Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2411 - Id: 420234 AegisName: aegis_420234 Name: Costume Festival Stalls Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 2412 - Id: 420235 AegisName: aegis_420235 Name: Portable Support System Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2414 Script: | bonus bLongAtkRate,10; if (getskilllv("NC_NEUTRALBARRIER") == 3) bonus2 bAddSize,Size_All,15; if (getskilllv("NC_RESEARCHFE") == 5) bonus bNoMadoFuel; - Id: 420236 AegisName: Moroc_Slave_TW Name: Loyal Servant of the Demon Lord Morroc Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1440 Script: | bonus bPAtk,5; bonus bSMatk,5; bonus2 bAddRace,RC_DemiHuman,5; bonus2 bAddRace,RC_Player_Human,5; bonus2 bAddRace,RC_Player_Doram,5; bonus2 bAddRace,RC_Angel,5; bonus2 bMagicAddRace,RC_DemiHuman,5; bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; bonus2 bMagicAddRace,RC_Angel,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Angel,3; - Id: 420237 AegisName: aegis_420237 Name: Costume Tiger Muffler Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2417 - Id: 420238 AegisName: aegis_420238 Name: Illusionary Bat Type: Armor Weight: 100 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 2093 Script: | bonus2 bAddRace2,RC2_Illusion_Vampire,20; bonus2 bMagicAddRace2,RC2_Illusion_Vampire,20; - Id: 420239 AegisName: Adventure_Clover Name: Adventure Clover Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 571 Script: | bonus2 bExpAddRace,RC_All,8; - Id: 420240 AegisName: aegis_420240 Name: Costume Tsunade's Scroll Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1090 - Id: 420241 AegisName: aegis_420241 Name: Costume Temari Candy Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2418 - Id: 420242 AegisName: aegis_420242 Name: Costume Fluttering Haze Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2420 Script: | hateffect HAT_EF_C_FLUTTERING_HAZE,true; UnEquipScript: | hateffect HAT_EF_C_FLUTTERING_HAZE,false; - Id: 420244 AegisName: aegis_420244 Name: Costume Fierce Tiger Headgear Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2216 - Id: 420246 AegisName: Arbitrator_Shawl_US Name: Arbitrator Shawl Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2130 Script: | bonus bAtkRate,10; bonus bDelayrate,-5; - Id: 420247 AegisName: Comp_Tengu_Scroll Name: "[NFS] Tengu Scroll" Type: Armor Weight: 300 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 40 View: 1445 Script: | bonus2 bHPDrainRate,30,5; - Id: 420248 AegisName: aegis_420248 Name: Third Eye God Type: Armor Weight: 100 Defense: 3 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 2023 Script: | bonus bAllStats,1; bonus bFixedCast,-100; bonus2 bDropAddRace,RC_All,5; bonus2 bAddMonsterDropItem,519,100; bonus2 bAddMonsterDropItem,518,100; bonus2 bAddMonsterDropItem,11530,100; bonus2 bAddMonsterDropItem,11531,100; - Id: 420249 AegisName: aegis_420249 Name: "[Not For Sale] Third Eye God" Type: Armor Weight: 100 Defense: 3 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 2023 Script: | bonus bAllStats,1; bonus bFixedCast,-100; bonus2 bDropAddRace,RC_All,5; bonus2 bAddMonsterDropItem,519,100; bonus2 bAddMonsterDropItem,518,100; bonus2 bAddMonsterDropItem,11530,100; bonus2 bAddMonsterDropItem,11531,100; - Id: 420250 AegisName: Comp_Panda_Balloon Name: "[NFS] Panda Bear Balloon" Type: Armor Weight: 200 Slots: 1 Locations: Head_Low: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 View: 1115 Script: | bonus bAllStats,1; bonus bAspd,1; - Id: 420251 AegisName: aegis_420251 Name: Illusionary Spark Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 1747 Script: | bonus2 bAddRace2,RC2_Illusion_Luanda,20; bonus2 bMagicAddRace2,RC2_Illusion_Luanda,20; - Id: 420254 AegisName: aegis_420254 Name: Costume Wizard's beard Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 1004 - Id: 420255 AegisName: aegis_420255 Name: Costume Guillotine Cross Slow Pony Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2435 - Id: 420258 AegisName: aegis_420258 Name: Hero Cloth Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 100 View: 2272 Script: | bonus2 bAddSize,Size_All,BaseLevel/10; bonus2 bMagicAddSize,Size_All,BaseLevel/10; - Id: 420269 AegisName: Clover_Ace_Defense Name: Ace of Clovers in Mouth (Defense) Type: Armor Weight: 100 Locations: Head_Low: true ArmorLevel: 1 EquipLevelMin: 150 View: 2448 - Id: 420303 AegisName: C_Chaos_Emerald Name: Costume Chaos Emerald Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2485 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 420304 AegisName: aegis_420304 Name: Costume Night Sky of Lutie Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 - Id: 420307 AegisName: aegis_420307 Name: Costume Twin Wave Roll Hair # !todo check english name Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2490 - Id: 430001 AegisName: C_Helm_Of_Ra Name: Costume Hat of the Sun God Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 2094 - Id: 430002 AegisName: Rachel_Helmet Name: Awakened Glacier Helm Type: Armor Weight: 250 Defense: 5 Slots: 1 Locations: Head_Top: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 804 Script: | .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,.@r; if (.@r>=6) { bonus bAllStats,6; bonus bAtkRate,6; bonus bMatkRate,6; } if (.@r>=9) { bonus2 bAddRace2,RC2_Rachel_Sanctuary,25; bonus2 bMagicAddRace2,RC2_Rachel_Sanctuary,25; } - Id: 430003 AegisName: aegis_430003 Name: "[Not For Sale] Fancy Phantom Mask" Type: Armor Weight: 1000 Defense: 5 Slots: 1 Locations: Head_Mid: true Head_Top: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true View: 710 Script: | bonus bStr,1; bonus bAtkRate,5; bonus bDelayrate,-1; bonus bMaxHP,getrefine()*100; bonus2 bSkillAtk,"MC_MAMMONITE",20; - Id: 430005 AegisName: C_White_Tiger_Glass Name: Costume White Tiger Glasses Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true ArmorLevel: 1 View: 2325 - Id: 430006 AegisName: aegis_430006 Name: Wanderer's Sakkat Type: Armor Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 558 Script: | .@r = getrefine(); bonus bAgi,.@r/2; bonus bLuk,.@r/2; if (.@r>=7) { bonus bAspdRate,5; if (.@r>=9) { bonus bAspdRate,5; bonus bCritical,5; } } - Id: 430007 AegisName: aegis_430007 Name: "[Not For Sale] Wanderer's Sakkat" Type: Armor Weight: 500 Defense: 2 Slots: 1 Locations: Head_Top: true Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 60 Refineable: true View: 558 Script: | .@r = getrefine(); bonus bAgi,.@r/2; bonus bLuk,.@r/2; if (.@r>=7) { bonus bAspdRate,5; if (.@r>=9) { bonus bAspdRate,5; bonus bCritical,5; } } - Id: 430008 AegisName: aegis_430008 Name: "[NFS] Helm of Death" Type: Armor Weight: 1000 Defense: 10 Locations: Head_Top: true Head_Mid: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true View: 742 Script: | bonus bAllStats,1; bonus bMdef,5; bonus2 bAddClass,Class_Boss,10+(getrefine()-4); bonus2 bSubClass,Class_Normal,-5; - Id: 435000 AegisName: C_Sausage Name: Costume Sausage Princess # !todo check english name Type: Armor Locations: Costume_Head_Top: true Costume_Head_Low: true ArmorLevel: 1 View: 2320 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 436000 AegisName: Tha_Maero_MaskK Name: Thanatos's Maeror Mask Type: Armor View: 666 Weight: 100 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus bMatkRate,3; - Id: 436001 AegisName: Tha_Despero_MaskK Name: Thanatos's Despero Mask Type: Armor View: 693 Weight: 100 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus bAtkRate,3; - Id: 436002 AegisName: Thanatos_Mal_MaskK Name: Thanatos's Odium Mask Type: Armor View: 667 Weight: 100 Defense: 3 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bMaxHPrate,5; - Id: 436003 AegisName: Thanatos_Mal_MaskK_ Name: Thanatos's Odium Mask Type: Armor View: 667 Weight: 100 Defense: 3 Slots: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bMaxHPrate,5; - Id: 436004 AegisName: Tha_Despero_MaskK_ Name: Thanatos's Despero Mask Type: Armor View: 693 Weight: 100 Slots: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus2 bAddRace,RC_Player_Human,10; bonus2 bAddRace,RC_Player_Doram,10; bonus bAtkRate,3; - Id: 436005 AegisName: Tha_Maero_MaskK_ Name: Thanatos's Maeror Mask Type: Armor View: 666 Weight: 100 Slots: 1 Locations: Head_Low: true Head_Mid: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus2 bMagicAddRace,RC_Player_Human,10; bonus2 bMagicAddRace,RC_Player_Doram,10; bonus bMatkRate,3; - Id: 436006 AegisName: C_Ep19_Rgan Name: Costume Rgan Disguise Tool Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2144 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 436007 AegisName: C_Ep19_Iwin Name: Costume Irwin Cold Hat Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2143 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 436008 AegisName: C_HwaHoJumJung Name: Costume Big Tiger Hat Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2216 - Id: 436010 AegisName: C_spiding Name: Costume Gumming # !todo check english name Type: Armor Locations: Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2315 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 440000 AegisName: C_SharkHead Name: Costume Shark Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1919 - Id: 440001 AegisName: C_Wunderkammer Name: Costume Wunderkammer Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 743 - Id: 440002 AegisName: C_Happy_Cat_TW Name: Costume Happy Cat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 EquipLevelMin: 1 View: 1980 - Id: 440003 AegisName: C_Pretty_Rabbit_Hood_E Name: Costume Novice Rabbit Hood Type: Armor View: 1085 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 440004 AegisName: C_Close_Helmet Name: Costume Close Helmet # !todo check english name Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 203 - Id: 440005 AegisName: C_Diabolus_Helmet Name: Costume Dark Bacilium # !todo check english name Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 364 - Id: 440006 AegisName: C_Black_Cat_Hood_kr Name: Costume Black Cat Hood Type: Armor View: 1481 Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 440007 AegisName: C_Squirrel_Ear_Hat_Kr Name: Costume Beginner Squirrel Ear Hat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 1486 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 440008 AegisName: C_Master Name: Costume Master Type: Armor Locations: Costume_Head_Top: true ArmorLevel: 1 Script: | hateffect HAT_EF_C_MASTER,true; UnEquipScript: | hateffect HAT_EF_C_MASTER,false; - Id: 440009 AegisName: C_Black_Moon_Cat_kr Name: Costume Beginner Black Moon Cat Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2146 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 440010 AegisName: C_Bear_Head Name: Costume Teddy Bear Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2147 - Id: 440012 AegisName: C_Dr_Eggman_Mask Name: Costume Dr. Eggman Mask Type: Armor Locations: Costume_Head_Top: true Costume_Head_Mid: true Costume_Head_Low: true ArmorLevel: 1 View: 2434 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 450000 AegisName: IDTest_armor Name: IDTest armor Type: Armor Buy: 10 Weight: 10 Defense: 10 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true # Flags: # BuyingStore: true Script: | bonus bMaxHP,100; - Id: 450001 AegisName: Atker_Plate Name: Attacker Booster Plate Type: Armor Defense: 120 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,100; bonus bDelayrate,-5; .@r = getrefine(); if (.@r>=2) { bonus bAtkRate,.@r/2; } if (.@r>=3) { bonus bCritAtkRate,.@r/3; } if (.@r>=7) { bonus bBaseAtk,50; } if (.@r>=9) { bonus bDelayrate,-5; } - Id: 450002 AegisName: Ele_Robe Name: Elemental Booster Robe Type: Armor Defense: 80 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,100; bonus bVariableCastrate,-5; .@r = getrefine(); if (.@r>=2) { bonus bMatkRate,.@r/2; } if (.@r>=3) { bonus bVariableCastrate,.@r/3*-1; } if (.@r>=7) { bonus bMatk,50; } if (.@r>=9) { bonus bVariableCastrate,-5; } - Id: 450003 AegisName: Defn_Robe Name: Defender Booster Robe Type: Armor Defense: 90 Slots: 1 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,100; bonus bVariableCastrate,-5; .@r = getrefine(); if (.@r>=2) { bonus bMatkRate,.@r/2; } if (.@r>=3) { bonus bVariableCastrate,.@r/3*-1; } if (.@r>=7) { bonus bMatk,50; } if (.@r>=9) { bonus bVariableCastrate,-5; } - Id: 450004 AegisName: Ran_Suits Name: Ranger Booster Suits Type: Armor Defense: 100 Slots: 1 Classes: All_Third: true Fourth: true Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,100; bonus bDelayrate,-5; .@r = getrefine(); if (.@r>=2) { bonus bAspdRate,.@r/2; } if (.@r>=3) { bonus bLongAtkRate,.@r/3; } if (.@r>=7) { bonus bBaseAtk,50; } if (.@r>=9) { bonus bDelayrate,-5; } - Id: 450010 AegisName: Europa_Robe_J Name: Europa Robe Type: Armor Buy: 200000 Weight: 500 Defense: 35 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = (readparam(bVit)+readparam(bLuk))/10; bonus bMdef,10; bonus bVit,5; bonus bLuk,5; bonus bDelayrate,-10; if (.@r>=7) { bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Player_Doram,7; bonus bUnbreakableArmor; } if (.@r>=8) { bonus bBaseAtk,10*.@a; bonus bMatk,10*.@a; } if (.@r>=9) bonus2 bResEff,Eff_Stone,10000; - Id: 450011 AegisName: Capricon_Mail_J Name: Capricon Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bMatk,50; bonus bFlee2,3; bonus bMaxHP,1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) { bonus bBaseAtk,80; bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus bUseSPrate,-20; } - Id: 450012 AegisName: Siege_Robe_2Tier Name: Intermediate Guild Member's Robe Type: Armor Weight: 500 Defense: 25 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SuperNovice: true Wizard: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1050; bonus bMaxSP,150; bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; if (.@r>=7) bonus bMatkRate,5; - Id: 450013 AegisName: Siege_Suits_2Tier Name: Intermediate Guild Member's Suit Type: Armor Weight: 1500 Defense: 30 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Merchant: true Ninja: true Rogue: true Swordman: true Thief: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1150; bonus bMaxSP,100; bonus bMdef,5; bonus2 bSubRace,RC_Player_Doram,4; bonus2 bSubRace,RC_Player_Human,4; if (.@r>=7) bonus bAtkRate,5; - Id: 450014 AegisName: Siege_Plate_2Tier Name: Intermediate Guild Member's Plate Type: Armor Weight: 2500 Defense: 50 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1250; bonus bMaxSP,50; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=7) { bonus2 bSubRace,RC_Player_Doram,2; bonus2 bSubRace,RC_Player_Human,2; } - Id: 450015 AegisName: Virgo_Mail_J Name: Virgo Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bMatk,50; bonus bMaxHP,1000; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Priest) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus2 bSubClass,Class_Boss,5; } - Id: 450017 AegisName: Kukulkan_Skin_TW Name: Kukulkan Skin Type: Armor Weight: 2500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubEle,Ele_Neutral,5; if (.@r>=7) bonus bAllStats,1; if (.@r>=9) bonus bLongAtkDef,5; if (.@r>=11) bonus2 bSubEle,Ele_Neutral,3; if (.@r>=12) bonus bAspd,1; if (.@r>=13) skill "CR_AUTOGUARD",3; - Id: 450018 AegisName: Noblesse_Breath_Armor Name: Noblesse Breath Armor Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bMaxHPrate,5; - Id: 450019 AegisName: Noblesse_Knight_Armor Name: Noblesse Knight Armor Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bCritAtkRate,5; - Id: 450020 AegisName: Noblesse_Spear_Armor Name: Noblesse Spear Armor Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450021 AegisName: Noblesse_Genesis_Armor Name: Noblesse Genesis Armor Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5; - Id: 450022 AegisName: Noblesse_Sharp_Suit Name: Noblesse Sharp Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450023 AegisName: Noblesse_Aim_Suit Name: Noblesse Aimed suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450024 AegisName: Noblesse_Severe_Suit Name: Noblesse Severe Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450025 AegisName: Noblesse_Reverb_Suit Name: Noblesse Reverb Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; - Id: 450026 AegisName: Noblesse_Adora_Robe Name: Noblesse Adora Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,5; - Id: 450027 AegisName: Noblesse_Duple_Robe Name: Noblesse Duple Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bCritAtkRate,5; - Id: 450028 AegisName: Noblesse_Tonado_Armor Name: Noblesse Tornado Armor Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus2 bAddClass,Class_All,5; - Id: 450029 AegisName: Noblesse_Vulcan_Armor Name: Noblesse Vulcan Armor Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450030 AegisName: Noblesse_Kart_Suit Name: Noblesse Cart Cannon Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450031 AegisName: Noblesse_Kart_Suit2 Name: Noblesse Cart Tornado Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus2 bAddClass,Class_All,5; - Id: 450032 AegisName: Noblesse_Rolling_Suit Name: Noblesse Rolling Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450033 AegisName: Noblesse_Assasin_Suit Name: Noblesse Assassin Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bCritAtkRate,5; - Id: 450034 AegisName: Noblesse_Fatal_Suit Name: Noblesse Fatal Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus2 bAddClass,Class_All,5; - Id: 450035 AegisName: Noblesse_Stalker_Suit Name: Noblesse Stalker Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; - Id: 450036 AegisName: Noblesse_Picky_Robe Name: Noblesse Picky Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450037 AegisName: Noblesse_Carrot_Robe Name: Noblesse Catnip Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; - Id: 450038 AegisName: Noblesse_Trip_Suit Name: Noblesse Trip Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAtkRate,5; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450039 AegisName: Noblesse_Firerain_Suit Name: Noblesse Fire Rain Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAtkRate,5; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450040 AegisName: Noblesse_Crimson_Robe Name: Noblesse Crimson Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,5; - Id: 450041 AegisName: Noblesse_Frost_Robe Name: Noblesse Frost Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; - Id: 450042 AegisName: Noblesse_Psychic_Robe Name: Noblesse Psychic Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,5; - Id: 450043 AegisName: Noblesse_Dust_Robe Name: Noblesse Dust Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Water,5; - Id: 450044 AegisName: Noblesse_Sun_Suit Name: Noblesse Sun Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bAtkRate,5; - Id: 450045 AegisName: Noblesse_Moon_Suit Name: Noblesse Moon Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus2 bAddClass,Class_All,5; if (.@r>=9) bonus bAtkRate,5; - Id: 450046 AegisName: Noblesse_Ninja_Suit Name: Noblesse Ninja Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: KagerouOboro: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bVariableCastrate,-10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; - Id: 450047 AegisName: Noblesse_Kunai_Suit Name: Noblesse Kunai Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: KagerouOboro: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAtkRate,5; if (.@r>=9) bonus bLongAtkRate,5; - Id: 450048 AegisName: Noblesse_Swhoo_Robe Name: Noblesse Eswhoo Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5; - Id: 450049 AegisName: Noblesse_Explosion_Robe Name: Noblesse Explosion Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,5; - Id: 450050 AegisName: Noblesse_Knuckle_Suit Name: Noblesse Knuckle Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bMaxSPrate,10; if (.@r>=9) bonus2 bAddClass,Class_All,5; - Id: 450051 AegisName: Noblesse_Tiger_Suit Name: Noblesse Tiger Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxSPrate,5; if (.@r>=7) bonus bMaxHPrate,3; if (.@r>=9) bonus bMaxHPrate,3; - Id: 450052 AegisName: Imperial_Breath_Armor Name: Imperial Breath Armor Type: Armor Buy: 20 Defense: 120 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHPrate,7; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus bMaxHPrate,7; - Id: 450053 AegisName: Imperial_Knight_Armor Name: Imperial Knight Armor Type: Armor Buy: 20 Defense: 120 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bCritAtkRate,7; - Id: 450054 AegisName: Imperial_Spear_Armor Name: Imperial Spear Armor Type: Armor Buy: 20 Defense: 120 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450055 AegisName: Imperial_Genesis_Armor Name: Imperial Genesis Armor Type: Armor Buy: 20 Defense: 120 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7; - Id: 450056 AegisName: Imperial_Sharp_Suit Name: Imperial Sharp Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450057 AegisName: Imperial_Aim_Suit Name: Imperial Aimed Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450058 AegisName: Imperial_Severe_Suit Name: Imperial Severe Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450059 AegisName: Imperial_Reverb_Suit Name: Imperial Reverb Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,7; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; - Id: 450060 AegisName: Imperial_Adora_Robe Name: Imperial Adora Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,7; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,7; - Id: 450061 AegisName: Imperial_Duple_Robe Name: Imperial Duple Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bCritAtkRate,7; - Id: 450062 AegisName: Imperial_Knuckle_Suit Name: Imperial Knuckle Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bMaxSPrate,15; if (.@r>=9) bonus2 bAddClass,Class_All,7; - Id: 450063 AegisName: Imperial_Tiger_Suit Name: Imperial Tiger Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxSPrate,7; if (.@r>=7) bonus bMaxHPrate,4; if (.@r>=9) bonus bMaxHPrate,4; - Id: 450064 AegisName: Imperial_Tonado_Armor Name: Imperial Tornado Armor Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus2 bAddClass,Class_All,7; - Id: 450065 AegisName: Imperial_Vulcan_Armor Name: Imperial Vulcan Armor Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450066 AegisName: Imperial_Kart_Suit Name: Imperial Cart Cannon Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450067 AegisName: Imperial_Kart_Suit2 Name: Imperial Cart Tornado Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus2 bAddClass,Class_All,7; - Id: 450068 AegisName: Imperial_Rolling_Suit Name: Imperial Rolling Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450069 AegisName: Imperial_Assasin_Suit Name: Imperial Assassin Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bCritAtkRate,7; - Id: 450070 AegisName: Imperial_Fatal_Suit Name: Imperial Fatal Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus2 bAddClass,Class_All,7; - Id: 450071 AegisName: Imperial_Stalker_Suit Name: Imperial Stalker Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; - Id: 450072 AegisName: Imperial_Picky_Robe Name: Imperial Picky Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450073 AegisName: Imperial_Carrot_Robe Name: Imperial Catnip Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; - Id: 450074 AegisName: Imperial_Trip_Suit Name: Imperial Trip Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAtkRate,7; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450075 AegisName: Imperial_Firerain_Suit Name: Imperial Fire Rain Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAtkRate,7; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450076 AegisName: Imperial_Crimson_Robe Name: Imperial Crimson Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,7; - Id: 450077 AegisName: Imperial_Frost_Robe Name: Imperial Frost Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; - Id: 450078 AegisName: Imperial_Psychic_Robe Name: Imperial Psychic Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,7; - Id: 450079 AegisName: Imperial_Dust_Robe Name: Imperial Dust Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Water,7; - Id: 450080 AegisName: Imperial_Sun_Suit Name: Imperial Sun Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bAtkRate,7; - Id: 450081 AegisName: Imperial_Moon_Suit Name: Imperial Moon Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus2 bAddClass,Class_All,7; if (.@r>=9) bonus bAtkRate,7; - Id: 450082 AegisName: Imperial_Ninja_Suit Name: Imperial Ninja Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: KagerouOboro: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bVariableCastrate,-15; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; - Id: 450083 AegisName: Imperial_Kunai_Suit Name: Imperial Kunai Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: KagerouOboro: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAtkRate,7; if (.@r>=9) bonus bLongAtkRate,7; - Id: 450084 AegisName: Imperial_Swhoo_Robe Name: Imperial Eswhoo Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7; - Id: 450085 AegisName: Imperial_Explosion_Robe Name: Imperial Explosion Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,7; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,7; - Id: 450086 AegisName: Grace_Breath_Armor Name: Grace Breath Armor Type: Armor Buy: 20 Defense: 130 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus bMaxHPrate,10; - Id: 450087 AegisName: Grace_Knight_Armor Name: Grace Knight Armor Type: Armor Buy: 20 Defense: 130 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bCritAtkRate,10; - Id: 450088 AegisName: Grace_Spear_Armor Name: Grace Spear Armor Type: Armor Buy: 20 Defense: 130 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450089 AegisName: Grace_Genesis_Armor Name: Grace Genesis Armor Type: Armor Buy: 20 Defense: 130 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10; - Id: 450090 AegisName: Grace_Sharp_Suit Name: Grace Sharp Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450091 AegisName: Grace_Aim_Suit Name: Grace Aimed Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450092 AegisName: Grace_Severe_Suit Name: Grace Severe Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450093 AegisName: Grace_Reverb_Suit Name: Grace Reverb Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; - Id: 450094 AegisName: Grace_Adora_Robe Name: Grace Adora Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Holy,10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Holy,10; - Id: 450095 AegisName: Grace_Duple_Robe Name: Grace Duple Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bCritAtkRate,10; - Id: 450096 AegisName: Grace_Knuckle_Suit Name: Grace Knuckle Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bMaxSPrate,20; if (.@r>=9) bonus2 bAddClass,Class_All,10; - Id: 450097 AegisName: Grace_Tiger_Suit Name: Grace Tiger Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxSPrate,10; if (.@r>=7) bonus bMaxHPrate,5; if (.@r>=9) bonus bMaxHPrate,5; - Id: 450098 AegisName: Grace_Tonado_Armor Name: Grace Tornado Armor Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus2 bAddClass,Class_All,10; - Id: 450099 AegisName: Grace_Vulcan_Armor Name: Grace Vulcan Armor Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450100 AegisName: Grace_Kart_Suit Name: Grace Cart Cannon Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450101 AegisName: Grace_Kart_Suit2 Name: Grace Cart Tornado Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus2 bAddClass,Class_All,10; - Id: 450102 AegisName: Grace_Rolling_Suit Name: Grace Rolling Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450103 AegisName: Grace_Assasin_Suit Name: Grace Assassin Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bCritAtkRate,10; - Id: 450104 AegisName: Grace_Fatal_Suit Name: Grace Fatal Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus2 bAddClass,Class_All,10; - Id: 450105 AegisName: Grace_Stalker_Suit Name: Grace Stalker Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; - Id: 450106 AegisName: Grace_Picky_Robe Name: Grace Picky Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450107 AegisName: Grace_Carrot_Robe Name: Grace Catnip Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; - Id: 450108 AegisName: Grace_Trip_Suit Name: Grace Trip Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAtkRate,10; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450109 AegisName: Grace_Firerain_Suit Name: Grace Fire Rain Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Rebellion: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAtkRate,10; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450110 AegisName: Grace_Crimson_Robe Name: Grace Crimson Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Fire,10; - Id: 450111 AegisName: Grace_Frost_Robe Name: Grace Frost Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; - Id: 450112 AegisName: Grace_Psychic_Robe Name: Grace Psychic Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Neutral,10; - Id: 450113 AegisName: Grace_Dust_Robe Name: Grace Dust Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Water,10; - Id: 450114 AegisName: Grace_Sun_Suit Name: Grace Sun Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bAtkRate,10; - Id: 450115 AegisName: Grace_Moon_Suit Name: Grace Moon Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus2 bAddClass,Class_All,10; if (.@r>=9) bonus bAtkRate,10; - Id: 450116 AegisName: Grace_Ninja_Suit Name: Grace Ninja Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: KagerouOboro: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bVariableCastrate,-20; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; - Id: 450117 AegisName: Grace_Kunai_Suit Name: Grace Kunai Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: KagerouOboro: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAtkRate,10; if (.@r>=9) bonus bLongAtkRate,10; - Id: 450118 AegisName: Grace_Swhoo_Robe Name: Grace Eswhoo Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10; - Id: 450119 AegisName: Grace_Explosion_Robe Name: Grace Explosion Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus2 bMagicAtkEle,Ele_Dark,10; if (.@r>=9) bonus2 bMagicAtkEle,Ele_Dark,10; - Id: 450121 AegisName: Noblesse_Snovice_Suit Name: Noblesse Super Novice Suit Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bMaxHPrate,5; - Id: 450122 AegisName: Noblesse_Snovice_Robe Name: Noblesse Super Novice Robe Type: Armor Buy: 20 Defense: 70 Slots: 1 Jobs: SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) bonus bAspdRate,3; if (.@r>=9) bonus bMaxHPrate,5; - Id: 450123 AegisName: Imperial_Snovice_Suit Name: Imperial Super Novice Suit Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bMaxHPrate,7; - Id: 450124 AegisName: Imperial_Snovice_Robe Name: Imperial Super Novice Robe Type: Armor Buy: 20 Defense: 90 Slots: 1 Jobs: SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,75; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bMaxHPrate,7; - Id: 450125 AegisName: Grace_Snovice_Suit Name: Grace Super Novice Suit Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bMaxHPrate,10; - Id: 450126 AegisName: Grace_Snovice_Robe Name: Grace Super Novice Robe Type: Armor Buy: 20 Defense: 100 Slots: 1 Jobs: SuperNovice: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,100; if (.@r>=7) bonus bAspdRate,7; if (.@r>=9) bonus bMaxHPrate,10; - Id: 450127 AegisName: Auto_Armor_A Name: Automatic Armor Type A Type: Armor Weight: 1000 Defense: 135 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,125; bonus bBaseAtk,10*(.@r/2); if (.@r>=7) { bonus bAspdRate,15; } - Id: 450128 AegisName: Auto_Armor_B Name: Automatic Armor Type B Type: Armor Weight: 1000 Defense: 135 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); bonus bMatk,125+(10*(.@r/2)); if (.@r>=7) { bonus bVariableCastrate,-15; } - Id: 450129 AegisName: Aries_Mail_J Name: Aries Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHP,1000; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus2 bSubClass,Class_Boss,5; } - Id: 450130 AegisName: Gemini_Mail_J Name: Gemini Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bMatk,50; bonus bMaxHP,1000; bonus bDelayrate,-10; if ((eaclass()&EAJL_THIRD) && (BaseJob == Job_Bard || BaseJob == Job_Dancer)) { bonus bBaseAtk,80; bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) { bonus bAtkRate,30; bonus bMatkRate,30; } } - Id: 450131 AegisName: Fallen_Angel_Armor_TW Name: Fallen Angel Armor Type: Armor Weight: 1000 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bUnbreakableArmor; bonus2 bSubEle,Ele_Holy,-10; bonus2 bSubRace,RC_Angel,-15; bonus2 bSubRace,RC_Demon,5+(.@r>=9?5:0); bonus2 bSubRace,RC_DemiHuman,5+(.@r>=9?5:0); bonus2 bSubRace,RC_Player_Human,5+(.@r>=9?5:0); bonus2 bSubRace,RC_Player_Doram,5+(.@r>=9?5:0); if (.@r>=7) bonus bMaxHPrate,5; if (.@r>=11) bonus bVariableCastrate,-8; - Id: 450132 AegisName: Magical_Cloth Name: Magical Cloth Type: Armor Buy: 200000 Weight: 100 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Fire,5; if (.@r>=7) { bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Earth,2; bonus2 bMagicAtkEle,Ele_Water,2; bonus2 bMagicAtkEle,Ele_Wind,2; bonus2 bMagicAtkEle,Ele_Fire,2; } if (.@r>=8) { bonus bUnbreakableArmor; bonus2 bMagicAtkEle,Ele_Earth,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus2 bMagicAtkEle,Ele_Wind,3; bonus2 bMagicAtkEle,Ele_Fire,3; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Fire,5; autobonus "{ bonus2 bSkillAtk,\"MG_FIREBOLT\",100; bonus2 bSkillAtk,\"MG_COLDBOLT\",100; bonus2 bSkillAtk,\"MG_LIGHTNINGBOLT\",100; bonus2 bSkillAtk,\"WZ_EARTHSPIKE\",100; }",2000,10000; } - Id: 450133 AegisName: Pisces_Mail_J Name: Pisces Mail Type: Armor Buy: 20 Weight: 100 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bMatk,50; bonus bAspdRate,10; bonus bMaxHP,1000; if (eaclass()&EAJL_THIRD && BaseJob == Job_Sage) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; if (.@r>=8) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } } - Id: 450135 AegisName: Bloody_Celine_Dress_TW Name: Bloody Celine's Dress Type: Armor Weight: 200 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); if (.@r>=7) bonus bMatkRate,10; if (.@r>=10) bonus bUnbreakableArmor; - Id: 450140 AegisName: Sagittarius_Mail_J Name: Sagittarius Mail Type: Armor Buy: 20 Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHP,1000; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Hunter) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus bPerfectHitAddRate,20; } - Id: 450141 AegisName: Kingly_Armor Name: Monarch Mail Type: Armor Buy: 20 Weight: 1000 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSubEle,Ele_All,5; bonus2 bSubClass,Class_Normal,7; bonus bAtkRate,10; bonus bMatkRate,10; if (getrefine()>=7) { bonus bPerfectHitAddRate,25; bonus2 bMagicAtkEle,Ele_Neutral,20; bonus bUnbreakableArmor; } - Id: 450142 AegisName: Orc_Load_Mail Name: Orc Lord Armor Type: Armor Weight: 900 Defense: 90 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,10; bonus bDelayrate,-10; bonus bShortWeaponDamageReturn,.@r; if (.@r>=7) bonus2 bAddRace,RC_All,10; if (.@r>=9) bonus2 bAddRace,RC_All,10; - Id: 450143 AegisName: Samael_Dress Name: Red Serpent Dress Type: Armor Buy: 20 Weight: 400 Defense: 120 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); .@a = ((.@r>=9)?40:(.@r>=7)?25:(.@r>=5?10:0)); bonus bDefEle,Ele_Holy; bonus bNoKnockback; bonus2 bAddRace,RC_Insect,.@a; bonus2 bAddRace,RC_Plant,.@a; bonus2 bAddEle,Ele_Holy,.@a; bonus2 bAddEle,Ele_Poison,.@a; bonus2 bMagicAddRace,RC_Insect,.@a; bonus2 bMagicAddRace,RC_Plant,.@a; bonus2 bMagicAddEle,Ele_Holy,.@a; bonus2 bMagicAddEle,Ele_Poison,.@a; - Id: 450144 AegisName: Saint_Robe_IL Name: Illusion Saint Robe Type: Armor Weight: 600 Defense: 60 Slots: 1 Jobs: Acolyte: true Alchemist: true Blacksmith: true Merchant: true Monk: true Priest: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMdef,10; if (.@r>=9) { bonus2 bSubRace,RC_Fish,15; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Fish,20; } - Id: 450145 AegisName: Water_Sprits_Armor_IL Name: Illusion Saphien's Armor of Ocean Type: Armor Weight: 2200 Defense: 50 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxHP,125*.@r; if (.@r>=7) { bonus bDef,50; } if (.@r>=9) { autobonus2 "{ bonus2 bSubEle,Ele_Water,15; }",1,5000,BF_MAGIC|BF_WEAPON; } - Id: 450146 AegisName: Chain_Mail_IL Name: Illusion Chain Mail Type: Armor Weight: 3300 Defense: 70 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,4*.@r; bonus2 bAddEle,Ele_Fire,4*(.@r/3); bonus2 bAddEle,Ele_Water,4*(.@r/3); if (.@r>=9) { bonus bAtkRate,10; } if (.@r>=11) { bonus bAspdRate,10; } - Id: 450147 AegisName: E_Illusion_Armor_A Name: Illusion Armor Type A (Bound) Type: Armor Defense: 105 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,100+10*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; } - Id: 450148 AegisName: E_Illusion_Armor_B Name: Illusion Armor Type B (Bound) Type: Armor Defense: 105 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bMatk,100+10*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; } - Id: 450149 AegisName: MD_Geffen_Suits Name: Anti Conjurer Suit Type: Armor Weight: 900 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Script: | .@r = getrefine(); bonus bHealPower2,10; bonus bUseSPrate,-10; bonus bMaxHPrate,3; bonus bStr,3; bonus bAgi,3; bonus bBaseAtk,10*.@r; bonus bAspdRate,2*(.@r/2); if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=11) { bonus bAspdRate,7; if (.@r>=13) { bonus bBaseAtk,60; } } } - Id: 450150 AegisName: MD_Geffen_Robe Name: Magic Protector Robe Type: Armor Weight: 800 Defense: 110 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Script: | .@r = getrefine(); bonus bHealPower2,10; bonus bUseSPrate,-10; bonus bMaxHPrate,3; bonus bInt,3; bonus bDex,3; bonus bMatk,10*.@r; bonus bVariableCastrate,-2*(.@r/2); if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bVariableCastrate,-7; if (.@r>=13) { bonus bMatk,60; } } } - Id: 450151 AegisName: Adv_Cotton_Shirt Name: Reinforced Cotton Shirt Type: Armor Slots: 1 Locations: Armor: true ArmorLevel: 2 Refineable: true - Id: 450155 AegisName: JP_Armor06_L Name: "[Rental] Red Serpent Dress" Type: Armor Buy: 20 Weight: 400 Defense: 120 Locations: Armor: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bDefEle,Ele_Holy; bonus bNoKnockback; if (.@r>=5) { bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_Plant,10; bonus2 bAddEle,Ele_Holy,10; bonus2 bAddEle,Ele_Poison,10; bonus2 bMagicAddRace,RC_Insect,10; bonus2 bMagicAddRace,RC_Plant,10; bonus2 bMagicAddEle,Ele_Holy,10; bonus2 bMagicAddEle,Ele_Poison,10; } if (.@r>=7) { bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Holy,15; bonus2 bAddEle,Ele_Poison,15; bonus2 bMagicAddRace,RC_Insect,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bMagicAddEle,Ele_Holy,15; bonus2 bMagicAddEle,Ele_Poison,15; } if (.@r>=9) { bonus2 bAddRace,RC_Insect,15; bonus2 bAddRace,RC_Plant,15; bonus2 bAddEle,Ele_Holy,15; bonus2 bAddEle,Ele_Poison,15; bonus2 bMagicAddRace,RC_Insect,15; bonus2 bMagicAddRace,RC_Plant,15; bonus2 bMagicAddEle,Ele_Holy,15; bonus2 bMagicAddEle,Ele_Poison,15; } - Id: 450158 AegisName: Triad_God_Mail_J__ Name: Awakening Triad God Mail Type: Armor Weight: 900 Defense: 90 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bAspdRate,10; if (.@r>=7) bonus2 bAddSize,Size_All,20; if (.@r>=9) bonus2 bAddSize,Size_All,20; - Id: 450163 AegisName: White_Lily_Robe_ Name: White Lily Robe Type: Armor Weight: 900 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bDelayrate,-.@r; if (.@r>=7) bonus bMatkRate,10; if (.@r>=9) bonus bMatkRate,10; - Id: 450164 AegisName: Egirnion_Armor Name: Aegirnion Armor Type: Armor Weight: 1000 Defense: 80 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,5; bonus bUnbreakableArmor; if (getrefine()>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,2; } - Id: 450165 AegisName: Striking_Mail Name: Striking Mail Type: Armor Weight: 1000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bPerfectHitAddRate,5*.@r; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Player_Doram,7; - Id: 450166 AegisName: Vague_Star_Robe Name: Faint Star's Robe Type: Armor Weight: 500 Defense: 105 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Script: | .@r = getrefine(); bonus bMatk,125+(15*(.@r/2)); if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; } } - Id: 450167 AegisName: Vague_Star_Suit Name: Faint Star's Suit Type: Armor Weight: 1500 Defense: 135 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Script: | .@r = getrefine(); bonus bMatk,75+10*(.@r/2); bonus bBaseAtk,75+10*(.@r/2); if (.@r>=9) { bonus bAspdRate,7; if (.@r>=11) { bonus bLongAtkRate,10; } } - Id: 450168 AegisName: Vague_Star_Armor Name: Faint Star's Armor Type: Armor Weight: 2500 Defense: 175 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,125+15*(.@r/2); if (.@r>=9) { bonus bMaxHPrate,7; if (.@r>=11) { bonus bShortAtkRate,10; } } - Id: 450169 AegisName: Star_Armor_Of_Pow Name: Nebula Armor of Power Type: Armor Weight: 2500 Defense: 175 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bPow,1; bonus bBaseAtk,125+15*(.@r/2); if (.@r>=9) { bonus bAtkRate,5; if (.@r>=11) { bonus bShortAtkRate,20; } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,(.@r/2); bonus bBaseAtk,2*(.@r/2); bonus bShortAtkRate,(.@r/3); if (.@g >= ENCHANTGRADE_C) { bonus bAtkRate,(.@r/2); bonus bBaseAtk,3*(.@r/2); bonus bShortAtkRate,(.@r/3); if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,2*(.@r/2); bonus bShortAtkRate,(.@r/3); bonus bPAtk,(.@r/4); if (.@g >= ENCHANTGRADE_A) { bonus bAtkRate,3*(.@r/2); bonus bShortAtkRate,2*(.@r/3); bonus bPAtk,2*(.@r/4); } } } } - Id: 450170 AegisName: Star_Armor_Of_Sta Name: Nebula Armor of Stamina Type: Armor Weight: 2500 Defense: 175 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSta,1; bonus bMaxHPrate,10; bonus bDef,15*(.@r/2); if (.@r>=9) { bonus bHealPower2,10; if (.@r>=11) { bonus bMaxHPrate,15; } } if (.@g >= ENCHANTGRADE_D) { bonus bDef,5*(.@r/2); bonus bHealPower2,2*(.@r/2); bonus bRes,(.@r/4); if (.@g >= ENCHANTGRADE_C) { bonus bDef,7*(.@r/2); bonus bHealPower2,3*(.@r/2); bonus bRes,2*(.@r/4); if (.@g >= ENCHANTGRADE_B) { bonus bMaxHPrate,(.@r/3); bonus bRes,3*(.@r/4); if (.@g >= ENCHANTGRADE_A) { bonus bMaxHPrate,2*(.@r/3); bonus bRes,4*(.@r/4); } } } } - Id: 450171 AegisName: Star_Suit_Of_Con Name: Nebula Suit of Concentration Type: Armor Weight: 1500 Defense: 135 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCon,1; bonus bBaseAtk,125+15*(.@r/2); if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bLongAtkRate,20; } } if (.@g >= ENCHANTGRADE_D) { bonus bAspdRate,(.@r/2); bonus bAtkRate,(.@r/2); bonus bBaseAtk,2*(.@r/2); if (.@g >= ENCHANTGRADE_C) { bonus bAspdRate,(.@r/2); bonus bAtkRate,2*(.@r/2); bonus bBaseAtk,3*(.@r/2); if (.@g >= ENCHANTGRADE_B) { bonus bAspdRate,2*(.@r/2); bonus bLongAtkRate,(.@r/3); bonus bPAtk,(.@r/4); if (.@g >= ENCHANTGRADE_A) { bonus bAspdRate,2*(.@r/2); bonus bLongAtkRate,2*(.@r/3); bonus bPAtk,2*(.@r/4); } } } } - Id: 450172 AegisName: Star_Suit_Of_Crt Name: Nebula Suit of Creative Type: Armor Weight: 1500 Defense: 135 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCrt,1; bonus bBaseAtk,100+10*(.@r/2); if (.@r>=9) { bonus bCritical,5; if (.@r>=11) { bonus bCritAtkRate,20; } } if (.@g >= ENCHANTGRADE_D) { bonus bBaseAtk,(.@r/2); bonus bCritAtkRate,2*(.@r/3); bonus bCritical,(.@r/3); if (.@g >= ENCHANTGRADE_C) { bonus bBaseAtk,2*(.@r/2); bonus bCritAtkRate,3*(.@r/3); bonus bCritical,2*(.@r/3); if (.@g >= ENCHANTGRADE_B) { bonus bCritAtkRate,5*(.@r/3); bonus bCRate,(.@r/4); bonus bPAtk,(.@r/4); if (.@g >= ENCHANTGRADE_A) { bonus bCritAtkRate,7*(.@r/3); bonus bCRate,(.@r/4); bonus bPAtk,2*(.@r/4); } } } } - Id: 450173 AegisName: Star_Robe_Of_Spl Name: Nebula Robe of Spell Type: Armor Weight: 500 Defense: 105 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,1; bonus bMatk,125+(15*(.@r/2)); if (.@r>=9) { bonus bMatkRate,5; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,(.@r/2); bonus bMatk,2*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/3); if (.@g >= ENCHANTGRADE_C) { bonus bMatkRate,(.@r/2); bonus bMatk,3*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/3); if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,2*(.@r/2); bonus2 bMagicAtkEle,Ele_All,5*(.@r/3); bonus bSMatk,(.@r/4); if (.@g >= ENCHANTGRADE_A) { bonus bMatkRate,3*(.@r/2); bonus2 bMagicAtkEle,Ele_All,5*(.@r/3); bonus bSMatk,2*(.@r/4); } } } } - Id: 450174 AegisName: Star_Robe_Of_Wis Name: Nebula Robe of Wisdom Type: Armor Weight: 500 Defense: 105 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,125; bonus bWis,1; bonus bMaxSPrate,2*(.@r/2); bonus bHealPower,(.@r/2); if (.@r>=9) { bonus bSPrecovRate,30; if (.@r>=11) { bonus bVariableCastrate,-10; } } if (.@g >= ENCHANTGRADE_D) { bonus bSPrecovRate,2*(.@r/2); bonus bHealPower,(.@r/2); bonus bMRes,(.@r/3); if (.@g >= ENCHANTGRADE_C) { bonus bSPrecovRate,3*(.@r/2); bonus bHealPower,2*(.@r/2); bonus bMRes,2*(.@r/3); if (.@g >= ENCHANTGRADE_B) { bonus bMaxSPrate,(.@r/2); bonus bMRes,2*(.@r/3); bonus bHPlus,2*(.@r/4); if (.@g >= ENCHANTGRADE_A) { bonus bMaxSPrate,2*(.@r/2); bonus bMRes,3*(.@r/3); bonus bHPlus,3*(.@r/4); } } } } - Id: 450175 AegisName: Temporal_Armor_TW Name: Temporal Armor Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bBaseAtk,30; bonus bMatk,30; bonus bAtkRate,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7) { bonus bBaseAtk,50; bonus bMatk,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Brute,30; bonus2 bIgnoreDefRaceRate,RC_Demon,30; bonus2 bIgnoreMdefRaceRate,RC_Brute,30; bonus2 bIgnoreMdefRaceRate,RC_Demon,30; } if (.@r>=11) { bonus2 bAddEle,Ele_All,10; bonus2 bMagicAddEle,Ele_All,10; } - Id: 450176 AegisName: Supplement_Part_Wing Name: Powered Wing Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("NC_PILEBUNKER"); bonus bMaxHPrate,3; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSkillAtk,"NC_ARMSCANNON",25*.@a; bonus2 bSkillAtk,"NC_FLAMELAUNCHER",25*.@a; bonus2 bSkillAtk,"NC_COLDSLOWER",25*.@a; if (getskilllv("NC_ARMSCANNON") == 5) bonus bDelayrate,-20; if (getskilllv("NC_NEUTRALBARRIER") == 3) { bonus2 bSubClass,Class_Boss,5; bonus bHPGainValue,100; bonus bSPGainValue,10; } if (getskilllv("NC_RESEARCHFE") == 5) bonus bNoKnockback; if (.@r>=7) { bonus bMaxHPrate,5; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bAddClass,Class_Boss,10; } if (.@r>=9) { bonus bMaxHPrate,7; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bAddClass,Class_Boss,10; } - Id: 450177 AegisName: Gray_W_Suits Name: Gray Wolf Suit Type: Armor Weight: 1000 Defense: 160 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,130+15*(.@r/2); if (.@r>=7) { bonus bAspdRate,15; } - Id: 450178 AegisName: Gray_W_Robe Name: Gray Wolf Robe Type: Armor Weight: 1000 Defense: 160 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true Script: | .@r = getrefine(); bonus bMatk,130+(15*(.@r/2)); if (.@r>=7) { bonus bVariableCastrate,-15; } - Id: 450179 AegisName: Celine_Dress Name: Celine's Dress Type: Armor Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,50; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=12) { bonus bDelayrate,-5; } } } } - Id: 450180 AegisName: Cute_Frog_Raincoat Name: Cute Frog Raincoat Type: Armor Weight: 100 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxHPrate,10; bonus2 bMagicAddRace,RC_All,getskilllv("SU_NYANGGRASS")*8; bonus2 bSkillAtk,"SU_CN_METEOR",getskilllv("SU_MEOWMEOW")*10; if (getskilllv("SU_SPIRITOFLAND") == 1) skill "WZ_QUAGMIRE",5; if (getskilllv("SU_CHATTERING") == 5) bonus bAspdRate,10; if (.@r>=5) { bonus bDef,150; bonus bMdef,15; } if (.@r>=7) { bonus bDef,150; bonus bMdef,15; } if (.@r>=10) { bonus bMaxHP,5000; bonus2 bMagicAtkEle,Ele_Neutral,15; } - Id: 450181 AegisName: White_Lily_Robe__ Name: Awakened White Lily Robe Type: Armor Weight: 900 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bDelayrate,-10; if (.@r>=7) bonus2 bMagicAddSize,Size_All,20; if (.@r>=9) bonus2 bMagicAddSize,Size_All,20; - Id: 450182 AegisName: Sprint_Mail_IL Name: Illusion Sprint Mail Type: Armor Weight: 1500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bHPrecovRate,20; bonus bVit,5; if (.@r>=7) { bonus bHPrecovRate,20; if (.@r>=9) { bonus bDelayrate,-5; if (.@r>=11) { bonus bDelayrate,-7; } } } - Id: 450183 AegisName: 1Para_Armor_A Name: Paradise Suit Type: Armor Defense: 30 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@hp = 30*(min(BaseLevel,100)/5); if (BaseLevel>=30) { .@hp += 80; .@sp = 20; } if (BaseLevel>=45) { .@hp += 150; .@sp += 30; } if (BaseLevel>=85) { .@hp += 250; .@sp += 50; } bonus bMaxHP,150+.@hp; bonus bMaxSP,20+.@sp; - Id: 450184 AegisName: 1Para_Armor_B Name: Paradise Robe Type: Armor Defense: 20 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@hp = 20*(min(BaseLevel,100)/5); if (BaseLevel>=30) { .@hp += 60; .@sp = 30; } if (BaseLevel>=45) { .@hp += 100; .@sp += 50; } if (BaseLevel>=85) { .@hp += 150; .@sp += 70; } bonus bMaxHP,100+.@hp; bonus bMaxSP,50+.@sp; - Id: 450185 AegisName: 2Para_Armor_A Name: Paradise Luxury Suit Type: Armor Defense: 50 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; bonus bMaxHP,1500; bonus bMaxSP,150; bonus bDelayrate,-5; bonus bBaseAtk,5*(min(.@l,150)/10); if (.@l>=105) bonus bAtkRate,3; if (.@l>=110) bonus bDelayrate,-5; if (.@l>=120) bonus bMaxHPrate,3; if (.@l>=130) bonus bBaseAtk,40; - Id: 450186 AegisName: 2Para_Armor_B Name: Advanced Paradise Robe Type: Armor Defense: 35 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHP,1000; bonus bMaxSP,250; bonus bDelayrate,-5; bonus bMatk,5*(min(BaseLevel,150)/10); if (BaseLevel>=105) bonus bMatkRate,3; if (BaseLevel>=110) bonus bDelayrate,-5; if (BaseLevel>=120) bonus bMaxHPrate,3; if (BaseLevel>=130) bonus bMatk,40; - Id: 450188 AegisName: Cursed_Devils_Mail_A Name: Awakening Magic Curse Mail Type: Armor Buy: 20 Weight: 1000 Defense: 60 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_All,5; bonus bMaxHPrate,3*.@r; if (.@r>=7) skill "SA_SPELLBREAKER",1; - Id: 450189 AegisName: Oceanus_Blessing Name: Oceanus Blessing Type: Armor Buy: 20 Weight: 600 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus2 bExpAddRace,RC_Fish,10; if (.@r>=5) { bonus2 bAddRace,RC_Fish,20; bonus2 bMagicAddRace,RC_Fish,20; bonus2 bExpAddRace,RC_Fish,10; } if (.@r>=7) { bonus2 bAddRace,RC_Fish,20; bonus2 bMagicAddRace,RC_Fish,20; bonus2 bResEff,Eff_Confusion,10000; } - Id: 450190 AegisName: Rachel_Robe Name: Awakened Glacier Robe Type: Armor Weight: 300 Defense: 157 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-3; bonus bMatk,25*.@r; if (.@r>=6) bonus2 bSubRace,RC_DemiHuman,7; if (.@r>=9) bonus bVariableCastrate,-7; - Id: 450191 AegisName: ST_Orleans_Gown Name: Engraved Orlean's Gown Type: Armor Weight: 300 Defense: 50 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,15; bonus bNoCastCancel; if (.@r>=7) { bonus bMatk,50; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Neutral,20; } } } - Id: 450192 AegisName: ST_Naga_Armor Name: Engraved Naga's Scale Armor Type: Armor Weight: 1000 Defense: 450 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bShortWeaponDamageReturn,5; bonus bMRes,3; if (.@r>=7) { bonus bShortWeaponDamageReturn,5; if (.@r>=9) { bonus bShortAtkRate,10; if (.@r>=11) { autobonus "{ bonus bPAtk,15; }",1,7000,BF_WEAPON,"{ active_transform 1993,3000; }"; } } } - Id: 450198 AegisName: Evt_RagFes_Shirts Name: Ragfest Cotton Shirt for Refining Type: Armor Locations: Armor: true ArmorLevel: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 450199 AegisName: Barmund_Armor Name: Varmundt Rune Armor Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true - Id: 450200 AegisName: Barmund_Flame_Armor Name: Varmundt Fire Rune Armor Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bPow,(readparam(bStr)/25); if (.@r>=7) { bonus bAtkRate,5; if (.@r>=9) { bonus bCritAtkRate,10; if (.@r>=11) { bonus bShortAtkRate,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bAtkRate,3; bonus bPow,3; if (.@g >= ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 450201 AegisName: Barmund_Plain_Armor Name: Varmundt Glade Rune Armor Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSta,(readparam(bVit)/25); if (.@r>=7) { bonus bMaxHPrate,5; if (.@r>=9) { bonus bHealPower2,10; if (.@r>=11) { bonus bMaxHPrate,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMaxHPrate,3; if (.@g >= ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bSta,3; if (.@g >= ENCHANTGRADE_B) { bonus bDelayrate,-5; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 450202 AegisName: Barmund_Death_Armor Name: Varmundt Death Rune Robe Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,(readparam(bInt)/25); if (.@r>=7) { bonus bMatkRate,5; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bMatkRate,3; bonus bSpl,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 450203 AegisName: Barmund_Ice_Armor Name: Varmundt Ice Rune Armor Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCon,(readparam(bDex)/25); if (.@r>=7) { bonus bAtkRate,5; if (.@r>=9) { bonus bCritAtkRate,10; if (.@r>=11) { bonus bLongAtkRate,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bAtkRate,3; bonus bCon,3; if (.@g >= ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 450205 AegisName: Orc_Load_Mail_ Name: Awakened Orc Load Armor Type: Armor Buy: 2000000 Weight: 900 Defense: 90 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-10; bonus bShortWeaponDamageReturn,10; if (.@r>=7) bonus2 bAddSize,Size_All,20; if (.@r>=9) bonus2 bAddSize,Size_All,20; - Id: 450206 AegisName: Snowflower_Armor Name: Snowflower Armor Type: Armor Weight: 800 Defense: 150 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,130+15*(.@r/2); if (.@r>=7) { bonus bAspdRate,15; if (.@r>=9) { bonus bPAtk,2; } } - Id: 450207 AegisName: Snowflower_Robe Name: Snowflower Robe Type: Armor Weight: 800 Defense: 150 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bMatk,130+15*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; if (.@r>=9) { bonus bSMatk,2; } } - Id: 450208 AegisName: Paracelsus_Coat Name: Paracelsus Coat Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bAddRace,RC_All,getskilllv("GN_CRAZYWEED")*7; if (getskilllv("GN_CARTBOOST") == 5) bonus bMaxHP,BaseLevel*50; if (getskilllv("GN_FIRE_EXPANSION") == 5) { bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel*2; bonus2 bSkillAtk,"GN_CART_TORNADO",BaseLevel; } if (.@r>=5) { bonus bDef,150; bonus bMdef,15; } if (.@r>=7) { bonus bDef,150; bonus bMdef,15; } if (.@r>=10) { bonus bShortAtkRate,15; bonus bLongAtkRate,15; bonus bUnbreakableArmor; } - Id: 450209 AegisName: Imp_Powered_Suit Name: Imp Powered Suit Type: Armor Weight: 1000 Buy: 20 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (getskilllv("NC_ARMSCANNON")>=3) bonus bBaseAtk,BaseLevel; if (getskilllv("NC_NEUTRALBARRIER")>=3) bonus bLongAtkRate,70; bonus bDelayrate,-10*getskilllv("NC_PILEBUNKER"); if (.@r>=5) { bonus2 bSkillAtk,"NC_ARMSCANNON",50; bonus2 bSkillAtk,"NC_COLDSLOWER",50; bonus2 bSkillAtk,"NC_FLAMELAUNCHER",50; } if (.@r>=7) { bonus2 bSkillAtk,"NC_ARMSCANNON",50; bonus2 bSkillAtk,"NC_COLDSLOWER",50; bonus2 bSkillAtk,"NC_FLAMELAUNCHER",50; } if (.@r>=10) { bonus bLongAtkRate,15; bonus bUnbreakableArmor; } - Id: 450210 AegisName: Fluffy_Shark_Pajama Name: Fluffy Shark Pajama Type: Armor Weight: 100 Buy: 20 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bHealPower2,10; if (getskilllv("SU_SPIRITOFSEA")>=1) { bonus5 bAutoSpellWhenHit,"SU_TUNAPARTY",1,100,BF_WEAPON,0; bonus5 bAutoSpellWhenHit,"SU_TUNAPARTY",1,100,BF_MAGIC,0; } bonus2 bVariableCastrate,"SU_FRESHSHRIMP",-10*getskilllv("SU_SHRIMPARTY"); bonus2 bVariableCastrate,"SU_BUNCHOFSHRIMP",-10*getskilllv("SU_SHRIMPARTY"); bonus2 bVariableCastrate,"SU_TUNABELLY",-10*getskilllv("SU_SHRIMPARTY"); bonus2 bVariableCastrate,"SU_TUNAPARTY",-10*getskilllv("SU_SHRIMPARTY"); bonus bMaxHPrate,10*getskilllv("SU_GROOMING"); if (getskilllv("SU_PURRING")>=5) bonus2 bSubClass,Class_Boss,5; if (.@r>=5) { bonus bHealPower2,10; bonus bFlee2,5; } if (.@r>=7) { bonus bHealPower2,10; bonus bFlee2,5; } if (.@r>=10) { bonus bDef,300; bonus2 bSubRace,RC_DemiHuman,7; } - Id: 450211 AegisName: Guardian_Mail Name: Guardian Mail Type: Armor Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100; if (.@r>=5) { bonus2 bSubEle,Ele_Earth,2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,2; bonus2 bSubEle,Ele_Wind,2; } - Id: 450214 AegisName: Dark_Triad Name: Dark Triad Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (getskilllv("SC_AUTOSHADOWSPELL")>=10) autobonus3 "{}",30,100,"SC_TRIANGLESHOT","{ sc_start SC_UNLIMIT,5000,1; }"; bonus2 bAddRace,RC_All,7*getskilllv("SC_TRIANGLESHOT"); bonus bAgi,10*getskilllv("SC_MAELSTROM"); bonus bBaseAtk,50*getskilllv("SC_MAELSTROM"); if (.@r>=5) bonus bPerfectHitAddRate,25; if (.@r>=7) bonus bPerfectHitAddRate,25; if (.@r>=10) { bonus bDex,30; bonus bUnbreakableArmor; } UnEquipScript: | sc_end SC_UNLIMIT; - Id: 450215 AegisName: aegis_450215 Name: Revelation of Aramazd Type: Armor Weight: 1000 Defense: 150 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,15; bonus bAspdRate,10; bonus2 bAddRace,RC_Undead,40; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddEle,Ele_Undead,40; bonus2 bMagicAddRace,RC_Undead,40; bonus2 bMagicAddRace,RC_DemiHuman,40; bonus2 bMagicAddRace,RC_Player_Doram,40; bonus2 bMagicAddEle,Ele_Dark,40; bonus2 bMagicAddEle,Ele_Undead,40; bonus2 bSubEle,Ele_Ghost,2*.@r; if (.@r>=5) { bonus bDef,300; bonus bMdef,30; bonus2 bSubRace,RC_Player_Human,7; } if (.@r>=7) bonus bNoKnockback; - Id: 450216 AegisName: aegis_450216 Name: Twinhead Dragon Mail Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("RK_DRAGONBREATH_WATER"); .@b = getskilllv("RK_DRAGONBREATH"); bonus bMaxHPrate,10+(.@a*4); bonus bMaxSPrate,10+(.@a*4); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",10*.@a; bonus bDelayrate,-6*getskilllv("RK_DRAGONTRAINING"); bonus bLongAtkRate,7*.@b; bonus2 bSkillAtk,"RK_DRAGONBREATH",10*.@b; if (.@r>=5) bonus2 bSubClass,Class_Boss,5; if (.@r>=7) { bonus bNoKnockback; bonus bUnbreakableArmor; } if (.@r>=10) { bonus bDef,300; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; bonus2 bSkillAtk,"RK_DRAGONBREATH",50; } - Id: 450217 AegisName: Phreeoni_Wing_Suits Name: Phreeoni Wing Suit Type: Armor Weight: 1500 Defense: 10 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bBaseAtk,100+15*(.@r/2); bonus bCon,3; bonus bPAtk,(.@r/4); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus bPerfectHitAddRate,15; if (.@r>=11) { bonus bLongAtkRate,15; bonus bDelayrate,-15; } } } if (getpetinfo(PETINFO_EGGID) == 9111) { bonus bAtkRate,7; bonus bAspd,2; } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bBaseAtk,40; if (.@g>=ENCHANTGRADE_C) { bonus bCon,5; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_All,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,7; } } } } - Id: 450218 AegisName: E_Auto_Armor_A Name: Automatic Armor A-type (Bound) Type: Armor Defense: 135 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,125+10*(.@r/2); if (.@r>=7) { bonus bAspdRate,15; } - Id: 450219 AegisName: E_Auto_Armor_B Name: Automatic Armor B-type (Bound) Type: Armor MagicAttack: 125 Defense: 135 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-15; } - Id: 450220 AegisName: aegis_450220 Name: Chrome Metal Plate Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,10; bonus2 bSubClass,Class_Boss,5; bonus2 bSubClass,Class_Normal,5; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Player_Doram,7; bonus bDef,30*.@r; bonus bMdef,3*.@r; if (.@r>=6) { bonus bAtkRate,15; bonus bMatkRate,15; } if (.@r>=8) { bonus bAtkRate,15; bonus bMatkRate,15; } - Id: 450222 AegisName: aegis_450222 Name: Requiescat in Pace Type: Armor Weight: 1000 Defense: 150 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bUnbreakableArmor; bonus bAspdRate,10; bonus2 bAddRace,RC_Demon,40; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Demon,40; bonus2 bMagicAddRace,RC_DemiHuman,40; bonus2 bMagicAddRace,RC_Player_Doram,40; bonus2 bSubEle,Ele_Poison,2*.@r; if (.@r>=5) { bonus bDef,300; bonus bMdef,30; } if (.@r>=7) bonus bSpeedRate,25; - Id: 450224 AegisName: aegis_450224 Name: Robe of Dominator Type: Armor Weight: 900 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,5; bonus2 bSubEle,Ele_Earth,10; bonus bAtkRate,10*(.@r/3); bonus bMatkRate,10*(.@r/3); bonus bUnbreakableArmor; - Id: 450225 AegisName: aegis_450225 Name: Awakened Ruler's Robe Type: Armor Weight: 900 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,10; bonus2 bAddSize,Size_All,40; bonus2 bMagicAddSize,Size_All,40; bonus2 bSubEle,Ele_Earth,2*.@r; if (.@r>=5) { bonus2 bSubRace,RC_DemiHuman,7; bonus2 bSubRace,RC_Player_Doram,7; } if (.@r>=7) bonus bPerfectHitAddRate,25; /*Todo When Using Elvira Candy Activates Masquerade Ignorance*/ - Id: 450226 AegisName: aegis_450226 Name: Four of a Kind Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bInt,10*getskilllv("WL_RADIUS"); bonus bMatk,50*getskilllv("WL_RADIUS"); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAddRace,RC_All,7*getskilllv("WL_TETRAVORTEX"); if (getskilllv("WL_COMET") == 5) { bonus2 bFixedCastrate,"WL_TETRAVORTEX",-100; bonus2 bFixedCastrate,"WL_JACKFROST",-100; } if (.@r>=5) bonus bMdef,25; if (.@r>=7) bonus bMdef,25; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus bUnbreakableArmor; } - Id: 450229 AegisName: Hs_Mail Name: Herosria Mail Type: Armor Weight: 2000 Defense: 200 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus bMaxHPrate,3; bonus2 bMagicAtkEle,Ele_All,-5; bonus bLongAtkRate,-5; bonus bShortAtkRate,5; - Id: 450230 AegisName: aegis_450230 Name: Herosria Tights Type: Armor Weight: 1400 Defense: 100 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,3; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Player_Doram,7; bonus bHit,10; bonus2 bMagicAtkEle,Ele_All,-5; bonus bShortAtkRate,-5; bonus bLongAtkRate,5; - Id: 450231 AegisName: Hs_Suits Name: Herosria Suit Type: Armor Weight: 1900 Defense: 120 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,2; bonus2 bSubRace,RC_Player_Human,7; bonus2 bSubRace,RC_Player_Doram,7; bonus bFlee,20; bonus2 bMagicAtkEle,Ele_All,-5; bonus bLongAtkRate,-5; bonus bShortAtkRate,5; - Id: 450232 AegisName: aegis_450232 Name: Herosria Magic Robe Type: Armor Weight: 1000 Defense: 50 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,20; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bHealPower,5; bonus2 bAddRace,RC_Player_Human,-7; bonus2 bAddRace,RC_Player_Doram,-7; bonus2 bMagicAtkEle,Ele_All,5; - Id: 450233 AegisName: Hs_Plate Name: Herosria Full Plate Type: Armor Weight: 3600 Defense: 450 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,15; bonus2 bSubRace,RC_Player_Human,15; bonus2 bSubRace,RC_Player_Doram,15; bonus bMaxHPrate,5; bonus2 bAddRace,RC_Player_Human,-20; bonus2 bAddRace,RC_Player_Doram,-20; bonus2 bMagicAddRace,RC_Player_Human,-20; bonus2 bMagicAddRace,RC_Player_Doram,-20; bonus bHealPower2,10; - Id: 450234 AegisName: Flame_Rune_Armor Name: Rune Armor of Flame Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bPow,(readparam(bStr)/25); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; if (.@r>=9) { bonus bCritAtkRate,15; if (.@r>=11) { bonus bShortAtkRate,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bAtkRate,5; bonus bPow,5; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bPow,5; } } } } - Id: 450242 AegisName: aegis_450242 Name: Elemental Possession Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAspdRate,getskilllv("SO_SUMMON_AGNI")+getskilllv("SO_SUMMON_AQUA")+getskilllv("SO_SUMMON_VENTUS")+getskilllv("SO_SUMMON_TERA"); bonus bMatk,15*(getskilllv("SO_SUMMON_AGNI")+getskilllv("SO_SUMMON_AQUA")+getskilllv("SO_SUMMON_VENTUS")+getskilllv("SO_SUMMON_TERA")); bonus2 bMagicAddRace,RC_All,14*getskilllv("SO_EL_SYMPATHY"); if (getskilllv("SO_VARETYR_SPEAR") == 10) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; bonus2 bSkillCooldown,"SO_SUMMON_VENTUS",-25000; } if (.@r>=5) bonus bInt,15; if (.@r>=7) bonus bInt,15; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Poison,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus bUnbreakableArmor; } - Id: 450243 AegisName: Plain_Rune_Armor Name: Rune Armor of Plain Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSta,(readparam(bVit)/25); if (.@r>=7) { bonus bPAtk,2; bonus bMaxHPrate,5; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,5; bonus bSta,5; if (.@g>=ENCHANTGRADE_B) { bonus bDelayrate,-5; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bSta,5; } } } } - Id: 450244 AegisName: Ice_Rune_Armor Name: Rune Armor of Ice Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCon,(readparam(bDex)/25); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; if (.@r>=9) { bonus bCritAtkRate,15; if (.@r>=11) { bonus bLongAtkRate,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bAtkRate,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bCon,5; } } } } - Id: 450245 AegisName: Death_Rune_Armor Name: Rune Robe of Death Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,(readparam(bInt)/25); if (.@r>=7) { bonus bSMatk,2; bonus bMatkRate,5; if (.@r>=9) { bonus bVariableCastrate,-15; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bMatkRate,5; bonus bSpl,5; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bSpl,5; } } } } - Id: 450246 AegisName: BN_H_AD_Suits Name: Baron Adventurer Suit Type: Armor Defense: 215 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMaxHP,300; bonus bMaxSP,100; - Id: 450247 AegisName: aegis_450247 Name: Brillance Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@l = BaseLevel; bonus bAspdRate,10; bonus2 bAddRace,RC_All,7*getskilllv("SR_KNUCKLEARROW"); if (getskilllv("SR_LIGHTNINGWALK") == 5) bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",2*.@l; if (getskilllv("SR_RAISINGDRAGON") == 10) { bonus bVariableCastrate,-15; bonus bHPGainValue,150; bonus bSPGainValue,15; } if (.@r>=5) { bonus bBaseAtk,.@l/2; if (.@r>=7) { bonus bBaseAtk,.@l/2; if (.@r>=10) { bonus bPerfectHitAddRate,25; bonus bUnbreakableArmor; } } } - Id: 450249 AegisName: aegis_450249 Name: 1Lv Shirts Type: Armor Slots: 1 Locations: Armor: true ArmorLevel: 1 Refineable: true - Id: 450250 AegisName: aegis_450250 Name: Level 2 Shirt # !todo check english name Type: Armor Slots: 1 Locations: Armor: true ArmorLevel: 2 Refineable: true - Id: 450251 AegisName: Assault_Suit Name: Assault Suits Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (getskilllv("RA_WUGRIDER") == 3) bonus bBaseAtk,BaseLevel; if (getskilllv("RA_CAMOUFLAGE") == 5) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-300; bonus2 bFixedCastrate,"RA_AIMEDBOLT",-100; } bonus bAtkRate,7*getskilllv("RA_RANGERMAIN"); if (.@r>=5) bonus bDex,15; if (.@r>=7) bonus bDex,15; if (.@r>=10) { bonus bPerfectHitAddRate,25; bonus bUnbreakableArmor; } - Id: 450252 AegisName: Death_Bringer Name: Death Bringer Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bAtkRate,7*getskilllv("GC_COUNTERSLASH"); bonus bFlee,20*getskilllv("GC_CROSSIMPACT"); bonus bBaseAtk,50*getskilllv("GC_CROSSIMPACT"); if (getskilllv("GC_HALLUCINATIONWALK") == 5) bonus2 bSkillCooldown,"GC_DARKCROW",-60000; if (.@r>=5) bonus bWeaponAtkRate,10; if (.@r>=7) bonus bWeaponAtkRate,10; if (.@r>=10) { bonus bPerfectHitAddRate,25; bonus bUnbreakableArmor; } - Id: 450257 AegisName: Platinum_Arbitrator Name: Platinum Arbitrator Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10+(getskilllv("LG_INSPIRATION")*8); bonus bMaxSPrate,10; bonus2 bAddRace,RC_All,14*getskilllv("LG_PINPOINTATTACK"); if (getskilllv("LG_CANNONSPEAR") == 5) { bonus2 bSkillCooldown,"LG_CANNONSPEAR",-1500; bonus2 bSkillAtk,"LG_CANNONSPEAR",BaseLevel/2; bonus2 bSkillAtk,"LG_BANISHINGPOINT",2*(BaseLevel/2); } if (.@r>=5) bonus bStr,15; if (.@r>=7) bonus bStr,15; if (.@r>=10) { bonus bPerfectHitAddRate,25; bonus bUnbreakableArmor; } - Id: 450258 AegisName: aegis_450258 Name: Loud Park Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bInt,6*getskilllv("WM_FRIGG_SONG"); bonus bMatk,30*getskilllv("WM_FRIGG_SONG"); bonus2 bMagicAddRace,RC_All,14*getskilllv("WM_GLOOMYDAY"); bonus bDelayrate,-6*getskilllv("WM_LULLABY_DEEPSLEEP"); if (.@r>=5) bonus2 bSkillAtk,"WM_METALICSOUND",50; if (.@r>=7) bonus2 bSkillAtk,"WM_METALICSOUND",50; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus bUnbreakableArmor; } - Id: 450263 AegisName: Lunar_E_Armor_LT Name: Lunar Eclipse Armor-LT Type: Armor Weight: 600 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMdef,10; bonus2 bSubSize,Size_Medium,13; bonus2 bSubSize,Size_Large,13; bonus bDelayrate,.@r; bonus bBaseAtk,15*.@r; bonus bMatk,15*.@r; bonus bMaxHPrate,5*(.@r/3); bonus bAtkRate,5*(.@r/3); bonus bMatkRate,5*(.@r/3); if (.@r>=9) { bonus bRes,20; bonus bMRes,20; bonus2 bAddEle,Ele_All,15; bonus2 bMagicAddEle,Ele_All,15; if (.@r>=13) { bonus2 bAddEffWhenHit,Eff_Freeze,2000; } } if (.@g>=ENCHANTGRADE_D) { if (.@r>=13) { bonus bLongAtkDef,readparam(bSta)/10; bonus bNearAtkDef,readparam(bWis)/10; } } if (.@g>=ENCHANTGRADE_C) { if (.@r>=13) { bonus bMaxHP,10000; bonus2 bAddEff,Eff_Freeze,800; } } if (.@g>=ENCHANTGRADE_B) bonus2 bAddEffWhenHit,Eff_Freeze,1500; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; } - Id: 450264 AegisName: Glacier_Armor Name: Glacier Armor Type: Armor Weight: 2400 Defense: 168 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bBaseAtk,120+15*(.@r/2); bonus bDef,15*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bAspdRate,10; if (.@r>=9) { bonus bAspdRate,5; bonus bPAtk,3; if (.@r>=10) { bonus bDelayrate,-5; bonus bDef,100; } } } if (.@g>=ENCHANTGRADE_D) { bonus bDelayrate,-5; bonus bPow,3; bonus bCon,3; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,2; bonus bAtkRate,3; } } - Id: 450265 AegisName: Glacier_Robe Name: Glacier Robe Type: Armor Weight: 1200 MagicAttack: 120 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bDef,15*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; bonus bVariableCastrate,-10; if (.@r>=9) { bonus bVariableCastrate,-5; bonus bSMatk,3; if (.@r>=10) { bonus bDelayrate,-5; bonus bDef,100; } } } if (.@g>=ENCHANTGRADE_D) { bonus bDelayrate,-5; bonus bSpl,3; bonus bCon,3; if (.@g>=ENCHANTGRADE_C) { bonus bSMatk,2; bonus bMatkRate,3; } } - Id: 450266 AegisName: Glacier_Manteau Name: Glacier Manteau Type: Armor Weight: 1600 Defense: 112 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,2500+200*(.@r/2); bonus bMaxSP,500+50*(.@r/2); if (.@r>=7) { bonus bAspdRate,7; if (.@r>=9) { bonus bPow,3; if (.@r>=10) { bonus bVariableCastrate,-5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,2; bonus bAtkRate,3; if (.@g>=ENCHANTGRADE_C) { bonus bVariableCastrate,-10; } } - Id: 450267 AegisName: Glacier_Muffler Name: Glacier Muffler Type: Armor Weight: 800 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,2000+150*(.@r/2); bonus bMaxSP,1000+100*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-7; if (.@r>=9) { bonus bSpl,3; if (.@r>=10) { bonus bAspdRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,2; bonus bMatkRate,3; if (.@g>=ENCHANTGRADE_C) { bonus bAspdRate,10; } } - Id: 450268 AegisName: Glacier_Shoes Name: Glacier Shoes Type: Armor Weight: 1000 Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6+(.@r/2); bonus bDef,15*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,7; if (.@r>=9) { bonus bSMatk,3; if (.@r>=10) { bonus bVariableCastrate,-7; bonus bDef,100; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bSMatk,2; bonus bSpl,2; bonus bCon,2; } } - Id: 450269 AegisName: aegis_450269 Name: Kafra Suit Type: Armor Weight: 500 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus2 bExpAddRace,RC_All,5; bonus bMaxHP,50*.@r; bonus bMaxSP,10*.@r; if (.@r>=7) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; } - Id: 450270 AegisName: D_Glacier_Armor Name: Dim Glacier Armor Type: Armor Weight: 2400 Defense: 203 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bBaseAtk,140; bonus bPow,(.@r/2); bonus bCon,(.@r/2); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,3; if (.@r>=9) { bonus bDelayrate,-5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_B) { bonus bAtkRate,1; if (.@g>=ENCHANTGRADE_A) { bonus bAtkRate,2; } } } } - Id: 450271 AegisName: D_Glacier_Robe Name: Dim Glacier Robe Type: Armor Weight: 1200 MagicAttack: 140 Defense: 145 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,(.@r/2); bonus bCon,(.@r/2); if (.@r>=7) { bonus bSMatk,2; bonus bMatkRate,3; if (.@r>=9) { bonus bDelayrate,-5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bMatkRate,1; if (.@g>=ENCHANTGRADE_A) { bonus bMatkRate,2; } } } } - Id: 450272 AegisName: B_Celine_D_LT_TW Name: Celine's Dress-LT Type: Armor Weight: 200 Defense: 40 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMatk,150+(15*(.@r/2)); if (.@r>=7) { bonus bMatkRate,10; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus bUnbreakableArmor; if (.@r>=13) { bonus2 bAddClass,Class_Boss,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatk,2*(.@r/2); bonus2 bMagicAddClass,Class_Boss,.@r/4; } if (.@g>=ENCHANTGRADE_C) { bonus bMatk,3*(.@r/2); bonus bMatkRate,.@r/2; bonus2 bMagicAddClass,Class_Boss,.@r/4; } if (.@g>=ENCHANTGRADE_B) { bonus bMatk,3*(.@r/2); bonus bMatkRate,.@r/2; bonus2 bMagicAddClass,Class_Boss,.@r/4; } if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,.@r/2; bonus bMatkRate,2*(.@r/2); bonus2 bMagicAddClass,Class_Boss,.@r/4; } - Id: 450274 AegisName: Flame_E_R_Armor Name: Fiery Earth Rune Armor Type: Armor Weight: 1000 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-10; bonus bBaseAtk,100+15*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,3; bonus bMdef,25; if (.@r>=9) { bonus bPAtk,3; bonus bMdef,25; if (.@r>=11) { bonus bShortAtkRate,5; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bBaseAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,3; bonus bAtkRate,8; bonus bBaseAtk,20; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,5; bonus bAtkRate,11; bonus bPow,5; if (.@g>=ENCHANTGRADE_A) { bonus bShortAtkRate,7; bonus bAtkRate,14; bonus bCon,5; } } } } - Id: 450279 AegisName: Ice_S_R_Suits Name: Icy Storm Rune Suit Type: Armor Weight: 750 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-10; bonus bBaseAtk,100+15*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,3; bonus bMdef,25; if (.@r>=9) { bonus bPAtk,3; bonus bMdef,25; if (.@r>=11) { bonus bLongAtkRate,5; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bBaseAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,3; bonus bAtkRate,8; bonus bBaseAtk,20; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,5; bonus bAtkRate,11; bonus bPow,5; if (.@g>=ENCHANTGRADE_A) { bonus bLongAtkRate,7; bonus bAtkRate,14; bonus bCon,5; } } } } - Id: 450280 AegisName: Soul_P_R_Robe Name: Soul Purifying Rune Robe Type: Armor Weight: 500 MagicAttack: 100 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUseSPrate,10; bonus bMatk,15*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bSMatk,2; bonus bMatkRate,3; bonus bMdef,25; if (.@r>=9) { bonus bSMatk,3; bonus bMdef,25; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,5; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; bonus bMatk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,3; bonus bMatkRate,8; bonus bMatk,20; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,5; bonus bMatkRate,11; bonus bSpl,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAtkEle,Ele_All,7; bonus bMatkRate,14; bonus bCon,5; } } } } - Id: 450281 AegisName: Corrupt_P_R_Cloth Name: Corrupted Poison Rune Cloth Type: Armor Weight: 1000 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus bBaseAtk,70+12*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,3; bonus bMdef,25; if (.@r>=9) { bonus bCRate,3; bonus bMdef,25; if (.@r>=11) { bonus bCritAtkRate,5; bonus bLongAtkRate,2; bonus bShortAtkRate,2; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bBaseAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus bCritAtkRate,8; bonus bAtkRate,8; bonus bBaseAtk,20; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bAtkRate,11; bonus bPow,5; if (.@g>=ENCHANTGRADE_A) { bonus bLongAtkRate,7; bonus bShortAtkRate,7; bonus bAtkRate,14; bonus bCrt,5; } } } } - Id: 450282 AegisName: Flame_E_R_Armor2 Name: Engraved Fiery Earth Rune Armor Type: Armor Defense: 200 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-10; bonus bPow,3; bonus bCon,3; bonus bBaseAtk,140+15*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; bonus bMdef,25; if (.@r>=9) { bonus bPAtk,5; bonus bMdef,25; if (.@r>=11) { bonus bShortAtkRate,15; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bBaseAtk,25; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,3; bonus bAtkRate,8; bonus bBaseAtk,45; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,5; bonus bAtkRate,13; bonus bPow,10; if (.@g>=ENCHANTGRADE_A) { bonus bShortAtkRate,7; bonus bAtkRate,16; bonus bCon,10; } } } } - Id: 450283 AegisName: Ice_S_R_Suits2 Name: Engraved Icy Storm Rune Suit Type: Armor Defense: 125 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-10; bonus bPow,3; bonus bCon,3; bonus bBaseAtk,140+15*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; bonus bMdef,25; if (.@r>=9) { bonus bPAtk,5; bonus bMdef,25; if (.@r>=11) { bonus bLongAtkRate,15; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bBaseAtk,25; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,3; bonus bAtkRate,8; bonus bBaseAtk,45; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,5; bonus bAtkRate,13; bonus bPow,10; if (.@g>=ENCHANTGRADE_A) { bonus bLongAtkRate,7; bonus bAtkRate,16; bonus bCon,10; } } } } - Id: 450284 AegisName: Soul_P_R_Robe2 Name: Engraved Soul Purifying Rune Robe Type: Armor MagicAttack: 140 Defense: 75 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUseSPrate,10; bonus bSpl,3; bonus bCon,3; bonus bMatk,15*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bSMatk,2; bonus bMatkRate,5; bonus bMdef,25; if (.@r>=9) { bonus bSMatk,5; bonus bMdef,25; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,15; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; bonus bMatk,25; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,3; bonus bMatkRate,8; bonus bMatk,45; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,5; bonus bMatkRate,13; bonus bSpl,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAtkEle,Ele_All,7; bonus bMatkRate,16; bonus bCon,10; } } } } - Id: 450285 AegisName: Corrupt_P_R_Cloth2 Name: Engraved Corrupted Poison Rune Cloth Type: Armor Defense: 150 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,10; bonus bPow,3; bonus bCrt,3; bonus bBaseAtk,120+12*(.@r/2); bonus bDef,30*(.@r/2); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; bonus bMdef,25; if (.@r>=9) { bonus bCRate,7; bonus bMdef,25; if (.@r>=11) { bonus bCritAtkRate,10; bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bBaseAtk,25; if (.@g>=ENCHANTGRADE_C) { bonus bCritAtkRate,8; bonus bAtkRate,8; bonus bBaseAtk,45; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bAtkRate,13; bonus bPow,10; if (.@g>=ENCHANTGRADE_A) { bonus bLongAtkRate,7; bonus bShortAtkRate,7; bonus bAtkRate,16; bonus bCrt,10; } } } } - Id: 450286 AegisName: aegis_450286 Name: Awakened Robe of Worshiper Type: Armor Weight: 900 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus2 bAddSize,Size_All,40; bonus2 bMagicAddSize,Size_All,40; bonus bAspdRate,10; bonus2 bSubEle,Ele_Ghost,2*.@r; if (.@r>=5) { bonus2 bSubClass,Class_Boss,5; bonus2 bSubClass,Class_Normal,5; } if (.@r>=7) { bonus bPerfectHitAddRate,25; bonus bDef,300; bonus bMdef,30; } - Id: 450287 AegisName: aegis_450287 Name: Robe of Worshiper Type: Armor Weight: 900 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bAspdRate,5; bonus2 bSubEle,Ele_Ghost,10; bonus bAtkRate,10*(.@r/3); bonus bMatkRate,10*(.@r/3); - Id: 450291 AegisName: aegis_450291 Name: Amazing Grace Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("AB_ORATIO"); .@b = getskilllv("AB_CLEARANCE"); .@c = getskilllv("AB_LAUDAAGNUS"); .@d = getskilllv("AB_LAUDARAMUS"); bonus bAspdRate,10; bonus bInt,3*.@a; bonus bMatk,15*.@a; bonus2 bMagicAddRace,RC_All,14*.@b; bonus bHealPower,3*(.@c+.@d); bonus bHealPower2,3*(.@c+.@d); bonus bAddItemHealRate,3*(.@c+.@d); if (.@r>=5) { bonus2 bSkillAtk,"AB_ADORAMUS",50; bonus2 bSkillAtk,"AB_JUDEX",50; } if (.@r>=7) { bonus2 bSkillAtk,"AB_ADORAMUS",50; bonus2 bSkillAtk,"AB_JUDEX",50; } if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus bUnbreakableArmor; } - Id: 450293 AegisName: Ceres_Armor_TW_LT Name: Ceres Leather Armor-LT Type: Armor Weight: 300 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bBaseAtk,100+(10*(.@r/2)); bonus bMatk,100+(10*(.@r/2)); bonus2 bSkillAtk,"RA_WUGSTRIKE",20*(.@r/3); bonus2 bSkillAtk,"RA_AIMEDBOLT",20*(.@r/3); bonus2 bSkillAtk,"WM_REVERBERATION",20*(.@r/3); bonus2 bSkillAtk,"WM_METALICSOUND",20*(.@r/3); if (.@r>=9) { bonus bAtkRate,10; bonus bMatkRate,10; } if (.@r>=11) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; } if (.@r>=13) bonus bDelayrate,-15; if (.@g>=ENCHANTGRADE_D) { bonus bBaseAtk,5*(.@r/2); bonus bMatk,5*(.@r/2); bonus2 bAddRace,RC_All,4*(.@r/3); bonus2 bMagicAddRace,RC_All,4*(.@r/3); } if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_METALIC_FURY",5*(.@r/3); bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5*(.@r/3); } if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,.@r/2; bonus bSMatk,.@r/2; bonus2 bAddRace,RC_All,5*(.@r/3); bonus2 bMagicAddRace,RC_All,5*(.@r/3); } if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"TR_METALIC_FURY",5*(.@r/3); bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5*(.@r/3); if (.@r>=13) { skill "BA_POEMBRAGI",5; bonus2 bSkillCooldown,"RA_UNLIMIT",-30000; } } - Id: 450294 AegisName: Jupiter_Armor_TW_LT Name: Jupiter Light Armor-LT Type: Armor Weight: 300 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMatk,150+(15*(.@r/2)); bonus2 bSkillAtk,"WL_SOULEXPANSION",20*(.@r/3); bonus2 bSkillAtk,"WL_HELLINFERNO",20*(.@r/3); bonus2 bSkillAtk,"SO_DIAMONDDUST",20*(.@r/3); bonus2 bSkillAtk,"SO_EARTHGRAVE",20*(.@r/3); if (.@r>=9) { bonus bMatkRate,15; } if (.@r>=11) { bonus2 bMagicAddRace,RC_All,15; } if (.@r>=13) bonus bDelayrate,-15; if (.@g>=ENCHANTGRADE_D) { bonus bMatk,8*(.@r/2); bonus2 bMagicAddRace,RC_All,4*(.@r/3); } if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-7000*(.@r/3); bonus2 bSkillCooldown,"SO_DIAMONDDUST",-200*(.@r/3); } if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,.@r/2; bonus2 bMagicAddRace,RC_All,5*(.@r/3); } if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",7*(.@r/3); bonus2 bSkillAtk,"EM_DIAMOND_STORM",7*(.@r/3); if (.@r>=13) { bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-30000; bonus2 bSkillCooldown,"SO_DIAMONDDUST",-1000; } } - Id: 450295 AegisName: Apollo_Armor_TW_LT Name: Apollo Armor-LT Type: Armor Weight: 300 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMaxHPrate,20; bonus bMaxHP,500*(.@r/2); bonus bVit,8*(.@r/2); bonus2 bSkillAtk,"RK_DRAGONBREATH",20*(.@r/3); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",20*(.@r/3); bonus2 bSkillAtk,"LG_EARTHDRIVE",20*(.@r/3); bonus2 bSkillAtk,"LG_SHIELDPRESS",20*(.@r/3); if (.@r>=9) { bonus bMaxHP,5000; } if (.@r>=11) bonus2 bSubRace,RC_All,10; if (.@r>=13) bonus bDelayrate,-15; if (.@g>=ENCHANTGRADE_D) { bonus bVit,3*(.@r/2); bonus bLongAtkRate,3*(.@r/3); bonus bShortAtkRate,3*(.@r/3); } if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,3*(.@r/3); } if (.@g>=ENCHANTGRADE_B) { bonus bVit,5*(.@r/2); bonus bLongAtkRate,5*(.@r/3); bonus bShortAtkRate,5*(.@r/3); } if (.@g>=ENCHANTGRADE_A) { bonus bMaxHPrate,5*(.@r/3); if (.@r>=13) { bonus2 bSubRace,RC_All,10; } } - Id: 450296 AegisName: Mars_Armor_TW_LT Name: Mars Armor-LT Type: Armor Weight: 300 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bBaseAtk,150+(15*(.@r/2)); bonus2 bSkillAtk,"GC_CROSSIMPACT",20*(.@r/3); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20*(.@r/3); bonus2 bSkillAtk,"SC_TRIANGLESHOT",20*(.@r/3); bonus2 bSkillAtk,"SC_STARTMARK",20*(.@r/3); if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; } if (.@r>=11) bonus2 bAddRace,RC_All,15; if (.@r>=13) bonus bDelayrate,-15; if (.@g>=ENCHANTGRADE_D) { bonus2 bSkillCooldown,"GC_DARKCROW",-5000; bonus2 bSkillCooldown,"SC_GROOMY",-1000; bonus2 bAddSize,Size_All,4*(.@r/3); } if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",5*(.@r/3); bonus2 bSkillAtk,"ABC_FRENZY_SHOT",5*(.@r/3); } if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,.@r/2; bonus2 bAddSize,Size_All,5*(.@r/3); } if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",8*(.@r/3); bonus2 bSkillAtk,"ABC_FRENZY_SHOT",8*(.@r/3); if (.@r>=13) { bonus2 bSkillCooldown,"GC_DARKCROW",-5000; bonus2 bSkillCooldown,"SC_IGNORANCE",-1000; } } - Id: 450297 AegisName: Vinus_Armor_TW_LT Name: Venus Feather Armor-LT Type: Armor Weight: 300 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bBaseAtk,100+(10*(.@r/2)); bonus bMatk,100+(10*(.@r/2)); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20*(.@r/3); bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*(.@r/3); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",20*(.@r/3); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",20*(.@r/3); bonus2 bSkillAtk,"AB_ADORAMUS",20*(.@r/3); if (.@r>=9) { bonus bAtkRate,10; bonus bMatkRate,10; } if (.@r>=11) bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; if (.@r>=13) bonus bDelayrate,-15; if (.@g>=ENCHANTGRADE_D) { bonus2 bSkillCooldown,"AB_CLEARANCE",-5000; bonus2 bSkillCooldown,"AB_SILENTIUM",-5000; bonus2 bSkillCooldown,"SR_CRESCENTELBOW",-3000; bonus2 bAddSize,Size_All,4*(.@r/3); bonus2 bMagicAddSize,Size_All,4*(.@r/3); } if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"CD_FRAMEN",5*(.@r/3); bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",5*(.@r/3); } if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,.@r/2; bonus bSMatk,.@r/2; bonus2 bAddSize,Size_All,5*(.@r/3); bonus2 bMagicAddSize,Size_All,5*(.@r/3); } if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"CD_FRAMEN",5*(.@r/3); bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",5*(.@r/3); if (.@r>=13) { bonus2 bSkillCooldown,"AB_CLEARANCE",-5000; bonus2 bSkillCooldown,"AB_SILENTIUM",-5000; bonus2 bSkillCooldown,"SR_LIGHTNINGWALK",-1000; } } - Id: 450298 AegisName: Vulcan_Armor_TW_LT Name: Vulcanus Armor-LT Type: Armor Weight: 300 Defense: 30 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bBaseAtk,150+(15*(.@r/2)); bonus2 bSkillAtk,"NC_ARMSCANNON",20*(.@r/3); bonus2 bSkillAtk,"NC_AXETORNADO",20*(.@r/3); bonus2 bSkillAtk,"GN_CRAZYWEED_ATK",20*(.@r/3); bonus2 bSkillAtk,"GN_CART_TORNADO",20*(.@r/3); if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; } if (.@r>=11) bonus2 bAddRace,RC_All,15; if (.@r>=13) bonus bDelayrate,-15; if (.@g>=ENCHANTGRADE_D) { bonus bBaseAtk,8*(.@r/2); bonus2 bAddSize,Size_All,4*(.@r/3); } if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"MT_AXE_STOMP",5*(.@r/3); bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",5*(.@r/3); } if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,.@r/2; bonus2 bAddSize,Size_All,5*(.@r/3); } if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"MT_AXE_STOMP",8*(.@r/3); bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",8*(.@r/3); if (.@r>=13) { bonus bLongAtkRate,25; bonus bShortAtkRate,25; } } - Id: 450299 AegisName: Temporal_Armor_TW_LT Name: Exotic Temporal Armor-LT Type: Armor Weight: 2000 Defense: 120 Slots: 1 Locations: Armor: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bBaseAtk,150+(15*(.@r/2)); bonus bMatk,150+(15*(.@r/2)); bonus bAtkRate,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,30; bonus2 bIgnoreMdefRaceRate,RC_All,30; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=12) { bonus bUnbreakableArmor; if (.@r>=13) { bonus2 bAddEle,Ele_All,15; bonus2 bMagicAddEle,Ele_All,15; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,3*(.@r/2); bonus bMatkRate,3*(.@r/2); } if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,3*(.@r/2); bonus bLongAtkRate,3*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/2); } if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,.@r/2; bonus bSMatk,.@r/2; } if (.@g>=ENCHANTGRADE_A) { bonus2 bAddRace,RC_All,2*(.@r/2); bonus2 bMagicAddRace,RC_All,2*(.@r/2); } - Id: 450309 AegisName: aegis_450309 Name: Grace of Seth Type: Armor Weight: 1000 Defense: 150 Slots: 1 Locations: Armor: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableArmor; bonus bMdef,15; bonus bAspdRate,10; bonus2 bAddRace,RC_Formless,40; bonus2 bAddRace,RC_DemiHuman,40; bonus2 bAddRace,RC_Player_Doram,40; bonus2 bMagicAddRace,RC_Formless,40; bonus2 bMagicAddRace,RC_DemiHuman,40; bonus2 bMagicAddRace,RC_Player_Doram,40; bonus2 bAddEle,Ele_Dark,40; bonus2 bAddEle,Ele_Neutral,40; bonus2 bMagicAddEle,Ele_Dark,40; bonus2 bMagicAddEle,Ele_Neutral,40; bonus2 bSubEle,Ele_Holy,2*.@r; if (.@r>=5) { bonus bDef,300; bonus bMdef,30; bonus2 bSubRace,RC_Player_Human,7; if (.@r>=7) { bonus bDelayrate,-15; } } - Id: 460002 AegisName: Aries_Shield_J Name: Aries Shield Type: Armor Buy: 20 Weight: 4000 Defense: 170 Locations: Left_Hand: true ArmorLevel: 1 Refineable: true View: 3 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus bMdef,30; bonus2 bSubClass,Class_Boss,40; if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bDef,150; bonus bMaxHP,1000; if (.@r>=8) { bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Poison,20; } } - Id: 460003 AegisName: Feather_Shield Name: Feather Shield Type: Armor Buy: 200000 Weight: 400 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bAspdRate,(.@r>=9?12:(.@r>=7?8:4)); bonus bDelayrate,-(.@r>=9?12:(.@r>=7?8:4)); if (.@r>=8) { bonus bBaseAtk,50; bonus bMatk,50; } - Id: 460004 AegisName: Illusion_Shield_A Name: Illusion Shield I Type: Armor Weight: 1200 Defense: 95 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 3 Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDef,50*(getrefine()/3); bonus bMdef,5*(getrefine()/3); if (BaseLevel >= 170) bonus2 bSubEle,Ele_Neutral,5; - Id: 460005 AegisName: MD_Geffen_Shield Name: Magic Absorber Type: Armor Weight: 500 Defense: 50 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true View: 1 Script: | .@r = getrefine(); bonus2 bMagicAtkEle,Ele_All,3; bonus bMdef,15; if (.@r>=7) { bonus bMatk,25; if (.@r>=9) { bonus bVariableCastrate,-5; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_All,7; } } } - Id: 460006 AegisName: MD_Geffen_Shield2 Name: Encyclopedia Complete Edition Type: Armor Weight: 1500 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bAtkRate,3; bonus bMdef,10; if (.@r>=7) { bonus bCritical,3; bonus bBaseAtk,25; if (.@r>=9) { bonus bAspdRate,5; if (.@r>=12) { bonus bCritAtkRate,10; bonus bAtkRate,7; } } } - Id: 460009 AegisName: Apocalypse_Of_Destiny Name: Apocalypse of the Saint Type: Armor Buy: 20 Weight: 500 Defense: 20 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMatkRate,(.@r>=9?15:(.@r>=7?10:5)); bonus3 bAutoSpell,"LG_RAYOFGENESIS",3,10*.@r; - Id: 460010 AegisName: Witchslayer_Greatshield Name: Witch Hunt Shield Type: Armor Buy: 20 Weight: 1200 Defense: 170 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true View: 1 Script: | .@r = getrefine(); bonus2 bSubClass,Class_Normal,10; bonus2 bSubClass,Class_Boss,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Knight) { bonus2 bSubClass,Class_Normal,10; bonus2 bSubClass,Class_Boss,10; if (.@r>=7) { bonus2 bSubClass,Class_Normal,10; bonus2 bSubClass,Class_Boss,10; if (.@r>=9) { bonus2 bSubClass,Class_Normal,10; bonus2 bSubClass,Class_Boss,10; } } } - Id: 460012 AegisName: Avd_Guard Name: Reinforced Shield Type: Armor Weight: 500 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 Refineable: true View: 1 - Id: 460013 AegisName: Poenetentia_Aegis Name: Poenitentia Aegis Type: Armor Weight: 1500 Defense: 120 Slots: 1 Jobs: Crusader: true Classes: Fourth: true Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true View: 2 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bMdef,10*(.@r/3); bonus bDef,50*(.@r/3); if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",5; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus bSpl,1; bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",15; } } } - Id: 460014 AegisName: Illusion_Shield_B Name: Illusion Shield II Type: Armor Buy: 20 Weight: 400 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 3 Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bMatk,15*(.@r/3); bonus bBaseAtk,15*(.@r/3); if (BaseLevel >= 170) bonus2 bSubEle,Ele_Neutral,5; - Id: 460017 AegisName: Guard_IL Name: Illusion Guard Type: Armor Weight: 600 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true View: 1 Script: | bonus bAspd,2; bonus bPerfectHitAddRate,3*(min(getrefine(),12)/2); - Id: 460018 AegisName: Siver_Guard_IL Name: Illusion Silver Guard Type: Armor Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 120 Refineable: true View: 1 Script: | bonus bVariableCastrate,-7; bonus bDelayrate,-(min(getrefine(),12)/2); - Id: 460020 AegisName: Mad_Bunny_K_LT Name: Mad Bunny-LT Type: Armor Weight: 100 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 160 Refineable: true Gradable: true View: 1 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5+2*(.@r/2); bonus bAtkRate,5+2*(.@r/2); bonus bAspd,3; if (.@r>=7) { bonus bAspdRate,5; bonus bVariableCastrate,-5; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,7; bonus bLongAtkRate,7; bonus bShortAtkRate,7; if (.@r>=12) { bonus bCritical,15; bonus bNoCastCancel; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSubEle,Ele_All,10; if (.@g >= ENCHANTGRADE_C) { bonus bPow,2; bonus bSpl,2; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-5; } } } } - Id: 460021 AegisName: ST_Orleans_Server Name: Engraved Orlean's Server Type: Armor Weight: 1000 Defense: 75 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bMRes,2; if (.@r>=7) { bonus bSMatk,1; bonus bMRes,3; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,5; bonus bMatkRate,5; } } - Id: 460022 AegisName: ST_Naga_Shield Name: Engraved Naga's Scale Shield Type: Armor Weight: 500 Defense: 35 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true View: 2 Script: | .@r = getrefine(); bonus bMRes,3; bonus bShortWeaponDamageReturn,.@r; bonus2 bIgnoreDefClassRate,Class_Normal,5+(.@r/2); - Id: 460023 AegisName: Shield_Of_Phoenix Name: Shield of Phoenix Type: Armor Buy: 20 Weight: 4000 Defense: 170 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,30; bonus bShortAtkRate,15; bonus bMaxHPrate,3*.@r; bonus bMaxSPrate,3*.@r; if (.@r>=5) { bonus bHealPower2,20; bonus bAddItemHealRate,20; } if (.@r>=7) bonus bRestartFullRecover; - Id: 460025 AegisName: Spenta_Mainyu Name: Spenta Mainyu Type: Armor Buy: 20 Weight: 600 Defense: 100 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 90 Refineable: true View: 1 Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Angel,5; - Id: 460027 AegisName: Titan_Shield_TW Name: Titan Shield Type: Armor Weight: 2500 Defense: 100 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,10; if (.@r>=9) { if (readparam(bStr)>=108) bonus2 bSubEle,Ele_Wind,20; if (readparam(bAgi)>=108) bonus2 bSubEle,Ele_Water,20; if (readparam(bVit)>=108) bonus2 bSubEle,Ele_Neutral,20; if (readparam(bInt)>=108) bonus2 bSubEle,Ele_Earth,20; if (readparam(bDex)>=108) bonus2 bSubEle,Ele_Fire,20; if (readparam(bLuk)>=108) bonus bFlee2,20; } if (.@r>=12) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_All,5; } - Id: 460030 AegisName: Fake_Alloy_Pot Name: Bionic Aluminum Planter Type: Armor Weight: 1000 Defense: 100 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,10; bonus bStr,.@r/2; bonus bInt,.@r/2; bonus bMaxHPrate,2*(.@r/2); bonus2 bSubEle,Ele_Neutral,5*(.@r/4); if (.@r>=9) { bonus bStr,5; bonus bInt,5; bonus bMaxHPrate,3; } if (.@r>=11) { bonus bStr,5; bonus bInt,10; bonus bMaxHPrate,5; } if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",3*(getskilllv("GN_REMODELING_CART")+getskilllv("GN_CARTBOOST")); bonus2 bSkillAtk,"GN_HELLS_PLANT",3*(getskilllv("GN_REMODELING_CART")+getskilllv("GN_CARTBOOST")); bonus2 bSkillAtk,"GN_CARTCANNON",3*getskilllv("GN_CART_TORNADO"); } - Id: 460034 AegisName: aegis_460034 Name: Herosria Brutal Shield Type: Armor Weight: 3000 Defense: 140 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 1 Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,-10; bonus2 bSubRace,RC_Player_Doram,10; - Id: 460035 AegisName: aegis_460035 Name: Herosria Cranial Shield Type: Armor Weight: 3000 Defense: 140 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 1 Script: | bonus bMdef,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,-10; - Id: 460036 AegisName: aegis_460036 Name: Herosria Brutal Guard Type: Armor Weight: 1500 Defense: 30 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 1 Script: | bonus bMdef,5; bonus bMatk,20; bonus bBaseAtk,20; bonus2 bSubRace,RC_Player_Human,-6; bonus2 bSubRace,RC_Player_Doram,6; - Id: 460037 AegisName: aegis_460037 Name: Herosria Cranial Guard Type: Armor Weight: 1500 Defense: 30 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 1 Script: | bonus bMdef,5; bonus bMatk,20; bonus bBaseAtk,20; bonus2 bSubRace,RC_Player_Human,6; bonus2 bSubRace,RC_Player_Doram,-6; - Id: 460040 AegisName: Glacier_Guard Name: Glacier Guard Type: Armor Weight: 3500 Defense: 220 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true View: 1 Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMRes,15; bonus bRes,15; bonus bMdef,2*(.@r/2); bonus bDef,10*(.@r/2); if (.@r>=7) { bonus bAspdRate,15; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=10) { bonus bMdef,10; bonus bDef,50; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,10; bonus bRes,10; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,2; bonus bSMatk,2; } } - Id: 460046 AegisName: aegis_460046 Name: Black Mythril Guard Type: Armor Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,40; bonus bMaxHPrate,3*.@r; bonus bMaxSPrate,3*.@r; if (.@r>=5) { bonus2 bSubEle,Ele_Holy,20-(getskilllv("CR_TRUST") > 0 ? 20 : 0); bonus2 bSubEle,Ele_Ghost,20; if (.@r>=7) bonus bNoKnockback; } - Id: 460048 AegisName: aegis_460048 Name: 1Lv Shield Type: Armor Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 Refineable: true View: 1 - Id: 460049 AegisName: aegis_460049 Name: Level 2 Shield # !todo check english name Type: Armor Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 Refineable: true View: 1 - Id: 460050 AegisName: aegis_460050 Name: Symbol of Eden Type: Armor Weight: 400 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,3*.@r; bonus bMaxSPrate,3*.@r; if (.@r>=6) { bonus bInt,5; bonus bDex,5; } if (.@r>=8) { bonus bInt,10; bonus bDex,10; } - Id: 460052 AegisName: aegis_460052 Name: Striking Gauntlet Type: Armor Weight: 400 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 1 Script: | .@r = getrefine(); bonus bMdef,15; bonus bMaxHPrate,3*.@r; bonus bMaxSPrate,3*.@r; if (.@r>=6) { bonus bAgi,5; bonus bDex,5; } if (.@r>=8) { bonus bAgi,10; bonus bDex,10; } - Id: 460053 AegisName: Feather_Shield_LT_TW Name: Holy Feather Shield-LT Type: Armor Weight: 400 Defense: 150 Slots: 1 Locations: Left_Hand: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true View: 2 Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bDelayrate,-3; bonus bAspdRate,3; bonus bBaseAtk,10*(.@r/2); bonus bMatk,10*(.@r/2); if (.@r>=7) { bonus bDelayrate,-3; bonus bAspdRate,3; } if (.@r>=9) { bonus bAtkRate,10; bonus bMatkRate,10; } if (.@r>=12) { bonus bDelayrate,-4; bonus bAspd,2; } if (.@g>=ENCHANTGRADE_D) { bonus bPow,2; bonus bSpl,2; } if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,5; bonus bSMatk,5; } if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_All,4*(.@r/3); bonus2 bMagicAddSize,Size_All,4*(.@r/3); } if (.@g>=ENCHANTGRADE_A) { if (.@r>=13) { bonus2 bResEff,Eff_Freeze,10000; bonus2 bResEff,Eff_Sleep,10000; bonus2 bResEff,Eff_Stone,10000; bonus2 bResEff,Eff_Stun,10000; } } - Id: 460057 AegisName: aegis_460057 Name: Spenta Armaiti Type: Armor Weight: 300 Defense: 60 Slots: 1 Locations: Left_Hand: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bUnbreakableShield; bonus2 bSubClass,Class_Boss,40; bonus2 bSubClass,Class_Normal,40; bonus bMaxHPrate,3*.@r; bonus bMaxSPrate,3*.@r; if (.@r>=5) bonus2 bSubEle,Ele_Holy,25-(getskilllv("CR_TRUST") > 0 ? 25 : 0); if (.@r>=7) bonus2 bSubEle,Ele_Neutral,15; - Id: 470000 AegisName: Atker_Greave Name: Attacker Booster Greaves Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,20; bonus bFlee,20; .@r = getrefine(); if (.@r>=3) { bonus bMaxHPrate,.@r/3; } if (.@r>=7) { bonus bMaxHPrate,5; } if (.@r>=9) { bonus bFixedCast,-500; } - Id: 470001 AegisName: Ele_Shoes Name: Elemental Booster Shoes Type: Armor Defense: 15 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,20; bonus bFlee,20; .@r = getrefine(); if (.@r>=3) { bonus bMaxHP,.@r/3*400; } if (.@r>=7) { bonus bMaxHP,1800; } if (.@r>=9) { bonus bFixedCast,-500; } - Id: 470002 AegisName: Defn_Shoes Name: Defender Booster Shoes Type: Armor Defense: 18 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,20; bonus bFlee,20; .@r = getrefine(); if (.@r>=3) { bonus bMaxHP,.@r/3*400; } if (.@r>=7) { bonus bMaxHP,1800; } if (.@r>=9) { bonus bFixedCast,-500; } - Id: 470003 AegisName: Ran_Boots Name: Ranger Booster Boots Type: Armor Defense: 18 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bBaseAtk,20; bonus bHit,15; .@r = getrefine(); if (.@r>=3) { bonus bMaxSP,.@r/3*50; } if (.@r>=7) { bonus bMaxSP,300; } if (.@r>=9) { bonus bFixedCast,-500; } - Id: 470006 AegisName: Sniping_Shoes_J Name: Sniping Shoes Type: Armor Weight: 200 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableShoes; bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "PR_GLORIA",1; bonus bDelayrate,-8*getskilllv("RA_UNLIMIT"); bonus2 bAddSize,Size_All,5*getskilllv("RA_WUGRIDER"); if (getskilllv("RA_AIMEDBOLT") == 10) { bonus bCritAtkRate,25; bonus bNoSizeFix; } if (getskilllv("RA_ELECTRICSHOCKER") == 5) { bonus bAllStats,10; bonus2 bSkillUseSP,"RA_CAMOUFLAGE",20; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; } - Id: 470007 AegisName: Sniping_Shoes_J_ Name: Sniping Shoes Type: Armor Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableShoes; bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "PR_GLORIA",1; bonus bDelayrate,-8*getskilllv("RA_UNLIMIT"); bonus2 bAddSize,Size_All,5*getskilllv("RA_WUGRIDER"); if (getskilllv("RA_AIMEDBOLT") == 10) { bonus bCritAtkRate,25; bonus bNoSizeFix; } if (getskilllv("RA_ELECTRICSHOCKER") == 5) { bonus bAllStats,10; bonus2 bSkillUseSP,"RA_CAMOUFLAGE",20; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bLongAtkRate,5; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,5; } - Id: 470008 AegisName: Fluffy_DandelionShoes_J Name: Fluffy Dandelion Shoes Type: Armor Weight: 100 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAspdRate,getskilllv("SU_CHATTERING")*5; bonus2 bSkillAtk,"SU_CN_METEOR",getskilllv("SU_MEOWMEOW")*15; if (getskilllv("SU_NYANGGRASS") == 5) bonus2 bIgnoreMdefRaceRate,RC_All,100; if (getskilllv("SU_SPIRITOFLAND") == 1) { if (getskilllv("SU_CN_POWDERING") == 5) { bonus2 bResEff,Eff_Curse,10000; bonus2 bSkillUseSP,"SU_CN_METEOR",50; } if (getskilllv("SU_CN_METEOR") == 5) bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20; if (getskilllv("SU_NYANGGRASS") == 5) bonus bMatk,50; if (getskilllv("SU_SV_STEMSPEAR") == 5) bonus bSpeedRate,25; if (getskilllv("SU_SV_ROOTTWIST") == 5) bonus bMatk,50; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470009 AegisName: Fluffy_DandeShoes_J_ Name: Fluffy Dandelion Shoes Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAspdRate,getskilllv("SU_CHATTERING")*5; bonus2 bSkillAtk,"SU_CN_METEOR",getskilllv("SU_MEOWMEOW")*15; if (getskilllv("SU_NYANGGRASS") == 5) bonus2 bIgnoreMdefRaceRate,RC_All,100; if (getskilllv("SU_SPIRITOFLAND") == 1) { if (getskilllv("SU_CN_POWDERING") == 5) { bonus2 bResEff,Eff_Curse,10000; bonus2 bSkillUseSP,"SU_CN_METEOR",50; } if (getskilllv("SU_CN_METEOR") == 5) bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20; if (getskilllv("SU_NYANGGRASS") == 5) bonus bMatk,50; if (getskilllv("SU_SV_STEMSPEAR") == 5) bonus bSpeedRate,25; if (getskilllv("SU_SV_ROOTTWIST") == 5) bonus bMatk,50; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470010 AegisName: Capricon_Shoes_J Name: Capricon Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMatk,50; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) { bonus bBaseAtk,80; bonus bMatk,80; bonus bFlee2,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"RG_BACKSTAP",700; bonus2 bSkillAtk,"SC_TRIANGLESHOT",100; if (.@r>=8) skill "TK_JUMPKICK",7; } - Id: 470011 AegisName: Siege_Shoes_2Tier Name: Intermediate Guild Member's Shoes Type: Armor Weight: 200 Defense: 7 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SuperNovice: true Wizard: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,350; bonus bMdef,7; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; if (.@r>=7) { bonus bMaxHPrate,10; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 470012 AegisName: Siege_Boots_2Tier Name: Intermediate Guild Member's Boots Type: Armor Weight: 500 Defense: 10 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Merchant: true Ninja: true Rogue: true Swordman: true Thief: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,550; bonus bMdef,4; bonus2 bSubRace,RC_Player_Human,2; bonus2 bSubRace,RC_Player_Doram,2; if (.@r>=7) { bonus bMaxHPrate,10; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 470013 AegisName: Siege_Greave_2Tier Name: Intermediate Guild Member's Greaves Type: Armor Weight: 800 Defense: 15 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,750; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus bMdef,2; if (.@r>=7) { bonus bMaxHPrate,10; bonus2 bSubRace,RC_Player_Human,1; bonus2 bSubRace,RC_Player_Doram,1; } - Id: 470014 AegisName: Virgo_Shoes_J Name: Virgo Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,50; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Priest) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bMagicAtkEle,Ele_Holy,20; bonus2 bSkillAtk,"AB_JUDEX",100; if (.@r>=8) bonus5 bAutoSpell,"MG_SAFETYWALL",max(getskilllv("MG_SAFETYWALL"),3),50,BF_MAGIC,0; } - Id: 470016 AegisName: Noblesse_Attack_Boots Name: Noblesse Attack Boots Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,10; bonus bHit,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,5; - Id: 470017 AegisName: Noblesse_Magic_Boots Name: Noblesse Magic Boots Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,10; bonus bFlee,10; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; - Id: 470018 AegisName: Imperial_Attack_Boots Name: Imperial Attack Boots Type: Armor Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,15; bonus bHit,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,7; - Id: 470019 AegisName: Imperial_Magic_Boots Name: Imperial Magic Boots Type: Armor Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,15; bonus bFlee,15; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; - Id: 470020 AegisName: Grace_Attack_Boots Name: Grace Attack Boots Type: Armor Defense: 30 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bBaseAtk,20; bonus bHit,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus bLongAtkRate,10; - Id: 470021 AegisName: Grace_Magic_Boots Name: Grace Magic Boots Type: Armor Defense: 30 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatk,20; bonus bFlee,20; if (.@r>=7) bonus bFixedCast,-500; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; - Id: 470022 AegisName: Auto_Leg_A Name: Automatic Leg Type A Type: Armor Weight: 500 Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,250; bonus bMaxSP,20*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,7; } - Id: 470023 AegisName: Auto_Leg_B Name: Automatic Leg Type B Type: Armor Weight: 500 Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,250; bonus bMaxSP,20*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,7; } - Id: 470024 AegisName: Aries_Shoes_J Name: Aries Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubClass,Class_Boss,5; bonus2 bSkillVariableCast,"CR_DEVOTION",-1000; if (.@r>=8) bonus2 bSkillCooldown,"LG_SHIELDSPELL",-2000; } - Id: 470025 AegisName: Pretty_PigShoes Name: Cute Little Boar Shoes Type: Armor Buy: 20 Weight: 100 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("SU_SVG_SPIRIT"); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAspdRate,5*getskilllv("SU_HISS"); bonus2 bVariableCastrate,"SU_PICKYPECK",-10*.@a; bonus2 bVariableCastrate,"SU_ARCLOUSEDASH",-10*.@a; bonus2 bVariableCastrate,"SU_SCAROFTAROU",-10*.@a; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-10*.@a; bonus2 bVariableCastrate,"SU_HISS",-10*.@a; bonus2 bVariableCastrate,"SU_POWEROFFLOCK",-10*.@a; bonus2 bVariableCastrate,"SU_SVG_SPIRIT",-10*.@a; if (getskilllv("SU_SPIRITOFLIFE") == 1) { autobonus "{ bonus bBaseAtk,100; }",20,15000,BF_WEAPON; autobonus3 "{ .@val = max(100, (Hp/1000)); bonus2 bSkillAtk,\"SU_PICKYPECK\",.@val; bonus2 bSkillAtk,\"SU_SCAROFTAROU\",.@val; bonus2 bSkillAtk,\"SU_LUNATICCARROTBEAT\",.@val; bonus2 bSkillAtk,\"SU_SVG_SPIRIT\",.@val; }",1000,15000,"SU_SCAROFTAROU"; } if (getskilllv("SU_POWEROFFLOCK") == 5) { bonus bPerfectHitAddRate,50; bonus bDelayrate,-50; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470026 AegisName: Pretty_PigShoes_ Name: Cute Little Boar Shoes Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("SU_SVG_SPIRIT"); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAspdRate,5*getskilllv("SU_HISS"); bonus2 bVariableCastrate,"SU_PICKYPECK",-10*.@a; bonus2 bVariableCastrate,"SU_ARCLOUSEDASH",-10*.@a; bonus2 bVariableCastrate,"SU_SCAROFTAROU",-10*.@a; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-10*.@a; bonus2 bVariableCastrate,"SU_HISS",-10*.@a; bonus2 bVariableCastrate,"SU_POWEROFFLOCK",-10*.@a; bonus2 bVariableCastrate,"SU_SVG_SPIRIT",-10*.@a; if (getskilllv("SU_SPIRITOFLIFE") == 1) { autobonus "{ bonus bBaseAtk,100; }",20,15000,BF_WEAPON; autobonus3 "{ .@val = max(100, (Hp/1000)); bonus2 bSkillAtk,\"SU_PICKYPECK\",.@val; bonus2 bSkillAtk,\"SU_SCAROFTAROU\",.@val; bonus2 bSkillAtk,\"SU_LUNATICCARROTBEAT\",.@val; bonus2 bSkillAtk,\"SU_SVG_SPIRIT\",.@val; }",1000,15000,"SU_SCAROFTAROU"; } if (getskilllv("SU_POWEROFFLOCK") == 5) { bonus bPerfectHitAddRate,50; bonus bDelayrate,-50; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470027 AegisName: Juggernaut Name: Juggernaut Type: Armor Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AC_CONCENTRATION",1; bonus2 bSkillCooldown,"RL_RICHS_COIN",-3000; bonus2 bFixedCastrate,"RL_BANISHING_BUSTER",-20*getskilllv("RL_BANISHING_BUSTER"); bonus2 bSkillAtk,"RL_BANISHING_BUSTER",60*getskilllv("RL_BANISHING_BUSTER"); bonus2 bAddClass,Class_All,4*getskilllv("RL_FIRE_RAIN"); bonus2 bSkillAtk,"RL_FIRE_RAIN",50*getskilllv("RL_FIRE_RAIN"); bonus bDelayrate,-8*getskilllv("RL_H_MINE"); bonus2 bSkillAtk,"RL_H_MINE",40*getskilllv("RL_H_MINE"); if (getskilllv("RL_FALLEN_ANGEL") == 1) { bonus bAspdRate,20; bonus2 bSkillUseSP,"RL_FIREDANCE",20; } if (getskilllv("RL_AM_BLAST") == 5) { bonus2 bIgnoreDefRaceRate,RC_All,100; bonus4 bAutoSpellOnSkill,"RL_HAMMER_OF_GOD","RL_RICHS_COIN",1,1000; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } - Id: 470028 AegisName: Juggernaut_ Name: Juggernaut Type: Armor Weight: 400 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "AC_CONCENTRATION",1; bonus2 bSkillCooldown,"RL_RICHS_COIN",-3000; bonus2 bFixedCastrate,"RL_BANISHING_BUSTER",-20*getskilllv("RL_BANISHING_BUSTER"); bonus2 bSkillAtk,"RL_BANISHING_BUSTER",60*getskilllv("RL_BANISHING_BUSTER"); bonus2 bAddClass,Class_All,4*getskilllv("RL_FIREDANCE"); bonus2 bSkillAtk,"RL_FIREDANCE",50*getskilllv("RL_FIREDANCE"); bonus bDelayrate,-8*getskilllv("RL_H_MINE"); bonus2 bSkillAtk,"RL_H_MINE",40*getskilllv("RL_H_MINE"); if (getskilllv("RL_FALLEN_ANGEL") == 1) { bonus bAspdRate,20; bonus2 bSkillUseSP,"RL_FIREDANCE",20; } if (getskilllv("RL_AM_BLAST") == 5) { bonus2 bIgnoreDefRaceRate,RC_All,100; bonus4 bAutoSpellOnSkill,"RL_HAMMER_OF_GOD","RL_RICHS_COIN",1,1000; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; } - Id: 470030 AegisName: Discord_Particles_Shoes Name: Discord Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470031 AegisName: Discord_Particles_Shoe_ Name: Discord Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470032 AegisName: Gemini_Shoes_J Name: Gemini Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMatk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; if ((eaclass()&EAJL_THIRD) && (BaseJob == Job_Bard || BaseJob == Job_Dancer)) { bonus bBaseAtk,80; bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"WM_REVERBERATION",100; if (.@r>=8) bonus2 bVariableCastrate,"WM_REVERBERATION",-100; } - Id: 470033 AegisName: Elemental_BootsK Name: Elemental Boots Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"MG_FIREBOLT",15+2*.@r; bonus2 bSkillAtk,"MG_COLDBOLT",15+2*.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",15+2*.@r; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15+2*.@r; if (.@r>=7) { bonus bMatk,20; } if (.@r>=9) { autobonus "{ bonus bMatkRate,10; bonus bInt,70; }",1,5000,BF_WEAPON; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; } - Id: 470034 AegisName: Virtue_Particles_Shoes Name: Immoral Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470035 AegisName: Virtue_Particles_Shoes_ Name: Immoral Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470036 AegisName: Military_Boots_IL Name: Illusion Military Boots Type: Armor Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@lvl = getskilllv("NC_AXEBOOMERANG"); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "SM_MAGNUM",3; bonus2 bSkillAtk,"NC_AXETORNADO",30*.@lvl; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20*.@lvl; bonus2 bIgnoreDefRaceRate,RC_All,20*getskilllv("NC_MAGMA_ERUPTION"); if (getskilllv("NC_MAGICDECOY") == 5) { bonus bAspdRate,10; bonus bMaxHP,150*BaseLevel; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bBaseAtk,50; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; } - Id: 470037 AegisName: Military_Boots_IL_ Name: Illusion Military Boots Type: Armor Weight: 400 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@lvl = getskilllv("NC_AXEBOOMERANG"); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; skill "SM_MAGNUM",3; bonus2 bSkillAtk,"NC_AXETORNADO",30*.@lvl; bonus2 bSkillAtk,"NC_AXEBOOMERANG",20*.@lvl; bonus2 bIgnoreDefRaceRate,RC_All,20*getskilllv("NC_MAGMA_ERUPTION"); if (getskilllv("NC_MAGICDECOY") == 5) { bonus bAspdRate,10; bonus bMaxHP,150*BaseLevel; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bBaseAtk,50; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,50; } - Id: 470038 AegisName: Pisces_Shoes_J Name: Pisces Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Sage) { bonus bMatk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",70; if (.@r>=8) { bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Earth,20; } } - Id: 470045 AegisName: Sagittarius_Shoes_J Name: Sagittarius Shoes Type: Armor Buy: 20 Weight: 400 Defense: 25 Locations: Shoes: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,50; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Hunter) { bonus bBaseAtk,80; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; bonus2 bSubEle,Ele_Fire,15; bonus2 bSubEle,Ele_Water,15; bonus2 bSubEle,Ele_Wind,15; bonus2 bSubEle,Ele_Earth,15; if (.@r>=8) bonus bLongAtkRate,30; } - Id: 470046 AegisName: Kingly_Boots Name: Monarch Boots Type: Armor Buy: 20 Weight: 1000 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_All,5; bonus2 bSubClass,Class_Normal,5; if (getrefine()>=7) { bonus bAllStats,10; bonus bPerfectHitAddRate,20; bonus bNoKnockback; } - Id: 470047 AegisName: Awakening_Nergal_Shoes Name: Awakened Fire Thunder Great Boots Type: Armor Weight: 1000 Defense: 18 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableShoes; bonus2 bMagicAddClass,Class_Boss,15; bonus bMatk,5*.@r; bonus bVariableCastrate,-2*.@r; bonus2 bMagicAddEle,Ele_Earth,2*.@r; bonus2 bMagicAddEle,Ele_Ghost,2*.@r; bonus2 bMagicAddEle,Ele_Neutral,2*.@r; bonus2 bMagicAddEle,Ele_Undead,2*.@r; - Id: 470048 AegisName: Striking_Shoes Name: Striking Shoes Type: Armor Weight: 400 Defense: 18 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bDelayrate,-30; bonus bPerfectHitAddRate,10; if (.@r>=7) bonus bPerfectHitAddRate,20; if (.@r>=9) bonus bPerfectHitAddRate,20; - Id: 470054 AegisName: E_Illusion_Leg_A Name: Illusion Leg Type A (Bound) Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,200+20*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,5; } - Id: 470055 AegisName: E_Illusion_Leg_B Name: Illusion Leg Type B (Bound) Type: Armor Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,200+20*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; } - Id: 470056 AegisName: Chaser_Shoes Name: Chaser's Shoes Type: Armor Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@val = (getskilllv("SC_ESCAPE")+getskilllv("SC_FATALMENACE")+getskilllv("SC_FEINTBOMB")); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bFlee,.@val*4; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"SC_FATALMENACE",18; bonus2 bIgnoreDefRaceRate,RC_All,20*getskilllv("SC_ESCAPE"); bonus2 bSkillAtk,"SC_FATALMENACE",getskilllv("GN_TRAINING_SWORD"); bonus2 bAddRace,RC_All,2*getskilllv("SC_FATALMENACE"); if (getskilllv("SC_FEINTBOMB") == 10) { bonus bNoSizeFix; } if (.@r>=5) { bonus bAspdRate,5; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bAspdRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } - Id: 470057 AegisName: Chaser_Shoes_ Name: Pursuiter Shoes Type: Armor Weight: 400 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@val = (getskilllv("SC_ESCAPE")+getskilllv("SC_FATALMENACE")+getskilllv("SC_FEINTBOMB")); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bFlee,.@val*4; skill "AL_TELEPORT",1; bonus2 bSkillUseSP,"SC_FATALMENACE",18; bonus2 bIgnoreDefRaceRate,RC_All,20*getskilllv("SC_ESCAPE"); bonus2 bSkillAtk,"SC_FATALMENACE",getskilllv("GN_TRAINING_SWORD"); bonus2 bAddRace,RC_All,2*getskilllv("SC_FATALMENACE"); if (getskilllv("SC_FEINTBOMB") == 10) { bonus bNoSizeFix; } if (.@r>=5) { bonus bAspdRate,5; bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=7) { bonus bAspdRate,5; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } - Id: 470058 AegisName: Disillusion_P_Shoes Name: Disillusion Thoughtform Shoes Type: Armor Weight: 200 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; if (.@r>=7) { bonus bMaxHPrate,10; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus bMaxHPrate,10; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 470059 AegisName: Disillusion_P_Shoes_ Name: Disillusion Thoughtform Shoes Type: Armor Weight: 200 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; if (.@r>=7) { bonus bMaxHPrate,10; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus bMaxHPrate,10; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 470060 AegisName: Cylinder_Boots Name: Cylinder Boots Type: Armor Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@val = getskilllv("GN_CARTBOOST"); bonus bUnbreakableShoes; bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bHit,20*.@val; bonus bAspdRate,4*.@val; bonus bAtkRate,4*getskilllv("GN_FIRE_EXPANSION"); bonus2 bSkillAtk,"GN_CART_TORNADO",10*getskilllv("GN_CRAZYWEED"); if (getskilllv("GN_S_PHARMACY") == 10) bonus bIgnoreDefRace,RC_All; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bVariableCastrate,"GN_CARTCANNON",-50; bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel/2; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bVariableCastrate,"GN_CARTCANNON",-50; bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel/2; } - Id: 470061 AegisName: Cylinder_Boots_ Name: Cylinder Boots Type: Armor Weight: 400 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@val = getskilllv("GN_CARTBOOST"); .@a = (.@r>= 7 ? 20 : (.@r>= 5 ? 10 : 3)); .@b = (.@r>= 7 ? 100 : (.@r>= 5 ? 50 : 0)); bonus bUnbreakableShoes; bonus bMdef,10; bonus bMaxHPrate,.@a; bonus bMaxSPrate,.@a; bonus2 bVariableCastrate,"GN_CARTCANNON",-.@b; bonus bHit,20*.@val; bonus bAspdRate,4*.@val; bonus bAtkRate,4*getskilllv("GN_FIRE_EXPANSION"); bonus2 bSkillAtk,"GN_CART_TORNADO",10*getskilllv("GN_CRAZYWEED"); if (getskilllv("GN_S_PHARMACY") == 10) bonus bIgnoreDefRace,RC_All; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus2 bVariableCastrate,"GN_CARTCANNON",-50; bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel/2; bonus bAllStats,BaseLevel/2; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bVariableCastrate,"GN_CARTCANNON",-50; bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel/2; bonus bAllStats,BaseLevel/2; } - Id: 470062 AegisName: Lethargy_P_Shoes Name: Lethargy Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus2 bSkillAtk,"MO_TRIPLEATTACK",5*BaseLevel; bonus2 bSkillAtk,"MO_CHAINCOMBO",10*BaseLevel; bonus2 bSkillAtk,"MO_COMBOFINISH",10*BaseLevel; if (.@r >= 7) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470063 AegisName: Lethargy_P_Shoes_ Name: Lethargy Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus2 bSkillAtk,"MO_TRIPLEATTACK",5*BaseLevel; bonus2 bSkillAtk,"MO_CHAINCOMBO",10*BaseLevel; bonus2 bSkillAtk,"MO_COMBOFINISH",10*BaseLevel; if (.@r >= 7) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bFlee,50; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470066 AegisName: Sprint_Shoes_IL Name: Illusion Sprint Shoes Type: Armor Weight: 700 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bSPrecovRate,20; bonus bAgi,5; if (.@r>=7) { bonus bSPrecovRate,20; if (.@r>=9) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } - Id: 470067 AegisName: 1Para_Boots_A Name: Paradise Boots Type: Armor Defense: 8 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bShortAtkRate,3; bonus bLongAtkRate,3; bonus bCritical,(min(BaseLevel,100)/5); if (BaseLevel>=30) { bonus bShortAtkRate,3; bonus bLongAtkRate,3; } if (BaseLevel>=45) { bonus bShortAtkRate,4; bonus bLongAtkRate,4; } if (BaseLevel>=85) bonus bFixedCast,-300; - Id: 470068 AegisName: 1Para_Boots_B Name: Paradise Shoes Type: Armor Defense: 4 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAtkEle,Ele_All,3; bonus bMatk,2*(min(BaseLevel,100)/5); if (BaseLevel>=30) bonus2 bMagicAtkEle,Ele_All,3; if (BaseLevel>=45) bonus2 bMagicAtkEle,Ele_All,4; if (BaseLevel>=85) bonus bFixedCast,-300; - Id: 470069 AegisName: 2Para_Boots_A Name: Paradise Luxury Boots Type: Armor Defense: 14 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bShortAtkRate,10; bonus bLongAtkRate,10; bonus bFixedCast,-300; .@l = BaseLevel; bonus bMaxHP,50*(min(.@l,150)/10); bonus bMaxSP,20*(min(.@l,150)/10); if (.@l>=105) bonus bCritical,15; if (.@l>=110) bonus bCritAtkRate,5; if (.@l>=120) bonus bCritAtkRate,5; if (.@l>=130) bonus bAtkRate,5; - Id: 470070 AegisName: Egirnion_Shoes Name: Aegirnion Shoes Type: Armor Weight: 300 Defense: 35 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,5; if (getrefine()>=9) { bonus bAspdRate,10; } - Id: 470071 AegisName: MD_Airboat_Boots Name: Unknown Strength Boots Type: Armor Weight: 700 Defense: 60 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bMaxHP,120*(.@r/3); bonus bMaxSP,8*(.@r/3); if (.@r>=9) { bonus bAspdRate,7; if (.@r>=11) { autobonus "{ .@g = getenchantgrade(); if (.@g >= ENCHANTGRADE_D) { .@val = 25; if (.@g >= ENCHANTGRADE_C) { .@val += 25; } } bonus bStr,175+.@val; }",1,10000,BF_WEAPON; if (.@r>=13) { bonus bShortAtkRate,7; } } } - Id: 470072 AegisName: MD_Airboat_Boots2 Name: Unknown Dexterity Boots Type: Armor Weight: 700 Defense: 60 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bMaxHP,110*(.@r/3); bonus bMaxSP,10*(.@r/3); if (.@r>=9) { bonus bAspdRate,7; if (.@r>=11) { autobonus "{ .@g = getenchantgrade(); if (.@g >= ENCHANTGRADE_D) { .@val = 25; if (.@g >= ENCHANTGRADE_C) { .@val += 25; } } bonus bDex,175+.@val; }",1,10000,BF_WEAPON|BF_MAGIC; if (.@r>=13) { bonus bFixedCast,-500; } } } - Id: 470073 AegisName: MD_Airboat_Boots3 Name: Unknown Vitality Boots Type: Armor Weight: 750 Defense: 65 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus bMaxHP,150*(.@r/3); bonus bMaxSP,15*(.@r/3); if (.@r>=9) { bonus bAspdRate,5; bonus bVariableCastrate,-5; if (.@r>=11) { autobonus "{ .@g = getenchantgrade(); if (.@g >= ENCHANTGRADE_D) { .@val = 25; if (.@g >= ENCHANTGRADE_C) { .@val += 25; } } bonus bVit,175+.@val; }",1,10000,BF_WEAPON|BF_MAGIC; if (.@r>=13) { bonus bDelayrate,-5; } } } - Id: 470074 AegisName: MD_Airboat_Boots4 Name: Unknown Intelligence Boots Type: Armor Weight: 650 Defense: 50 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bHealPower,2*(.@r/2); bonus bMaxHP,80*(.@r/3); bonus bMaxSP,20*(.@r/3); if (.@r>=9) { bonus bVariableCastrate,-7; if (.@r>=11) { autobonus "{ .@g = getenchantgrade(); if (.@g >= ENCHANTGRADE_D) { .@val = 25; if (.@g >= ENCHANTGRADE_C) { .@val += 25; } } bonus bInt,175+.@val; }",1,10000,BF_MAGIC; if (.@r>=13) { bonus2 bMagicAtkEle,Ele_All,7; } } } - Id: 470075 AegisName: Peep_Toe_Sandals Name: Peep Toe Sandals Type: Armor Defense: 10 Weight: 300 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@val = 5; bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; if (.@r >= 9) .@val += 5; if (.@r >= 11) .@val += 5; bonus2 bExpAddClass,Class_All,.@val; - Id: 470076 AegisName: MD_Airboat_Boots5 Name: Unknown Agility Boots Type: Armor Weight: 700 Defense: 60 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bMaxHP,120*(.@r/3); bonus bMaxSP,8*(.@r/3); if (.@r>=9) { bonus bAspdRate,7; if (.@r>=11) { autobonus "{ .@g = getenchantgrade(); if (.@g >= ENCHANTGRADE_D) { .@val = 25; if (.@g >= ENCHANTGRADE_C) { .@val += 25; } } bonus bAgi,175+.@val; }",1,10000,BF_WEAPON; if (.@r>=13) { bonus bLongAtkRate,4; bonus bShortAtkRate,4; } } } - Id: 470077 AegisName: MD_Airboat_Boots6 Name: Unknown Luck Boots Type: Armor Weight: 720 Defense: 65 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bMaxHP,100*(.@r/3); bonus bMaxSP,8*(.@r/3); if (.@r>=9) { bonus bAspdRate,7; if (.@r>=11) { autobonus "{ .@g = getenchantgrade(); if (.@g >= ENCHANTGRADE_D) { .@val = 25; if (.@g >= ENCHANTGRADE_C) { .@val += 25; } } bonus bLuk,175+.@val; }",1,10000,BF_WEAPON; if (.@r>=13) { bonus bCritAtkRate,7; bonus bCritical,7; bonus bAtkRate,7; } } } - Id: 470078 AegisName: Indecisive_P_Shoes Name: Indecisive Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bInt,15; bonus bDex,15; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bInt,15; bonus bDex,15; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 470079 AegisName: Indecisive_P_Shoes_ Name: Indecisive Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bInt,15; bonus bDex,15; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r >= 9) { bonus bInt,15; bonus bDex,15; bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 470080 AegisName: Arrogance_P_Shoes Name: Arrogant Thoughtform Shoes Type: Armor Weight: 200 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r>=7) { bonus bDef,150; bonus bMdef,15; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r>=9) { bonus bDef,150; bonus bMdef,15; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470081 AegisName: Arrogance_P_Shoes_ Name: Arrogant Thoughtform Shoes Type: Armor Weight: 200 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r>=7) { bonus bDef,150; bonus bMdef,15; bonus2 bIgnoreDefRaceRate,RC_All,50; } if (.@r>=9) { bonus bDef,150; bonus bMdef,15; bonus2 bIgnoreDefRaceRate,RC_All,50; } - Id: 470082 AegisName: Regeneration_P_Shoes Name: Regeneration Thoughtform Shoes Type: Armor Weight: 200 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-100; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-15; } if (.@r>=9) { bonus bAspdRate,10; bonus bDelayrate,-15; } - Id: 470083 AegisName: Regeneration_P_Shoes_ Name: Regeneration Thoughtform Shoes Type: Armor Weight: 200 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus2 bVariableCastrate,"ASC_METEORASSAULT",-100; if (.@r>=7) { bonus bAspdRate,10; bonus bDelayrate,-15; } if (.@r>=9) { bonus bAspdRate,10; bonus bDelayrate,-15; } - Id: 470084 AegisName: Rune_Greave_JP Name: Rune Greaves Type: Armor Weight: 400 Defense: 12 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bSpeedRate,25; bonus bAllStats,3*(getskilllv("RK_DRAGONBREATH")+getskilllv("RK_DRAGONBREATH_WATER")/2); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",getskilllv("RK_DRAGONHOWLING")*40; bonus2 bSkillAtk,"LK_SPIRALPIERCE",getskilllv("RK_DRAGONHOWLING")*40; if (getskilllv("RK_DRAGONTRAINING") == 5) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1000; if (getskilllv("RK_PHANTOMTHRUST") == 5) bonus bFixedCastrate,-50; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470085 AegisName: Rune_Greave_JP_ Name: Rune Greaves Type: Armor Weight: 400 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bSpeedRate,25; bonus bAllStats,3*(getskilllv("RK_DRAGONBREATH")+getskilllv("RK_DRAGONBREATH_WATER")/2); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",getskilllv("RK_DRAGONHOWLING")*40; bonus2 bSkillAtk,"LK_SPIRALPIERCE",getskilllv("RK_DRAGONHOWLING")*40; if (getskilllv("RK_DRAGONTRAINING") == 5) bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1000; if (getskilllv("RK_PHANTOMTHRUST") == 5) bonus bFixedCastrate,-50; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470086 AegisName: Lapine_Pray_Shoes Name: Lapine Prayer Shoes Type: Armor Weight: 200 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bMatk,30; bonus bMatkRate,2*(getskilllv("WL_FREEZE_SP")/3); bonus bDelayrate,-2*(getskilllv("WL_FREEZE_SP")/3); - Id: 470087 AegisName: Gray_W_Boots Name: Gray Wolf Boots Type: Armor Weight: 500 Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,300+50*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,7; } - Id: 470088 AegisName: Gray_W_Shoes Name: Gray Wolf Shoes Type: Armor Weight: 500 Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true Script: | .@r = getrefine(); bonus bMaxSP,250+20*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,7; } - Id: 470089 AegisName: Runaway_P_Shoes Name: Runaway Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bAspdRate,10; bonus bUseSPrate,-4; } if (.@r >= 9) { bonus bAspdRate,10; bonus bUseSPrate,-4; } - Id: 470090 AegisName: Runaway_P_Shoes_ Name: Runaway Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus bAspdRate,10; bonus bUseSPrate,-4; } if (.@r >= 9) { bonus bAspdRate,10; bonus bUseSPrate,-4; } - Id: 470091 AegisName: Disappointment_P_Shoes Name: Despair Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r >= 9) { bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Ghost,15; } - Id: 470092 AegisName: Disappointment_P_Shoes_ Name: Despair Thoughtform Shoes Type: Armor Defense: 12 Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bMaxHPrate,20; bonus bMaxSPrate,20; if (.@r >= 7) { bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r >= 9) { bonus2 bMagicAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bMagicAddEle,Ele_Dark,15; bonus2 bMagicAddEle,Ele_Ghost,15; } - Id: 470093 AegisName: 2Para_Boots_B Name: Advanced Paradise Shoes Type: Armor Defense: 10 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAddEle,Ele_All,10; bonus bFixedCast,-300; bonus bMaxHP,40*(min(BaseLevel,150)/10); bonus bMaxSP,30*(min(BaseLevel,150)/10); if (BaseLevel>=105) bonus bVariableCastrate,-10; if (BaseLevel>=110) bonus2 bMagicAddEle,Ele_All,5; if (BaseLevel>=120) bonus2 bMagicAddEle,Ele_All,5; if (BaseLevel>=130) bonus bMatkRate,5; - Id: 470094 AegisName: Hero_Boots_LT Name: Hero Boots-LT Type: Armor Weight: 600 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; if (BaseLevel>=210) { bonus bPAtk,1; bonus bSMatk,1; } if (.@r>=7) { bonus bMatkRate,5; bonus bAtkRate,5; if (.@r>=9) { bonus bVariableCastrate,-5; bonus bPerfectHitAddRate,10; bonus bCritical,5; if (.@r>=11) { bonus bFixedCast,-800; bonus bDelayrate,-5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAddEle,Ele_All,10; bonus2 bAddEle,Ele_All,10; if (.@g >= ENCHANTGRADE_B) { bonus bSta,5; bonus bWis,5; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,5; bonus bSMatk,5; if (.@r>=13) { bonus bFixedCast,-200; } } } } } bonus bMaxHPrate,(.@r/3); bonus bMaxSPrate,(.@r/3); - Id: 470095 AegisName: Destroy_World_Boots Name: Destroyer Boots Type: Armor Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,30; bonus2 bMagicAddRace,RC_Angel,4*(.@r/3); bonus2 bMagicAddRace,RC_Demon,4*(.@r/3); bonus2 bMagicAddRace,RC_Undead,4*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Dark,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; } if (.@r>=9) bonus bFixedCast,-500; if (.@r>=11) { bonus2 bSkillCooldown,"WL_HELLINFERNO",-2000; bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; } if (.@r>=12) { bonus2 bSkillAtk,"WL_COMET",30; bonus2 bSkillAtk,"WL_HELLINFERNO",30; bonus2 bSkillAtk,"SO_EARTHGRAVE",30; } - Id: 470096 AegisName: Cursed_Devils_Boots_A Name: Awakening Magic Curse Boots Type: Armor Buy: 20 Weight: 1000 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_All,5; bonus bMaxHPrate,3*.@r; if (.@r>=7) bonus bIntravision; - Id: 470097 AegisName: HalfBloodPrincess_Shoes Name: Demon Hunting Shoes Type: Armor Weight: 1000 Defense: 40 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableShoes; bonus bMdef,15; bonus bAtkRate,((.@r>=9)?40:(.@r>=7?25:10)); bonus2 bSubClass,Class_Normal,5; bonus2 bSubClass,Class_Boss,5; bonus bMaxHPrate,4*.@r; if (.@r>=9) bonus bDefRatioAtkClass,Class_All; - Id: 470098 AegisName: EC_Boots_TW Name: Jade Crystal Boots Type: Armor Weight: 200 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDex,3*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10*(.@r/3); bonus2 bSkillAtk,"CG_ARROWVULCAN",20*(.@r/3); if (.@r>=7) bonus bAtkRate,5; if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) autobonus "{ bonus bDex,200; bonus2 bSPLossRate,50,1000; }",30,10000,BF_WEAPON,"{ specialeffect2 EF_FLASHER; }"; - Id: 470099 AegisName: Rachel_Boots Name: Awakened Glacier Boots Type: Armor Weight: 250 Defense: 16 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,6; bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@r>=6) bonus2 bSubRace,RC_DemiHuman,5; if (.@r>=9) bonus2 bIgnoreDefClassRate,Class_Normal,7; - Id: 470105 AegisName: Shoes_Of_Judex Name: Purge Shoes Type: Armor Buy: 20 Weight: 500 Defense: 15 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableShoes; bonus bMdef,15+(10*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS"))); bonus bHealPower,8*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-1000; if (getskilllv("AB_ORATIO") == 10) { bonus bVariableCastrate,-50; bonus bDelayrate,-50; } if (getskilllv("AB_CLEARANCE") == 5) { bonus2 bMagicAddEle,Ele_All,25; autobonus3 "{ bonus2 bSkillAtk,\"AB_JUDEX\",BaseLevel; }",1000,15000,"AB_OFFERTORIUM"; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470106 AegisName: Shoes_Of_Judex_ Name: Shoes of Purge Type: Armor Buy: 20 Weight: 500 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableShoes; bonus bMdef,15+(10*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS"))); bonus bHealPower,8*(getskilllv("AB_LAUDAAGNUS")+getskilllv("AB_LAUDARAMUS")); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillCooldown,"AB_HIGHNESSHEAL",-1000; if (getskilllv("AB_ORATIO") == 10) { bonus bVariableCastrate,-50; bonus bDelayrate,-50; } if (getskilllv("AB_CLEARANCE") == 5) { bonus2 bMagicAddEle,Ele_All,25; autobonus3 "{ bonus2 bSkillAtk,\"AB_JUDEX\",BaseLevel; }",1000,15000,"AB_OFFERTORIUM"; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470107 AegisName: Barmund_Greave Name: Varmundt Rune Greaves Type: Armor Weight: 700 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true - Id: 470108 AegisName: Barmund_Plain_Boots Name: Varmundt Glade Rune Boots Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bMaxHPrate,10; if (.@r>=9) { bonus bFixedCast,-300; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bFixedCast,-200; bonus bMaxHPrate,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMaxHPrate,2; if (.@g >= ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g >= ENCHANTGRADE_B) { bonus bVariableCastrate,-5; bonus bMaxHPrate,2; if (.@g >= ENCHANTGRADE_A) { bonus bFixedCast,-200; } } } } - Id: 470109 AegisName: Barmund_Flame_Boots Name: Varmundt Fire Rune Boots Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bAtkRate,5; if (.@r>=9) { bonus bFixedCast,-300; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bFixedCast,-200; bonus bShortAtkRate,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; if (.@g >= ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bAtkRate,2; if (.@g >= ENCHANTGRADE_A) { bonus bFixedCast,-200; } } } } - Id: 470110 AegisName: Barmund_Death_Boots Name: Varmundt Death Rune Boots Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bMatkRate,5; if (.@r>=9) { bonus bFixedCast,-300; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAtkEle,Ele_All,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,2; if (.@g >= ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bMatkRate,2; if (.@g >= ENCHANTGRADE_A) { bonus bFixedCast,-200; } } } } - Id: 470111 AegisName: Barmund_Ice_Boots Name: Varmundt Ice Rune Boots Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bAtkRate,5; if (.@r>=9) { bonus bFixedCast,-300; bonus bCritAtkRate,5; if (.@r>=11) { bonus bFixedCast,-200; bonus bLongAtkRate,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; if (.@g >= ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bAtkRate,2; if (.@g >= ENCHANTGRADE_A) { bonus bCRate,1; } } } } - Id: 470112 AegisName: Moaning_of_EvilSpirits Name: Moaning of Evil Spirits Type: Armor Weight: 500 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bMatkRate,15; bonus2 bSubClass,Class_Boss,5; bonus bMaxHPrate,4*.@r; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Dark,20; bonus2 bMagicAtkEle,Ele_Neutral,20; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Dark,25; bonus2 bMagicAtkEle,Ele_Neutral,25; } - Id: 470113 AegisName: Hollow_Shoes_ Name: Hollow Shoes Type: Armor Weight: 500 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | bonus bMdef,5; bonus bMatk,50; bonus bDelayrate,10; bonus2 bMagicAddEle,Ele_All,getrefine(); - Id: 470115 AegisName: Snowflower_Boots Name: Snowflower Boots Type: Armor Weight: 500 Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,8; bonus bMaxSPrate,4+1*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,7; bonus bLongAtkRate,7; if (.@r>=9) { bonus bPAtk,2; } } - Id: 470116 AegisName: Snowflower_Shoes Name: Snowflower Shoes Type: Armor Weight: 500 Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,6; bonus bMaxSPrate,6+1*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,7; if (.@r>=9) { bonus bSMatk,2; } } - Id: 470117 AegisName: Guardian_Greave Name: Guardian Greave Type: Armor Weight: 500 Defense: 40 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Earth,2; bonus2 bSubEle,Ele_Fire,2; bonus2 bSubEle,Ele_Water,2; bonus2 bSubEle,Ele_Wind,2; if (.@r>=5) bonus3 bAutoSpellWhenHit,"AL_ANGELUS",5,20; - Id: 470120 AegisName: Scrap_Remodel_Shoes_TW Name: Mechanical Aluminum Modified Boots Type: Armor Weight: 1500 Defense: 50 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bStr,2*(.@r/2); bonus bMaxHPrate,2*(.@r/3); if (.@r>=7) bonus bAtkRate,7; if (.@r>=9) bonus bFixedCast,-500; if (.@r>=11) bonus2 bAddEle,Ele_All,7; - Id: 470122 AegisName: Beast_Leather_Shoes Name: Beast's Leather Shoes Type: Armor Weight: 600 Defense: 15 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,150; if (.@r>=7) { bonus bMatkRate,3; if (.@r>=9) { bonus bSMatk,5; bonus bMatkRate,5; if (.@r>=11) { bonus bFixedCast,-800; bonus bVariableCastrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,30; bonus bRes,30; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,15; if (.@g>=ENCHANTGRADE_B) { bonus bSpl,3; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,7; } } } } - Id: 470123 AegisName: aegis_470123 Name: Hunting Shoes Type: Armor Weight: 900 Defense: 30 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; if (.@r>=7) bonus2 bExpAddClass,Class_All,8; if (.@r>=9) .@dmg = 15; if (.@r>=11) .@dmg += 20; bonus2 bAddRace,RC_Brute,.@dmg; bonus2 bAddRace,RC_Fish,.@dmg; bonus2 bAddRace,RC_Brute,.@dmg; bonus2 bAddRace,RC_Fish,.@dmg; - Id: 470125 AegisName: E_Auto_Leg_A Name: Automatic Leg A-type (Bound) Type: Armor Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxSP,250+20*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,7; } - Id: 470126 AegisName: E_Auto_Leg_B Name: Automatic Leg B-type (Bound) Type: Armor Defense: 70 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxSP,250+20*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,7; } - Id: 470127 AegisName: Wine_Shoes Name: Crimson Magic Boots Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus bAtkRate,5+(.@r/2); bonus bMatkRate,5+(.@r/2); bonus bLongAtkDef,5; bonus2 bSubEle,Ele_Neutral,5; if (.@r>=11) { bonus2 bSubEle,Ele_Earth,10; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; } if (.@r>=13) { bonus bFixedCast,-600; bonus bDelayrate,-6; } - Id: 470129 AegisName: Corruption_Boots Name: Fallen Gods Chant Magic Boots Type: Armor Weight: 600 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxSP,200; bonus bMatkRate,2*(.@r/3); bonus bSMatk,(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Dark,10; bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=9) bonus bFixedCast,-500; if (.@r>=11) bonus2 bMagicAddEle,Ele_All,10; if (.@r>=12) { bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",20; bonus2 bSkillAtk,"CD_FRAMEN",20; } if (.@r>=13) autobonus "{ bonus bSpl,10; bonus bMatkRate,15; }",30,10000,BF_MAGIC; - Id: 470130 AegisName: aegis_470130 Name: End of the World Type: Armor Weight: 400 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-5000*getskilllv("GC_CROSSIMPACT"); bonus bAtkRate,10*getskilllv("GC_CROSSRIPPERSLASHER"); bonus2 bSkillAtk,"GC_COUNTERSLASH",6*getskilllv("GC_ROLLINGCUTTER"); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",100*getskilllv("GC_ROLLINGCUTTER"); if (getskilllv("GC_HALLUCINATIONWALK") == 5) bonus2 bSubClass,Class_All,5; if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470153 AegisName: Hs_Speed_Boots Name: Herosria Speed Boots Type: Armor Weight: 1000 Defense: 20 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,3; bonus bAspdRate,8; bonus bCritical,-10; - Id: 470154 AegisName: Hs_Casting_Shoes Name: Herosria Casting Shoes Type: Armor Weight: 1000 Defense: 20 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,3; bonus bAspdRate,-10; bonus bVariableCastrate,-8; - Id: 470155 AegisName: Hs_Critical_Shoes Name: Herosria Critical Shoes Type: Armor Weight: 1000 Defense: 20 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,3; bonus bFixedCast,1000; bonus bCritical,8; - Id: 470156 AegisName: aegis_470156 Name: Herosria Fix Sandals Type: Armor Weight: 1000 Defense: 20 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,3; bonus bFixedCast,-500; bonus bDelayrate,10; - Id: 470157 AegisName: aegis_470157 Name: Herosria Cool Sandals Type: Armor Weight: 1000 Defense: 20 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,3; bonus bDelayrate,-8; bonus bVariableCastrate,10; - Id: 470158 AegisName: aegis_470158 Name: Temporal Boots Dex Type: Armor Weight: 500 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bDex,3+(3*(.@r/3)); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bDex) >= 99) { bonus bFixedCast,-200; bonus bLongAtkRate,3; } - Id: 470159 AegisName: aegis_470159 Name: Temporal Boots Str Type: Armor Weight: 500 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bStr,3; bonus bBaseAtk,5*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bStr) >= 99) bonus bBaseAtk,30; - Id: 470160 AegisName: aegis_470160 Name: Temporal Boots Int Type: Armor Weight: 500 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; bonus bMatk,5*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bInt) >= 99) bonus bMatk,30; - Id: 470161 AegisName: aegis_470161 Name: Temporal Boots Agi Type: Armor Weight: 500 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bAgi,3; bonus bAspdRate,2*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bAgi) >= 99) bonus bAspd,1; - Id: 470162 AegisName: aegis_470162 Name: Temporal Boots Vit Type: Armor Weight: 500 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bVit,3; bonus bDef,5*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bVit) >= 99) bonus bMaxHPrate,5; - Id: 470163 AegisName: aegis_470163 Name: Temporal Boots Luk Type: Armor Weight: 500 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bLuk,3; bonus bCritAtkRate,.@r/3; bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bLuk) >= 99) bonus bCritAtkRate,20; - Id: 470164 AegisName: aegis_470164 Name: Temporal Boots Agi Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bAgi,3; bonus bAspdRate,2*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bAgi) >= 99) bonus bAspd,1; - Id: 470165 AegisName: aegis_470165 Name: Temporal Boots Vit Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bVit,3; bonus bDef,5*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bVit) >= 99) bonus bMaxHPrate,5; - Id: 470166 AegisName: aegis_470166 Name: Temporal Boots Dex Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bDex,3+(3*(.@r/3)); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bDex) >= 99) { bonus bFixedCast,-200; bonus bLongAtkRate,3; } - Id: 470167 AegisName: aegis_470167 Name: Temporal Boots Str Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bStr,3; bonus bBaseAtk,5*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bStr) >= 99) bonus bBaseAtk,30; - Id: 470168 AegisName: aegis_470168 Name: Temporal Boots Int Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; bonus bMatk,5*(.@r/3); bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bInt) >= 99) bonus bMatk,30; - Id: 470169 AegisName: aegis_470169 Name: Temporal Boots Luk Type: Armor Weight: 500 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bLuk,3; bonus bCritAtkRate,.@r/3; bonus bMdef,5; bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); if (readparam(bLuk) >= 99) bonus bCritAtkRate,20; - Id: 470170 AegisName: aegis_470170 Name: Temporal Boots Type: Armor Weight: 500 Defense: 20 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 20 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,200+(50*(.@r/3)); bonus bMaxSP,20+(5*(.@r/3)); - Id: 470171 AegisName: ROZ_FV_Cassock_Boots Name: Shining Priest's Boots Type: Armor Weight: 400 Defense: 32 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,350; bonus bMaxSP,150; bonus bHit,3*(.@r/2); bonus2 bMagicAtkEle,Ele_Holy,4*(.@r/3); if (.@r>=9) autobonus2 "{ bonus bFlee2,30; }",50,2000,BF_MAGIC|BF_WEAPON; - Id: 470172 AegisName: ROZ_FV_Rachel_Boots Name: Frost Ice Snow Boots Type: Armor Weight: 250 Defense: 35 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus bMaxHPrate,5; bonus bMaxSPrate,5; if (.@r>=6) bonus2 bSubRace,RC_DemiHuman,5; if (.@r>=9) bonus2 bIgnoreDefClassRate,Class_Normal,10; - Id: 470173 AegisName: Flame_Rune_Boots Name: Rune Boots of Flame Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; if (.@r>=9) { bonus bFixedCast,-300; bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-200; bonus bShortAtkRate,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-200; bonus bPAtk,2; } } } } - Id: 470174 AegisName: Plain_Rune_Boots Name: Rune Boots of Plain Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bPAtk,2; bonus bMaxHPrate,10; if (.@r>=9) { bonus bFixedCast,-300; bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bAddSize,Size_All,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g>=ENCHANTGRADE_B) { bonus bVariableCastrate,-5; bonus bMaxHPrate,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-200; bonus bPAtk,2; } } } } - Id: 470175 AegisName: Ice_Rune_Boots Name: Rune Boots of Ice Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; if (.@r>=9) { bonus bFixedCast,-300; bonus bCritAtkRate,10; if (.@r>=11) { bonus bFixedCast,-400; bonus bLongAtkRate,5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bCRate,1; bonus bPAtk,2; } } } } - Id: 470176 AegisName: Death_Rune_Boots Name: Rune Boots of Death Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bSMatk,2; bonus bMatkRate,5; if (.@r>=9) { bonus bFixedCast,-300; bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-200; bonus2 bMagicAtkEle,Ele_All,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,5; bonus bMatkRate,5; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-200; bonus bSMatk,2; } } } } - Id: 470177 AegisName: Walk_Of_DarkVoid Name: Void Darkness Boots Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bAllStats,2; skill "TF_HIDING",1; bonus2 bSubRace,RC_All,2; bonus bAspdRate,3*(.@r/3); if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=10) bonus2 bSubRace,RC_All,10; if (.@r>=12) { if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) skill "RG_RAID",1; else { skill "RG_RAID",1; bonus2 bSkillCooldown,"RG_RAID",60000; } } if (.@r>=13) bonus2 bSubRace,RC_All,3; - Id: 470178 AegisName: aegis_470178 Name: 1Lv Sandals Type: Armor Slots: 1 Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 470179 AegisName: aegis_470179 Name: Level 2 Sandals # !todo check english name Type: Armor Slots: 1 Locations: Shoes: true ArmorLevel: 2 Refineable: true - Id: 470180 AegisName: aegis_470180 Name: Starry Sky Twin Prime Type: Armor Weight: 600 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus2 bSubClass,Class_Normal,5; bonus2 bSubClass,Class_Boss,5; bonus2 bSubRace,RC_Player_Human,10; bonus bDelayrate,-4*.@r; if (.@r>=7) { bonus bAllStats,15; bonus bAtkRate,15; bonus bMatkRate,15; } if (.@r>=9) { bonus bAllStats,15; bonus bAtkRate,25; bonus bMatkRate,25; } - Id: 470181 AegisName: aegis_470181 Name: "[Not For Sale] Ancient Hero Boots" Type: Armor Weight: 600 Defense: 15 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,50; bonus bMaxHPrate,2*(.@r/3); bonus bMaxSPrate,.@r/3; if (.@r >= 9) { .@val = -300; if (.@r >= 12) { .@val -= 200; if (.@r >= 14) bonus bDelayrate,-5; } bonus bFixedCast,.@val; } - Id: 470182 AegisName: Agenda_Boots_LT_TW Name: Boots of Judgment-LT Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMdef,15; bonus bUseSPrate,10; bonus bBaseAtk,10*(.@r/2); bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_Holy,10*(.@r/3); bonus2 bMagicAtkEle,Ele_Neutral,10*(.@r/3); bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bAtkRate,7; bonus bMatkRate,7; if (.@r>=11) { bonus2 bAddRace,RC_All,10; bonus2 bMagicAddRace,RC_All,10; if (.@r>=12) { bonus2 bSkillCooldown,"SR_RIDEINLIGHTNING",-500; bonus2 bSkillCooldown,"AB_ADORAMUS",-1000; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,2; bonus bSMatk,2; if (.@g>=ENCHANTGRADE_C) { autobonus "{ bonus bAtkRate,25; bonus bMatkRate,25; }",30,10000,BF_WEAPON|BF_MAGIC; if (.@g>=ENCHANTGRADE_B) { if (.@r>=12) bonus bFixedCast,-500; } } } - Id: 470183 AegisName: Temporal_Boots_LT_TW Name: Exotic Temporal Boots-LT Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bAllStats,2; bonus bMdef,15; bonus bMaxHPrate,15; bonus bMaxSPrate,5; if (.@r>=10) { if (readparam(bStr)>=108) bonus bBaseAtk,80; if (readparam(bAgi)>=108) bonus bAspd,2; if (readparam(bVit)>=108) bonus bMaxHPrate,10; if (readparam(bInt)>=108) bonus bMatk,80; if (readparam(bDex)>=108) { bonus bFixedCast,-500; bonus bLongAtkRate,10; } if (readparam(bLuk)>=108) bonus bCritAtkRate,35; } if (.@r>=13) { if (readparam(bPow)>=60) bonus2 bAddSize,Size_All,15; if (readparam(bSta)>=60) { bonus bDelayrate,-5; bonus bPAtk,15; } if (readparam(bWis)>=60) { bonus bDelayrate,-5; bonus bSMatk,15; } if (readparam(bSpl)>=60) bonus2 bMagicAddSize,Size_All,15; if (readparam(bCon)>=60) bonus bAspdRate,10; if (readparam(bCrt)>=60) { bonus bFixedCast,-200; bonus bCritAtkRate,10; } } if (.@g>=ENCHANTGRADE_D) { bonus bRes,30; bonus bMRes,30; } if (.@g>=ENCHANTGRADE_C) { bonus bBaseAtk,50; bonus bMatk,50; } if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; } if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,7; bonus bSMatk,7; } - Id: 470184 AegisName: aegis_470184 Name: Shoes10 Type: Armor Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,10; - Id: 470185 AegisName: aegis_470185 Name: Shoes40 Type: Armor Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,30; - Id: 470186 AegisName: aegis_470186 Name: Shoes70 Type: Armor Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHP,100; - Id: 470187 AegisName: Beast_Area_Shoes Name: Beast Territory Boots Type: Armor Weight: 200 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bAddRace,RC_Angel,4*(.@r/3); bonus2 bAddRace,RC_Demon,4*(.@r/3); bonus2 bAddRace,RC_Dragon,4*(.@r/3); if (.@r>=7) { bonus bAtkRate,10; if (.@r>=9) { bonus bFixedCast,-500; if (.@r>=11) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=12) { bonus2 bAddEle,Ele_All,10; if (.@r>=13) { autobonus "{ bonus bPow,10; bonus bAtkRate,10; }",30,10000,BF_WEAPON; } } } } } - Id: 470192 AegisName: Fifth_Element Name: Fifth Element Type: Armor Weight: 400 Defense: 12 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("SO_SUMMON_AGNI")+getskilllv("SO_SUMMON_AQUA")+getskilllv("SO_SUMMON_VENTUS")+getskilllv("SO_SUMMON_TERA"); bonus bMdef,10+(4*.@a); bonus bInt,5*.@a; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bMatkRate,10*getskilllv("SO_EL_SYMPATHY"); bonus2 bSubRace,RC_Player_Human,10; if (getskilllv("SO_VARETYR_SPEAR") == 10) { bonus2 bFixedCastrate,"SO_VARETYR_SPEAR",-100; bonus2 bSkillCooldown,"SO_SUMMON_AQUA",-25000; } if (getskilllv("SO_PSYCHIC_WAVE") == 5) { bonus2 bSubClass,Class_Normal,5; bonus2 bSubClass,Class_Boss,5; } if (.@r>=5) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; bonus bDelayrate,-10; } if (.@r>=7) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; } - Id: 470193 AegisName: aegis_470193 Name: Military Boots TH Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("NC_AXEBOOMERANG"); .@b = getskilllv("NC_MAGMA_ERUPTION"); .@c = getskilllv("NC_POWERSWING"); bonus bBaseAtk,50; bonus bAspdRate,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"NC_AXETORNADO",7*.@a; bonus2 bSkillAtk,"NC_POWERSWING",15*.@a; bonus2 bIgnoreDefRaceRate,RC_All,8*.@b; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-8*.@b; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-8*.@b; if (getskilllv("NC_BOOSTKNUCKLE") < 1) { bonus bAtkRate,3*.@c; bonus2 bSubClass,Class_Boss,.@c; } if (.@r>=10) { bonus bBaseAtk,50; bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=12) bonus bMaxHP,150*(BaseLevel/2); - Id: 470194 AegisName: aegis_470194 Name: "[Not for Sale] Military Boots TH" Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("NC_AXEBOOMERANG"); .@b = getskilllv("NC_MAGMA_ERUPTION"); .@c = getskilllv("NC_POWERSWING"); bonus bBaseAtk,50; bonus bAspdRate,10; bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus2 bSkillAtk,"NC_AXETORNADO",7*.@a; bonus2 bSkillAtk,"NC_POWERSWING",15*.@a; bonus2 bIgnoreDefRaceRate,RC_All,8*.@b; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-8*.@b; bonus2 bIgnoreDefRaceRate,RC_Player_Human,-8*.@b; if (getskilllv("NC_BOOSTKNUCKLE") < 1) { bonus bAtkRate,3*.@c; bonus2 bSubClass,Class_Boss,.@c; } if (.@r>=10) { bonus bBaseAtk,50; bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=12) bonus bMaxHP,150*(BaseLevel/2); - Id: 470196 AegisName: Glacier_Boots Name: Glacier Boots Type: Armor Weight: 2000 Defense: 98 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,8; bonus bMaxSPrate,4+(.@r/2); bonus bDef,15*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,7; bonus bShortAtkRate,7; if (.@r>=9) { bonus bPAtk,3; if (.@r>=10) { bonus bAspdRate,7; bonus bDef,100; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,2; bonus bPow,2; bonus bCon,2; } } - Id: 470197 AegisName: D_Glacier_Boots Name: Dim Glacier Boots Type: Armor Weight: 2000 Defense: 126 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bPow,2; bonus bCon,2; if (.@r>=7) { bonus bPAtk,2; bonus bAtkRate,5; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,2; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-1000; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bAtkRate,1; if (.@g>=ENCHANTGRADE_A) { bonus bAtkRate,2; } } } } - Id: 470198 AegisName: D_Glacier_Shoes Name: Dim Glacier Shoes Type: Armor Weight: 1000 Defense: 90 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,2; bonus bCon,2; if (.@r>=7) { bonus bSMatk,2; bonus bMatkRate,5; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,2; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-1000; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,2; bonus bMatkRate,1; if (.@g>=ENCHANTGRADE_A) { bonus bMatkRate,2; } } } } - Id: 470199 AegisName: Wine_Shoes_LT Name: Crimson Magic Boots-LT Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMdef,15; bonus bAtkRate,5+(.@r/2); bonus bMatkRate,5+(.@r/2); bonus bPAtk,.@r/3; bonus bSMatk,.@r/3; bonus bLongAtkDef,5; bonus2 bSubEle,Ele_Neutral,5; if (.@r>=11) { bonus2 bSubEle,Ele_All,10; bonus2 bSubEle,Ele_Neutral,-10; if (.@r>=13) { bonus bDelayrate,-6; bonus bFixedCast,-600; } } if (.@g >= ENCHANTGRADE_D) { bonus bRes,30; bonus bMRes,30; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkDef,5; bonus2 bSubEle,Ele_Neutral,5; if (.@g >= ENCHANTGRADE_B) { bonus bDelayrate,-4; bonus bFixedCast,-200; if (.@g >= ENCHANTGRADE_A) { bonus2 bSubEle,Ele_All,5; if (.@r>=13) bonus bFixedCast,-200; } } } } - Id: 470204 AegisName: aegis_470204 Name: Moan of Corruption Type: Armor Weight: 300 Defense: 16 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,5; bonus bCon,3; bonus bUseSPrate,15; bonus bMatk,7*(.@r/3); if (.@r>=7) { bonus bSMatk,3; bonus bMatkRate,5; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bMagicAddSize,Size_Medium,15; bonus2 bMagicAddSize,Size_Large,15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; bonus bSpl,5; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-1000; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bSpl,8*(.@r/2); } } } } - Id: 470205 AegisName: Astraea_Shoes_LT Name: Asteria's Shoes-LT Type: Armor Weight: 250 Defense: 25 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bAllStats,3; bonus bMdef,10; if (.@r>=10) { if (readparam(bStr)>=100) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (readparam(bAgi)>=100) { bonus bAspdRate,15; if (readparam(bVit)>=100) { bonus2 bSubSize,Size_Medium,15; if (readparam(bInt)>=100) { bonus bFixedCast,-500; if (readparam(bDex)>=100) { bonus bDelayrate,-7; if (readparam(bLuk)>=100) { bonus bCritical,10; bonus bFlee2,5; } } } } } } } if (.@r>=13) { if (readparam(bPow)>=60) { bonus bShortAtkRate,15; if (readparam(bSta)>=60) { bonus bDelayrate,-8; bonus bRes,30; if (readparam(bWis)>=60) { bonus bDelayrate,-8; bonus bMRes,30; if (readparam(bSpl)>=60) { bonus2 bMagicAtkEle,Ele_All,15; if (readparam(bCon)>=60) { bonus bLongAtkRate,15; if (readparam(bCrt)>=60) { bonus bHPlus,10; bonus bCRate,10; } } } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bRes,30; bonus bMRes,30; } if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,5; bonus bSMatk,5; } if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; } if (.@g>=ENCHANTGRADE_A) { if (.@r>=13) { bonus bFixedCast,-500; } } - Id: 470206 AegisName: aaegis_470206 Name: Prana Boots Type: Armor Weight: 1000 Defense: 50 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,15; bonus2 bSubRace,RC_DemiHuman,5; bonus bHealPower2,30; bonus bAddItemHealRate,30; bonus bInt,3*.@r; bonus bDex,3*.@r; bonus bMaxHP,1000*.@r; if (.@r>=5) { bonus bDef,100; bonus bMaxHPrate,15; bonus2 bSubRace,RC_Player_Human,10; } if (.@r>=7) { bonus bDef,100; bonus bMaxHPrate,15; bonus2 bSubClass,Class_Boss,5; bonus2 bSubClass,Class_Normal,5; } - Id: 470207 AegisName: FateSin_Boots_CD Name: Boots of Good and Evil (Cardinal) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Priest: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bMatkRate,7; bonus bAtkRate,7; if (.@r>=9) { bonus bShortAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470208 AegisName: FateSin_Boots_IQ Name: Boots of Good and Evil (Inquisitor) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Monk: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470209 AegisName: FateSin_Boots_SOA Name: Boots of Good and Evil (Soul Ascetic) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: SoulLinker: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bMatkRate,7; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470210 AegisName: FateSin_Boots_BO Name: Boots of Good and Evil (Biolo) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Alchemist: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470211 AegisName: FateSin_Boots_DK Name: Boots of Good and Evil (Dragon Knight) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Knight: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470212 AegisName: FateSin_Boots_SH Name: Boots of Good and Evil (Spirit Handler) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Summoner: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; bonus bMatkRate,7; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470213 AegisName: FateSin_Boots_EM Name: Boots of Good and Evil (Elemental Master) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Sage: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470214 AegisName: FateSin_Boots_WH Name: Boots of Good and Evil (Windhawk) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Hunter: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470215 AegisName: FateSin_Boots_SKE Name: Boots of Good and Evil (Sky Emperor) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: StarGladiator: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470221 AegisName: FateSin_Boots_MT Name: Boots of Good and Evil (Meister) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Blacksmith: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470222 AegisName: FateSin_Boots_SHC Name: Boots of Good and Evil (Shadow Cross) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Assassin: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470223 AegisName: FateSin_Boots_SS Name: Boots of Good and Evil (Shinkiro & Shiranui) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470224 AegisName: FateSin_Boots_ABC Name: Boots of Good and Evil (Abyss Chaser) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Rogue: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470225 AegisName: FateSin_Boots_TR Name: Boots of Good and Evil (Troubadour & Trouvere) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: BardDancer: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470226 AegisName: FateSin_Boots_HN Name: Boots of Good and Evil (Hyper Novice) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: SuperNovice: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470227 AegisName: aegis_470227 Name: Golden Attack Upgrade Boots Type: Armor Defense: 16 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | bonus bHPrecovRate,15; bonus bSPrecovRate,7; if (getrefine()>=5) { bonus bSpeedRate,25; bonus bDex,2; bonus bStr,2; } - Id: 470228 AegisName: aegis_470228 Name: Golden Magic Upgrade Shoes Type: Armor Defense: 16 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 10 Refineable: true Script: | bonus bHPrecovRate,12; bonus bSPrecovRate,10; if (getrefine()>=5) { bonus bSpeedRate,25; bonus bInt,2; } - Id: 470229 AegisName: aegis_470229 Name: Shoes Type: Armor Weight: 400 Defense: 10 Slots: 1 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 470230 AegisName: aegis_470230 Name: Boots Type: Armor Weight: 600 Defense: 16 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Gunslinger: true Hunter: true Knight: true Merchant: true Rebellion: true Rogue: true StarGladiator: true Swordman: true Taekwon: true Thief: true Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 470231 AegisName: aegis_470231 Name: Sandals Type: Armor Weight: 200 Defense: 5 Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 470232 AegisName: aegis_470232 Name: Shoes Type: Armor Weight: 400 Defense: 10 Jobs: All: true Novice: false SuperNovice: false Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 470233 AegisName: aegis_470233 Name: Boots Type: Armor Weight: 600 Defense: 16 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Gunslinger: true Hunter: true Knight: true Merchant: true Rebellion: true Rogue: true StarGladiator: true Swordman: true Taekwon: true Thief: true Locations: Shoes: true ArmorLevel: 1 Refineable: true - Id: 470234 AegisName: aegis_470234 Name: Greaves Type: Armor Weight: 750 Defense: 27 Jobs: Crusader: true Knight: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 65 Refineable: true - Id: 470235 AegisName: aegis_470235 Name: Novice Shoes Type: Armor Weight: 500 Defense: 8 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 40 Refineable: true Script: | bonus bMaxHPrate,5; - Id: 470236 AegisName: FateSin_Boots_IG Name: Boots of Good and Evil (Imperial Guard) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Crusader: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470237 AegisName: FateSin_Boots_AG Name: Boots of Good and Evil (Arch Mage) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Wizard: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bMagicAtkEle,Ele_Dark,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470238 AegisName: FateSin_Boots_NW Name: Boots of Good and Evil (Night Watch) Type: Armor Weight: 600 Defense: 20 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHP,500; bonus bMaxSP,100; bonus bMaxHPrate,(.@r/2); bonus bMaxSPrate,(.@r/2); if (.@r>=7) { bonus bAtkRate,7; if (.@r>=9) { bonus bLongAtkRate,10; if (.@r>=11) { bonus bFixedCast,-500; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,50; bonus bRes,50; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; if (.@g>=ENCHANTGRADE_A) { bonus bFixedCast,-500; } } } } - Id: 470245 AegisName: aegis_470245 Name: "[Not For Sale] Destroyer Boots" Type: Armor Weight: 200 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,30; bonus2 bMagicAddRace,RC_Angel,4*(.@r/3); bonus2 bMagicAddRace,RC_Demon,4*(.@r/3); bonus2 bMagicAddRace,RC_Undead,4*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Dark,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; } if (.@r>=9) bonus bFixedCast,-500; if (.@r>=11) { bonus2 bSkillCooldown,"WL_HELLINFERNO",-2000; bonus2 bSkillCooldown,"WL_CRIMSONROCK",-1000; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-1000; } if (.@r>=12) { bonus2 bSkillAtk,"WL_COMET",30; bonus2 bSkillAtk,"WL_HELLINFERNO",30; bonus2 bSkillAtk,"SO_EARTHGRAVE",30; } - Id: 470247 AegisName: aegis_470247 Name: Knight's Boots of Midgard Type: Armor Weight: 1000 Defense: 20 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 130 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bBaseAtk,10*(.@r/2); bonus bMatk,10*(.@r/2); bonus bSpl,.@r/3; bonus bPow,.@r/3; bonus bCon,.@r/3; if (.@r>=7) { bonus bAtkRate,7; bonus bMatkRate,7; if (.@r>=9) { bonus bFixedCast,-300; if (.@r>=11) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=13) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } } } } if (.@g >= ENCHANTGRADE_D) { bonus bRes,50; bonus bMRes,50; } if (.@g >= ENCHANTGRADE_C) { bonus2 bAddEle,Ele_All,8; bonus2 bMagicAddEle,Ele_All,8; } if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; } if (.@g >= ENCHANTGRADE_A) { if (.@r>=13) { bonus bFixedCast,-700; } } - Id: 470248 AegisName: aegis_470248 Name: Dragon Slayer Shoes Type: Armor Weight: 900 Defense: 30 Slots: 1 Locations: Shoes: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; if (.@r>=7) { bonus2 bExpAddRace,RC_All,8; if (.@r>=9) { bonus2 bAddRace,RC_Dragon,15; bonus2 bAddRace,RC_Insect,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Insect,15; if (.@r>=11) { bonus2 bSubRace,RC_Dragon,20; bonus2 bSubRace,RC_Insect,20; } } } - Id: 470249 AegisName: aegis_470249 Name: "[Not For Sale] Dragon Slayer Shoes" Type: Armor Weight: 900 Defense: 30 Slots: 1 Locations: Shoes: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 30 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000; bonus bMaxSP,200; if (.@r>=7) { bonus2 bExpAddRace,RC_All,8; if (.@r>=9) { bonus2 bAddRace,RC_Dragon,15; bonus2 bAddRace,RC_Insect,15; bonus2 bMagicAddRace,RC_Dragon,15; bonus2 bMagicAddRace,RC_Insect,15; if (.@r>=11) { bonus2 bSubRace,RC_Dragon,20; bonus2 bSubRace,RC_Insect,20; } } } - Id: 470265 AegisName: FuriousBoots Name: Furious Boots Type: Armor Weight: 1500 Defense: 30 Slots: 1 Locations: Shoes: true ArmorLevel: 2 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=230) { bonus2 bAddClass,Class_Normal,5; bonus2 bMagicAddClass,Class_Normal,5; bonus2 bAddClass,Class_Boss,5; bonus2 bMagicAddClass,Class_Boss,5; } if (.@r>=7) { bonus bMatkRate,5; bonus bAtkRate,5; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=10) { bonus bFixedCast,-700; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; bonus bShortAtkRate,10; bonus bLongAtkRate,10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bFixedCast,-300; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,5; bonus bSMatk,5; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,2; bonus bSMatk,2; } } } } - Id: 480000 AegisName: Atker_Manteau Name: Attacker Booster Manteau Type: Armor Defense: 30 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bAspdRate,5; .@r = getrefine(); if (.@r>=3) { bonus bCritical,.@r/3*2; } if (.@r>=7) { bonus bCritAtkRate,5; } if (.@r>=9) { bonus bDelayrate,-10; } - Id: 480001 AegisName: Ele_Muffler Name: Elemental Booster Muffler Type: Armor Defense: 20 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bVariableCastrate,-5; .@r = getrefine(); if (.@r>=3) { bonus bMatk,.@r/3*4; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Neutral,5; } if (.@r>=9) { bonus bDelayrate,-10; } - Id: 480002 AegisName: Defn_Muffler Name: Defender Booster Muffler Type: Armor Defense: 25 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bVariableCastrate,-5; .@r = getrefine(); if (.@r>=3) { bonus bMatk,.@r/3*4; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Undead,5; bonus2 bMagicAtkEle,Ele_Poison,5; bonus2 bMagicAtkEle,Ele_Dark,5; bonus2 bMagicAtkEle,Ele_Ghost,5; bonus2 bMagicAtkEle,Ele_Holy,5; } if (.@r>=9) { bonus bDelayrate,-10; } - Id: 480003 AegisName: Ran_Manteau Name: Ranger Booster Manteau Type: Armor Defense: 30 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | bonus bVariableCastrate,-5; .@r = getrefine(); if (.@r>=3) { bonus bBaseAtk,.@r/3*2; } if (.@r>=7) { bonus bLongAtkRate,5; } if (.@r>=9) { bonus bDelayrate,-10; } - Id: 480006 AegisName: Capricon_Manteau_J Name: Capricon Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMatk,20; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) { bonus bBaseAtk,30; bonus bMatk,30; bonus bAspdRate,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; if (.@r>=8) bonus bFlee2,30; } - Id: 480007 AegisName: Siege_Muffler_2Tier Name: Intermediate Guild Member's Muffler Type: Armor Weight: 150 Defense: 7 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,250; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus bMdef,2; if (.@r>=7) { bonus bBaseAtk,35; bonus bMatk,35; } - Id: 480008 AegisName: Siege_Manteau_2Tier Name: Intermediate Guild Member's Manteau Type: Armor Weight: 300 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,350; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus bMdef,2; if (.@r>=7) { bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; } - Id: 480009 AegisName: Virgo_Manteau_J Name: Virgo Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Priest) { bonus bMatk,30; bonus2 bSubClass,Class_Boss,5; bonus bNoCastCancel; if (.@r>=8) bonus bAspdRate,20; } - Id: 480011 AegisName: Skin_Of_AzidaHaka Name: Azi Dahaka's Skin Type: Armor Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = (readparam(bVit)+readparam(bLuk))/20; bonus bMdef,10; bonus bVit,5; bonus bLuk,5; bonus2 bSubRace,RC_Brute,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Plant,5; bonus2 bSubClass,Class_Boss,5; if (.@r>=7) bonus2 bResEff,Eff_Silence,5000; if (.@r>=8) { bonus bAspdRate,2*.@a; bonus bVariableCastrate,-2*.@a; } if (.@r>=9) bonus2 bResEff,Eff_Silence,5000; - Id: 480012 AegisName: Noblesse_Attack_Manteau Name: Noblesse Attack Manteau Type: Armor Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAspdRate,3; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddClass,Class_All,5; - Id: 480014 AegisName: Noblesse_Magic_Manteau Name: Noblesse Magic Manteau Type: Armor Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bVariableCastrate,-5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,5; - Id: 480015 AegisName: Kukulkan_Feather_TW Name: Kukulkan Feather Type: Armor Weight: 2000 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); if (.@r>=5) { bonus bAtkRate,1; bonus bMatkRate,1; } if (.@r>=7) bonus bAllStats,1; if (.@r>=9) { bonus2 bAddSize,Size_Medium,5; bonus2 bMagicAddSize,Size_Medium,5; } if (.@r>=11) bonus bLongAtkRate,12; if (.@r>=12) bonus bAspd,1; if (.@r>=13) skill "RG_CLOSECONFINE",1; - Id: 480016 AegisName: Imperial_Attack_Manteau Name: Imperial Attack Manteau Type: Armor Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddClass,Class_All,7; - Id: 480017 AegisName: Imperial_Magic_Manteau Name: Imperial Magic Manteau Type: Armor Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 125 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bVariableCastrate,-7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,7; - Id: 480018 AegisName: Grace_Attack_Manteau Name: Grace Attack Manteau Type: Armor Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAspdRate,7; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bAddClass,Class_All,10; - Id: 480019 AegisName: Grace_Magic_Manteau Name: Grace Magic Manteau Type: Armor Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bVariableCastrate,-10; if (.@r>=7) bonus bDelayrate,-5; if (.@r>=9) bonus2 bMagicAtkEle,Ele_All,10; - Id: 480020 AegisName: Auto_Engine_A Name: Automatic Engine Wing Type A Type: Armor Weight: 900 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxHP,100*(.@r/2); if (.@r>=7) { bonus bAspdRate,7; } - Id: 480021 AegisName: Auto_Engine_B Name: Automatic Engine Wing Type B Type: Armor Weight: 900 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 160 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxHP,100*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-7; } - Id: 480022 AegisName: Aries_Manteau_J Name: Aries Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus2 bSubClass,Class_Boss,5; if (.@r>=8) bonus bLongAtkRate,20; } - Id: 480023 AegisName: Arabian_Manteau Name: Arabian Manteau Type: Armor Defense: 10 Weight: 300 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@cri = 0; .@criatk = 5; bonus bMaxHPrate,10; if (.@r >= 7) { .@cri += 5; .@criatk += 5; } if (.@r >= 8) { .@cri += 10; .@criatk += 20; } if (.@r >= 9) { .@cri += 20; .@criatk += 30; } if (.@r >= 10) { .@cri += 30; .@criatk += 50; } bonus bCritical,.@cri; bonus bCritAtkRate,.@criatk; - Id: 480024 AegisName: Subject_Cape_TW Name: Subject Cape # !todo check english name Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoSell: true Script: | .@r = getrefine(); bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; bonus bMdef,.@r/2; bonus bDelayrate,-.@r/2; - Id: 480025 AegisName: Owl_Baron_Mantle Name: Owl Baron Mantle Type: Armor Weight: 100 Defense: 5 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bInt,2; bonus bMdef,5; bonus bAspdRate,10; bonus bBaseAtk,6*.@r; bonus bMatk,6*.@r; if (.@r>=10) { skill "PR_LEXAETERNA",1; autobonus2 "{ bonus bAspdRate,40; }",50,30000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_HASTEUP; }"; } else if (.@r>=9) autobonus2 "{ bonus bAspdRate,20; }",50,30000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_HASTEUP; }"; else if (.@r>=7) autobonus2 "{ bonus bAspdRate,10; }",50,30000,BF_WEAPON|BF_MAGIC,"{ specialeffect2 EF_HASTEUP; }"; - Id: 480026 AegisName: Gemini_Manteau_J Name: Gemini Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMatk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; bonus2 bSubEle,Ele_Neutral,20; if ((eaclass()&EAJL_THIRD) && (BaseJob == Job_Bard || BaseJob == Job_Dancer)) { bonus bBaseAtk,30; bonus bMatk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; if (.@r>=8) bonus bLongAtkRate,20; } - Id: 480041 AegisName: Pisces_Manteau_J Name: Pisces Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMatk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Sage) { bonus bMatk,30; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bSubEle,Ele_Earth,20; if (.@r>=8) bonus bAspdRate,20; } - Id: 480045 AegisName: Guardian_Soul Name: Guardian Soul Type: Armor Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@a = (readparam(bStr)+readparam(bLuk))/18; .@b = (readparam(bAgi)+readparam(bVit))/18; .@c = (readparam(bInt)+readparam(bDex))/18; bonus bMdef,10; skill "WZ_HEAVENDRIVE",3; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Holy,7; bonus2 bSubEle,Ele_Ghost,7; bonus bBaseAtk,.@a*15; bonus bDelayrate,-.@a; bonus2 bSubEle,Ele_Dark,.@a*7; bonus2 bSubEle,Ele_Undead,.@a*7; bonus bAspdRate,.@b*2; bonus bMaxHPrate,.@b*2; bonus2 bSubEle,Ele_Water,.@b*7; bonus2 bSubEle,Ele_Fire,.@b*7; bonus bMatk,.@c*15; bonus bVariableCastrate,-.@c; bonus2 bSubEle,Ele_Earth,.@c*7; bonus2 bSubEle,Ele_Wind,.@c*7; - Id: 480050 AegisName: Sagittarius_Manteau_J Name: Sagittarius Manteau Type: Armor Buy: 20 Weight: 300 Defense: 25 Locations: Garment: true ArmorLevel: 1 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bBaseAtk,20; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-5; bonus2 bSubEle,Ele_Neutral,20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Hunter) { bonus bBaseAtk,30; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkRate,30; if (.@r>=8) bonus bPerfectHitAddRate,20; } - Id: 480051 AegisName: Kingly_Manteau Name: Monarch Manteau Type: Armor Buy: 20 Weight: 1000 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | bonus2 bSubEle,Ele_All,5; bonus2 bSubClass,Class_Normal,5; bonus bLongAtkDef,10; if (getrefine()>=7) { bonus2 bSubEle,Ele_Earth,30; bonus2 bSubEle,Ele_Fire,30; bonus2 bHPRegenRate,2000,10000; bonus2 bSPRegenRate,100,10000; } - Id: 480052 AegisName: C_Sakura_Fes_TW Name: Costume Sakura Ribbon Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 69 - Id: 480053 AegisName: Behemoth_Muffler Name: Behemoth Muffler Type: Armor Weight: 200 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bAspdRate,.@r; bonus2 bAddEle,Ele_Earth,15+.@r; bonus2 bMagicAddEle,Ele_Earth,15+.@r; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; if (.@r>=10) bonus2 bSubEle,Ele_Earth,100; - Id: 480054 AegisName: Morrigane_Manyeau_IL Name: Illusion Morrigane's Manteau Type: Armor Weight: 600 Defense: 12 Slots: 1 Jobs: All: true Novice: false Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bLuk,5; bonus bFlee,20; if (.@r>=7) { bonus2 bAddRace,RC_Fish,5; bonus2 bAddRace,RC_Insect,5; bonus2 bAddRace,RC_Demon,5; bonus2 bAddRace,RC_DemiHuman,5; } if (.@r>=9) { bonus2 bAddRace,RC_Fish,10; bonus2 bAddRace,RC_Insect,10; bonus2 bAddRace,RC_Demon,10; bonus2 bAddRace,RC_DemiHuman,10; } - Id: 480055 AegisName: C_Wing_Of_Angel_Move_RD Name: Costume Sky and Sky Red Angel Wings # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 72 - Id: 480056 AegisName: C_Wing_Of_Angel_Move_BK Name: Costume Heavenly Fallen Angel Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 73 - Id: 480058 AegisName: C_Wing_Of_Angel_Move_GD Name: Costume Wavy Golden Angel Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 75 - Id: 480062 AegisName: E_Illusion_Engine_A Name: Illusion Engine Wing Type A (Bound) Type: Armor Defense: 50 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000+100*(.@r/2); if (.@r>=7) { bonus bAspdRate,5; } - Id: 480063 AegisName: E_Illusion_Engine_B Name: Illusion Engine Wing Type A (Bound) Type: Armor Defense: 50 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1000+100*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-5; } - Id: 480064 AegisName: Storm_Muffler Name: Storm Muffler Type: Armor Defense: 12 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@lvl = getskilllv("WM_FRIGG_SONG"); bonus bMaxHPrate,2; bonus bMaxSPrate,2; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bLongAtkRate,2+(4*.@lvl); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",2*.@lvl; if (.@r>=5) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bLongAtkRate,3; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bLongAtkRate,5; } if (getskilllv("WM_UNLIMITED_HUMMING_VOICE") == 5) { bonus bPerfectHitAddRate,20; bonus bSPDrainValue,2; } if (getskilllv("WM_GLOOMYDAY") == 5) { bonus bDelayrate,-10; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } - Id: 480065 AegisName: MD_Geffen_Hood Name: Magic Barrier Manteau Type: Armor Weight: 700 Defense: 75 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxHPrate,(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=9) { bonus bShortAtkRate,5; if (.@r>=11) { bonus bShortAtkRate,7; } } - Id: 480066 AegisName: MD_Geffen_Hood2 Name: Magic Barrier Muffler Type: Armor Weight: 650 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1500; bonus bMaxHPrate,(.@r/2); bonus bVariableCastrate,-2*(.@r/3); if (.@r>=9) { bonus bMatkRate,7; bonus bHealPower,15; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,7; } } - Id: 480067 AegisName: MD_Geffen_Hood3 Name: Ravage Magic Manteau Type: Armor Weight: 650 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1200; bonus bMaxHPrate,(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=9) { bonus bLongAtkRate,5; if (.@r>=11) { bonus bLongAtkRate,7; } } - Id: 480068 AegisName: MD_Geffen_Hood4 Name: Ravage Magic Muffler Type: Armor Weight: 800 Defense: 90 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,2000; bonus bMaxHPrate,(.@r/2); bonus bAspdRate,(.@r/3); bonus bVariableCastrate,-(.@r/3); if (.@r>=9) { bonus2 bAddSize,Size_All,3; bonus2 bMagicAddSize,Size_All,3; if (.@r>=11) { autobonus "{ bonus2 bHPRegenRate,350,1000; bonus2 bSPRegenRate,20,1000; }",1,10000,BF_WEAPON|BF_MAGIC; } } - Id: 480069 AegisName: C_Wing_Of_Angel_Move Name: Costume Heavenly Angel Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 61 - Id: 480071 AegisName: Calabash Name: Costume Vial Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 82 - Id: 480075 AegisName: Baby_Boar_Bib Name: Baby Boar Bib Type: Armor Weight: 100 Defense: 12 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bVariableCastrate,"SU_PICKYPECK",-10; bonus2 bVariableCastrate,"SU_SCAROFTAROU",-10; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-10; bonus2 bVariableCastrate,"SU_SVG_SPIRIT",-10; bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_SCAROFTAROU",15; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SVG_SPIRIT",15; bonus bAspdRate,2*getskilllv("SU_HISS"); bonus bPerfectHitAddRate,4*getskilllv("SU_POWEROFFLOCK"); bonus2 bAddSize,Size_All,2*getskilllv("SU_POWEROFFLOCK"); bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",200*getskilllv("SU_SPIRITOFLIFE"); if (.@r>=9) { bonus bMaxHPrate,10; bonus2 bVariableCastrate,"SU_PICKYPECK",-20; bonus2 bVariableCastrate,"SU_SCAROFTAROU",-20; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-20; bonus2 bVariableCastrate,"SU_SVG_SPIRIT",-20; } if (.@r>=11) { bonus bMaxHPrate,5; bonus2 bVariableCastrate,"SU_PICKYPECK",-20; bonus2 bVariableCastrate,"SU_SCAROFTAROU",-20; bonus2 bVariableCastrate,"SU_LUNATICCARROTBEAT",-20; bonus2 bVariableCastrate,"SU_SVG_SPIRIT",-20; } - Id: 480076 AegisName: Temporal_Cape_TW Name: Temporal Cape # !todo check english name Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoSell: true Script: | .@r = getrefine(); bonus bMdef,10; bonus bAtkRate,.@r/2; bonus bMatkRate,.@r/2; bonus bLongAtkRate,.@r/2; bonus bCritical,3*(.@r/2); bonus bCritAtkRate,.@r/2; bonus2 bAddEle,Ele_All,3*(.@r/4); bonus2 bMagicAddEle,Ele_All,3*(.@r/4); bonus bMaxHPrate,3*(.@r/4); bonus bAspdRate,3*(.@r/4); bonus bDelayrate,-3*(.@r/4); bonus bCritAtkRate,3*(.@r/4); if (.@r >= 9) { bonus bAtkRate,7; bonus bMatkRate,7; } - Id: 480077 AegisName: Magma_Manteau Name: Magma Manteau Type: Armor Weight: 300 Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMdef,5; bonus bMaxHPrate,2; bonus bMaxSPrate,2; bonus2 bAddSize,Size_All,5; bonus2 bSubClass,Class_Boss,5; bonus2 bSkillAtk,"NC_AXETORNADO",20*getskilllv("NC_AXEBOOMERANG"); bonus2 bSkillAtk,"NC_POWERSWING",20*getskilllv("NC_AXEBOOMERANG"); if (getskilllv("NC_MAGICDECOY") == 5) bonus bPerfectHitAddRate,50; if (getskilllv("NC_MAGMA_ERUPTION") == 5) { bonus2 bSubEle,Ele_Fire,50; bonus2 bSubEle,Ele_Earth,50; } if (.@r>=5) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bAspdRate,5; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bAspdRate,5; } - Id: 480081 AegisName: Glotoneria Name: Glotoneria Type: Armor Buy: 20 Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,3; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bAddSize,Size_All,getskilllv("SC_AUTOSHADOWSPELL"); bonus bPerfectHitAddRate,2*getskilllv("SC_AUTOSHADOWSPELL"); bonus2 bSkillAtk,"SC_TRIANGLESHOT",50*getskilllv("SC_MAELSTROM"); bonus2 bSkillAtk,"SC_FEINTBOMB",15*getskilllv("SC_MAELSTROM"); if (getskilllv("SC_TRIANGLESHOT") == 10) { bonus2 bSubEle,Ele_Wind,50; bonus2 bSubEle,Ele_Earth,50; } if (getskilllv("SC_FEINTBOMB") == 10) { bonus bSPDrainValue,2; bonus bHPGainValue,100; bonus bSPGainValue,10; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bAgi,10; bonus bDex,10; } if (.@r>=9) { bonus bMaxHPrate,7; bonus bAgi,10; bonus bDex,10; } - Id: 480082 AegisName: C_Sandalphon_Wing_TW Name: Costume Sandalphon Wing # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 88 - Id: 480083 AegisName: Egirnion_Manteau Name: Aegirnion Manteau Type: Armor Weight: 300 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 140 Refineable: true Script: | bonus bMaxHPrate,10; bonus bMaxSPrate,5; if (getrefine()>=9) { bonus bVariableCastrate,-10; } - Id: 480084 AegisName: Fafnir_Manteau Name: Fafnir Breath Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,3; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,10; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",getskilllv("RK_DRAGONHOWLING")*20; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",getskilllv("RK_DRAGONHOWLING")*20; if (getskilllv("RK_DRAGONTRAINING") == 5) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; } if (getskilllv("RK_DRAGONBREATH_WATER") == 10) skill "SA_DELUGE",5; if (getskilllv("RK_DRAGONBREATH") == 10) skill "SA_VOLCANO",5; if (.@r>=7) { bonus bAspdRate,5; bonus bLongAtkRate,10; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Water,20; } if (.@r>=9) { bonus bAspdRate,7; bonus bLongAtkRate,10; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Water,20; } - Id: 480085 AegisName: Devil_Manteau_JP Name: Devils Garment Type: Armor Weight: 300 Defense: 25 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,2; bonus bMaxSPrate,2; bonus2 bAddSize,Size_All,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; if (getskilllv("SR_EARTHSHAKER") >= 5) bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-200; bonus2 bSkillAtk,"SR_HOWLINGOFLION",15*getskilllv("SR_RAMPAGEBLASTER"); bonus bPerfectHitAddRate,4*getskilllv("SR_RIDEINLIGHTNING"); if (.@r>=5) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; bonus bVariableCastrate,-5; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; bonus bVariableCastrate,-5; } - Id: 480086 AegisName: C_CAPOO_Bag_TW Name: Costume CAPOO Bag # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 89 - Id: 480088 AegisName: Ultio_Cape_TW Name: Ultio Holy Magic Cloak Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_Holy,3*(.@r/4); bonus2 bMagicAtkEle,Ele_Neutral,3*(.@r/4); if (.@r>=9) bonus bMatkRate,10; if (.@r>=11) bonus bDelayrate,-12; if (.@r>=13) bonus2 bIgnoreMdefClassRate,Class_Boss,10; - Id: 480090 AegisName: Gray_W_Muffler Name: Gray Wolf Muffler Type: Armor Weight: 900 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,1500+100*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-7; } - Id: 480091 AegisName: Gray_W_Manteau Name: Gray Wolf Manteau Type: Armor Weight: 900 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 190 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,2500+150*(.@r/2); if (.@r>=7) { bonus bAspdRate,7; } - Id: 480092 AegisName: C_Sudden_Wealth_J Name: Costume Sudden Wealth # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 96 Script: | hateffect HAT_EF_C_SUDDEN_WEALTH_TW,true; UnEquipScript: | hateffect HAT_EF_C_SUDDEN_WEALTH_TW,false; - Id: 480093 AegisName: C_Scepter Name: Costume Scepter Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 97 - Id: 480094 AegisName: ErymanthianSkin Name: Erymanthian Skin Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableGarment; bonus bDex,6; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bDelayrate,-3; if (.@r>=7) { bonus bDex,12; bonus bAspdRate,5; bonus bLongAtkDef,10; } if (.@r>=9) { bonus bDex,12; bonus bAspdRate,7; bonus bLongAtkDef,10; } if (getskilllv("RA_UNLIMIT")>=5) bonus2 bSkillCooldown,"RA_ARROWSTORM",-300; if (getskilllv("RA_WUGRIDER")>=3) bonus bMaxHP,10000; bonus2 bAddSize,Size_All,2*getskilllv("RA_AIMEDBOLT"); if (getskilllv("RA_ELECTRICSHOCKER")>=5) bonus2 bSubEle,Ele_Fire,100; - Id: 480095 AegisName: C_Giant_White_Rabbit Name: Costume Giant White Rabbit Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 98 - Id: 480096 AegisName: C_Put_On_Coat Name: Costume Haori Coat Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 99 - Id: 480097 AegisName: C_Snow_Powder Name: Costume Snow Powder Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect HAT_EF_SNOW_POWDER,true; UnEquipScript: | hateffect HAT_EF_SNOW_POWDER,false; - Id: 480103 AegisName: 1Para_Manteau_A Name: Paradise Manteau Type: Armor Defense: 8 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,20; bonus bHit,15; bonus bHit,(min(BaseLevel,100)/5); if (BaseLevel>=30) bonus bAspdRate,5; if (BaseLevel>=45) bonus bAspdRate,5; if (BaseLevel>=85) bonus bAspd,1; - Id: 480104 AegisName: 1Para_Manteau_B Name: Paradise Muffler Type: Armor Defense: 4 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,20; bonus bFlee,(min(BaseLevel,100)/5); if (BaseLevel>=30) bonus bVariableCastrate,-5; if (BaseLevel>=45) bonus bVariableCastrate,-5; if (BaseLevel>=85) bonus bVariableCastrate,-5; - Id: 480105 AegisName: 2Para_Manteau_A Name: Advanced Paradise Manteau Type: Armor Defense: 14 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; bonus2 bSubEle,Ele_Neutral,20; bonus bAspdRate,10; bonus bHit,35; bonus bVariableCastrate,-1*(min(.@l,150)/10); if (.@l >= 105) bonus bAspdRate,5; if (.@l >= 110) bonus bVariableCastrate,-5; if (.@l >= 120) bonus bDelayrate,-5; if (.@l >=130) bonus bDelayrate,-5; - Id: 480106 AegisName: 2Para_Manteau_B Name: Advanced Paradise Muffler Type: Armor Defense: 10 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bSubEle,Ele_Neutral,20; bonus bFlee,40; bonus bVariableCastrate,-15; bonus bAspdRate,(min(BaseLevel,150)/10); if (BaseLevel>=105) bonus bAspdRate,5; if (BaseLevel>=110) bonus bVariableCastrate,-5; if (BaseLevel>=120) bonus bDelayrate,-5; if (BaseLevel>=130) bonus bDelayrate,-5; - Id: 480107 AegisName: C_Kings_Twin_Sword Name: Costume Kings Twin Sword Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 104 - Id: 480108 AegisName: C_Poring_Basket Name: Costume Poring Basket Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 103 - Id: 480110 AegisName: C_Adventure_Cat_Bag Name: Costume Adventure Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 107 - Id: 480111 AegisName: C_Flower_Wing Name: Costume Flower Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 106 - Id: 480114 AegisName: Striking_Mikoshi Name: Striking Mikoshi Type: Armor Weight: 600 Defense: 60 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubClass,Class_Normal,5; bonus2 bSubClass,Class_Boss,5; bonus2 bAddRace,RC_All,.@r*2; bonus bDelayrate,-.@r; if (.@r>=6) { bonus bAspdRate,10; bonus bPerfectHitAddRate,25; } if (.@r>=8) { skill "AC_CONCENTRATION",10; if (getskilllv("AC_CONCENTRATION") == 10) { bonus bBaseAtk,50; bonus bFlee,50; } } UnEquipScript: | sc_end SC_CONCENTRATION; - Id: 480115 AegisName: Light_Of_World_TW Name: Light of the World Asprika Type: Armor Weight: 400 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bMaxHPrate,20; bonus bFlee,40; bonus bMdef,10; skill "AL_TELEPORT",1; bonus bDelayrate,-10; bonus2 bSubEle,Ele_All,30; bonus bAtkRate,30; bonus bMatkRate,30; - Id: 480116 AegisName: Cursed_Devils_Manteau_A Name: Awakening Magic Curse Cloak Type: Armor Buy: 20 Weight: 1000 Defense: 16 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_All,5; bonus bLongAtkDef,10; bonus bMaxHPrate,3*.@r; if (.@r>=7) skill "WZ_HEAVENDRIVE",3; - Id: 480117 AegisName: C_Elec_Guitar_Of_Phen Name: Costume Electric Guitar Of Phen # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 108 - Id: 480118 AegisName: C_G_DaeHyon_Sword_TW Name: Costume General Daehyon Falchion Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 114 - Id: 480119 AegisName: C_Niflheim_Key Name: Costume Niflheim Key Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 110 - Id: 480120 AegisName: Guardian_Soul_TH Name: Guardian Soul Type: Armor Weight: 1000 Defense: 25 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableGarment; skill "WZ_HEAVENDRIVE",1; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; if (.@r>=7) { .@a = (readparam(bLuk)+readparam(bStr))/18; .@b = (readparam(bAgi)+readparam(bVit))/18; .@c = (readparam(bInt)+readparam(bDex))/18; .@bonus = (.@r>=12 ? 5 : 3); bonus bDelayrate,-.@a; bonus2 bSubEle,Ele_Holy,.@bonus*.@a; bonus2 bSubEle,Ele_Dark,.@bonus*.@a; bonus bAspdRate,.@b; bonus bMaxHPrate,(.@r>=12?2:1)*.@b; bonus2 bSubEle,Ele_Fire,.@bonus*.@b; bonus2 bSubEle,Ele_Water,.@bonus*.@b; bonus bVariableCastrate,-.@c; bonus2 bSubEle,Ele_Wind,.@bonus*.@c; bonus2 bSubEle,Ele_Earth,.@bonus*.@c; } - Id: 480121 AegisName: C_Striking_Mikoshi Name: Costume Striking Mikoshi # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 111 - Id: 480122 AegisName: C_Samba_Carnival Name: Costume Samba Carnival Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 112 - Id: 480123 AegisName: C_Nydhog_Rumor Name: Costume Nydhog's Rumor Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 113 - Id: 480124 AegisName: Cvt_Physical_Wing Name: Convertible Physical Wing Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,(.@r/2); bonus bBaseAtk,5*(.@r/2); bonus2 bAddSize,Size_All,3*(.@r/3); if (.@r>=7) { bonus bAspdRate,7; if (.@r>=9) { bonus2 bSubEle,Ele_Neutral,7; if (.@r>=11) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; } } } - Id: 480125 AegisName: Cvt_Magical_Wing Name: Convertible Magical Wing Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bMatk,5*(.@r/2); bonus2 bMagicAddSize,Size_All,(.@r/3)*3; if (.@r>=7) { bonus bVariableCastrate,-7; if (.@r>=9) { bonus2 bSubEle,Ele_Neutral,7; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_All,10; } } } - Id: 480126 AegisName: C_Giant_Shark Name: Costume Giant Shark Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 109 - Id: 480127 AegisName: C_Hooked_Straw_Hat Name: Costume Hooked Straw Hat Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 115 - Id: 480129 AegisName: C_Triple_Ice_Cream Name: Costume Triple Ice Cream Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 116 - Id: 480130 AegisName: C_Beer_Server Name: Costume Beer Server Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 117 - Id: 480131 AegisName: C_Swirling_Flame Name: Costume Swirling Flame Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_C_Swirling_Flame,true); UnEquipScript: | hateffect(HAT_EF_C_Swirling_Flame,false); - Id: 480134 AegisName: Avareco Name: Avareco Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSkillAtk,"GC_COUNTERSLASH",getskilllv("GC_CROSSIMPACT")*6; bonus2 bSkillAtk,"GC_CROSSIMPACT",getskilllv("GC_CROSSIMPACT")*30; if (getskilllv("GC_CROSSIMPACT") == 5) { bonus2 bSkillCooldown,"GC_DARKILLUSION",-4000; bonus2 bSkillCooldown,"GC_HALLUCINATIONWALK",-20000; } if (getskilllv("GC_HALLUCINATIONWALK") == 5) { bonus2 bSubEle,Ele_Water,100; bonus2 bSubEle,Ele_Holy,30; } if (.@r>=7) { bonus bMaxHPrate,5; bonus2 bAddSize,Size_All,10; bonus bSPGainValue,10; } if (.@r>=9) { bonus bMaxHPrate,10; bonus2 bAddSize,Size_All,10; bonus bSPGainValue,10; } - Id: 480135 AegisName: Rachel_manteau Name: Awakened Glacier Manteau Type: Armor Weight: 250 Defense: 7 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=6) bonus2 bSubRace,RC_DemiHuman,10; if (.@r>=9) bonus2 bIgnoreMdefClassRate,Class_Normal,15; - Id: 480136 AegisName: Thanatos_Sword Name: Magic Swordsman Thanatos's Sword Type: Armor Weight: 500 Defense: 60 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 180 Refineable: true View: 23 Script: | .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,3; bonus bSMatk,3; } if (BaseLevel>=230) { bonus bPAtk,2; bonus bSMatk,2; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Angel,20; bonus2 bIgnoreMdefRaceRate,RC_Angel,20; bonus2 bIgnoreDefRaceRate,RC_Dragon,20; bonus2 bIgnoreMdefRaceRate,RC_Dragon,20; if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Angel,10; bonus2 bIgnoreMdefRaceRate,RC_Angel,10; bonus2 bIgnoreDefRaceRate,RC_Dragon,10; bonus2 bIgnoreMdefRaceRate,RC_Dragon,10; } } bonus2 bMagicAtkEle,Ele_All,2*(.@r/3); bonus bShortAtkRate,2*(.@r/3); bonus bLongAtkRate,2*(.@r/3); bonus2 bAddSize,Size_Medium,5*(.@r/5); bonus2 bMagicAddSize,Size_Medium,5*(.@r/5); bonus2 bAddSize,Size_Large,5*(.@r/5); bonus2 bMagicAddSize,Size_Large,5*(.@r/5); - Id: 480137 AegisName: C_Filir_Bag Name: Costume Filir Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 118 - Id: 480138 AegisName: ST_Servival_Cloak Name: Engraved Survival Manteau Type: Armor Weight: 550 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | bonus bVit,10; bonus bCon,3; bonus bMaxHPrate,5; - Id: 480144 AegisName: Barmund_Manteau Name: Varmundt Rune Pauldron Type: Armor Weight: 300 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true - Id: 480145 AegisName: Barmund_Plain_Hood Name: Varmundt Glade Rune Manteau Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bMaxHPrate,3; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus bMaxHPrate,3; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMaxHPrate,3; if (.@g >= ENCHANTGRADE_C) { bonus bMaxHPrate,3; bonus bMRes,2; bonus bRes,2; if (.@g >= ENCHANTGRADE_B) { bonus bDelayrate,-5; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 480146 AegisName: Barmund_Flame_Hood Name: Varmundt Fire Rune Manteau Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bCritAtkRate,10; if (.@r>=11) { bonus bAtkRate,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus bShortAtkRate,5; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 480147 AegisName: Barmund_Death_Hood Name: Varmundt Death Rune Manteau Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bMatkRate,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,2; bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,5; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 480148 AegisName: Barmund_Ice_Hood Name: Varmundt Ice Rune Manteau Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bAtkRate,5; if (.@r>=9) { bonus bCritAtkRate,10; if (.@r>=11) { bonus bLongAtkRate,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,2; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus bLongAtkRate,5; if (.@g >= ENCHANTGRADE_A) { bonus bDelayrate,-10; } } } } - Id: 480149 AegisName: Battle_Aura_Manteau_TW Name: Battle Aura Manteau Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bNoKnockback; skill "MO_CALLSPIRITS",5; bonus bBaseAtk,10*(.@r/2); bonus bShortAtkRate,4*(.@r/3); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) bonus bPerfectHitAddRate,8; if (.@r>=9) bonus2 bAddEle,Ele_All,10; if (.@r>=11) bonus bPerfectHitAddRate,15; - Id: 480152 AegisName: C_Spoon_Fork_Set Name: Costume Fork Spoon Set Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 121 - Id: 480153 AegisName: S_G_Manteau_TW Name: Sunshine Gravel Cloak Type: Armor Weight: 100 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bPerfectHitAddRate,3; bonus bCritical,2*(.@r/3); bonus bFlee,3*(.@r/3); bonus bHit,3*(.@r/3); bonus bShortAtkRate,2*(.@r/4); bonus bLongAtkRate,2*(.@r/4); bonus2 bMagicAtkEle,Ele_All,2*(.@r/4); if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bPerfectHitAddRate,25+(4*(.@r/4)); bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-500*(.@r/4); bonus2 bSkillCooldown,"LG_SHIELDPRESS",-300*(.@r/4); if (.@r>=12) { bonus bAllStats,10; bonus bShortAtkRate,15; bonus2 bMagicAtkEle,Ele_Holy,15; } } if (eaclass()&EAJL_THIRD && BaseJob == Job_Alchemist) { bonus bPerfectHitAddRate,25+(4*(.@r/4)); bonus2 bSkillCooldown,"GN_CART_TORNADO",-500*(.@r/4); if (.@r>=12) { bonus bAllStats,10; bonus bShortAtkRate,15; } } - Id: 480154 AegisName: Devil_Flame_Manteau_TW Name: Devil's Fire Cloak Type: Armor Weight: 100 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_Fire,3*(.@r/4); bonus2 bMagicAtkEle,Ele_Dark,3*(.@r/4); if (.@r>=7) bonus bMatkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"WL_HELLINFERNO",30; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } if (.@r>=11) bonus bDelayrate,-12; if (.@r>=13) bonus2 bIgnoreMdefClassRate,Class_Boss,10; - Id: 480156 AegisName: Aegis_System Name: Aegis System Type: Armor Buy: 20 Weight: 1000 Defense: 100 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubClass,Class_Boss,5; bonus2 bSubClass,Class_Normal,5; bonus2 bSubEle,Ele_Neutral,20; if (.@r>=7) { bonus bMaxHPrate,20; bonus bMaxSPrate,20; bonus bNoCastCancel; } if (.@r>=9) { skill "AS_CLOAKING",3; if (getskilllv("AS_CLOAKING") == 3) bonus bFlee,100; } - Id: 480158 AegisName: C_Lunatic_Bag Name: Costume Lunatic Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 EquipLevelMin: 1 View: 123 - Id: 480159 AegisName: Snowflower_Manteau Name: Snowflower Manteau Type: Armor Weight: 900 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,2500+200*(.@r/2); bonus bMaxSP,500+50*(.@r/2); if (.@r>=7) { bonus bAspdRate,7; if (.@r>=9) { bonus bPow,3; } } - Id: 480160 AegisName: Snowflower_Muffler Name: Snowflower Muffler Type: Armor Weight: 900 Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,2000+150*(.@r/2); bonus bMaxSP,1000+100*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-7; if (.@r>=9) { bonus bSpl,3; } } - Id: 480161 AegisName: Subject_CapeRange_TH Name: Subject Cape (Range) Type: Armor Defense: 10 Slots: 1 Jobs: Archer: true Hunter: true BardDancer: true Merchant: true Blacksmith: true Alchemist: true Swordman: true Knight: true Crusader: true Thief: true Assassin: true Rogue: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableGarment; bonus bBaseAtk,20; bonus2 bAddRace,RC_All,(.@r/2); if (.@r>=9) bonus bAspd,1; - Id: 480163 AegisName: Guardian_Manteau Name: Guardian Manteau Type: Armor Weight: 500 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bDef,5; if (.@r>=5) bonus bMdef,5; - Id: 480166 AegisName: Subject_CapeMagic_TH Name: Subject Cape (Magic) Type: Armor Defense: 10 Slots: 1 Jobs: Acolyte: true Priest: true Monk: true Archer: true Hunter: true BardDancer: true Mage: true Wizard: true Sage: true SoulLinker: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableGarment; bonus bMatk,20; bonus2 bMagicAtkEle,Ele_All,2*(.@r/3); if (.@r>=9) bonus bMatkRate,7; - Id: 480167 AegisName: C_Heart_Stick_Choco Name: Costume Heart Stick Chocolate Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 124 - Id: 480168 AegisName: C_Melody_Wing Name: Costume Melody Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 126 - Id: 480169 AegisName: C_Diabolic_Rock_Guitar Name: Costume Diabolic Rock Guitar Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 125 - Id: 480172 AegisName: Subject_CapeMelee_TH Name: Subject Cape (Melee) Type: Armor Defense: 10 Slots: 1 Jobs: Swordman: true Knight: true Crusader: true Thief: true Assassin: true Rogue: true Acolyte: true Priest: true Monk: true Merchant: true Blacksmith: true Alchemist: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableGarment; bonus bBaseAtk,20; bonus bMaxHPrate,.@r/2; bonus bMaxSPrate,.@r/2; if (.@r>=9) bonus2 bAddClass,Class_All,5; - Id: 480174 AegisName: Pirate_Captain_Coat Name: Pirate Captain's Coat Type: Armor Weight: 600 Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCRate,5; bonus bCritical,3; bonus bCritAtkRate,3*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus2 bAddSize,Size_All,5*(.@r/3); if (.@r>=7) { bonus bPAtk,7; bonus bAtkRate,5; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus bDelayrate,-5; bonus bDef,150; } } } if (.@g>=ENCHANTGRADE_D) { bonus bCritical,3; bonus bCrt,3; if (.@g>=ENCHANTGRADE_C) { bonus bCritAtkRate,15; if (.@g>=ENCHANTGRADE_B) { bonus bPow,3; bonus bCon,3; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,7; } } } } - Id: 480175 AegisName: Changeable_Magic_Cape Name: Unpredictable Magic Cloak Type: Armor Weight: 200 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bMatk,4*.@r; bonus2 bMagicAtkEle,Ele_All,2*(.@r/3); if (.@r>=7) bonus bAspdRate,10; if (.@r>=9) bonus bMatkRate,10; if (.@r>=11) { bonus3 bAutoSpell,"MG_THUNDERSTORM",5,50; bonus3 bAutoSpell,"WZ_HEAVENDRIVE",5,50; } if (getskilllv("SC_AUTOSHADOWSPELL") == 10) { bonus bMatk,150; bonus2 bMagicAddEle,Ele_All,10; if (.@r>=9) { bonus3 bAutoSpell,"WL_HELLINFERNO",3,50; bonus3 bAutoSpell,"SO_DIAMONDDUST",3,50; } if (.@r>=11) { bonus3 bAutoSpell,"SO_EARTHGRAVE",3,50; bonus3 bAutoSpell,"WL_CHAINLIGHTNING",3,50; } if (.@r>=13) { bonus2 bIgnoreMdefClassRate,Class_Boss,15; bonus2 bIgnoreMdefClassRate,Class_Normal,15; } } - Id: 480176 AegisName: C_Blue_Rose_Garden Name: Costume Blue Rose Garden Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 127 - Id: 480177 AegisName: C_Clutch_Bouquet Name: Costume Clutch Bouquet Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 128 - Id: 480181 AegisName: C_Pitaya_G_Bag Name: Costume Dragon Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 129 - Id: 480182 AegisName: aegis_480182 Name: Bastawtozaq Heart Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,10; bonus bAspdRate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",7*(.@r/3); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",7*(.@r/3); if (getskilllv("RK_DRAGONBREATH") >= 10) bonus bLongAtkRate,5; if (getskilllv("RK_DRAGONBREATH_WATER") >= 10) bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus bLongAtkDef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } if (.@r>=11) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus bLongAtkDef,10; bonus bAspdRate,5; } - Id: 480183 AegisName: aegis_480183 Name: "[Not For Sale] Bastawtozaq Heart" Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,10; bonus bAspdRate,5; bonus2 bSkillAtk,"RK_DRAGONBREATH",7*(.@r/3); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",7*(.@r/3); if (getskilllv("RK_DRAGONBREATH") >= 10) bonus bLongAtkRate,5; if (getskilllv("RK_DRAGONBREATH_WATER") >= 10) bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus bLongAtkDef,10; bonus bMaxHPrate,10; bonus bMaxSPrate,10; } if (.@r>=11) { bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus bLongAtkDef,10; bonus bAspdRate,5; } - Id: 480184 AegisName: aegis_480184 Name: Warm Dandelion Cape Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = (getskilllv("SU_SV_STEMSPEAR")+getskilllv("SU_SV_ROOTTWIST")+getskilllv("SU_CN_METEOR")+getskilllv("SU_CN_POWDERING")+getskilllv("SU_CHATTERING")+getskilllv("SU_MEOWMEOW")+getskilllv("SU_NYANGGRASS")); bonus bAspdRate,5; bonus bMaxHPrate,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bSPDrainValue,getskilllv("SU_CHATTERING"); bonus2 bSkillAtk,"SU_CN_METEOR",10*getskilllv("SU_NYANGGRASS");; if (getskilllv("SU_SPIRITOFLAND") == 1) { bonus bInt,.@a; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@a; } if (getskilllv("SU_MEOWMEOW") == 5) { bonus bMagicHPGainValue,150; bonus bMagicSPGainValue,15; } if (.@r>=5) { bonus bAspdRate,5; bonus bMaxHPrate,5; } if (.@r>=7) { bonus bAspdRate,10; bonus bMaxHPrate,10; } - Id: 480185 AegisName: E_Auto_Engine_A Name: Automatic Engine wing A-type (Bound) Type: Armor Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHP,1500+100*(.@r/2); if (.@r>=7) { bonus bAspdRate,7; } - Id: 480186 AegisName: E_Auto_Engine_B Name: Automatic Engine wing B-type (Bound) Type: Armor Defense: 70 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMaxHP,1500+100*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-7; } - Id: 480187 AegisName: C_Wedding_Ribbon Name: Costume Wedding Ribbon Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 130 - Id: 480188 AegisName: aegis_480188 Name: Valkyrie Curse Bright Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 131 Script: | .@r = getrefine(); bonus2 bSubClass,Class_All,5; bonus2 bSubRace,RC_Player_Human,5; bonus bMaxHPrate,2*.@r; bonus bMaxSPrate,2*.@r; bonus2 bSubEle,Ele_Ghost,7*.@r; if (.@r>=7) { bonus bAllStats,10; bonus2 bAddEle,Ele_All,10; bonus2 bMagicAddEle,Ele_All,10; } if (.@r>=9) { bonus2 bAddEle,Ele_All,15; bonus2 bMagicAddEle,Ele_All,15; bonus bDefRatioAtkClass,Class_All; } - Id: 480189 AegisName: C_Valkyrie_Curse_blight Name: Costume Valkyrie Curse Blight Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 131 - Id: 480192 AegisName: 2022RTC_V_Coat4 Name: 2022RTC Memorial Victory Coat Type: Armor Weight: 800 Defense: 90 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true View: 132 Script: | .@r = getrefine(); bonus bMaxHP,2000; bonus bMaxSP,500; bonus2 bSubRace,RC_DemiHuman,.@r/2; bonus2 bSubRace,RC_Player_Doram,.@r/2; bonus2 bSubRace,RC_Player_Human,.@r/2; bonus bDelayrate,-2*(.@r/3); bonus bAtkRate,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=9) { bonus bShortAtkRate,7; bonus bLongAtkRate,7; bonus2 bMagicAtkEle,Ele_All,5; } if (.@r>=11) { if (readparam(bStr)>=120) { bonus bPow,3; bonus bShortAtkRate,5; } if (readparam(bAgi)>=120) { bonus bSta,3; bonus bDelayrate,-5; } if (readparam(bVit)>=120) { bonus bWis,3; bonus2 bSubRace,RC_All,5; } if (readparam(bInt)>=120) { bonus bSpl,3; bonus2 bMagicAddRace,RC_All,5; } if (readparam(bDex)>=120) { bonus bCon,3; bonus bLongAtkRate,5; } if (readparam(bLuk)>=120) { bonus bCrt,3; bonus bCritAtkRate,5; } } - Id: 480193 AegisName: aegis_480193 Name: Enforcer Cape Type: Armor Weight: 300 Defense: 18 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-5; bonus2 bSkillAtk,"AS_GRIMTOOTH",BaseLevel; if (.@r>=5) { if (getskilllv("AS_GRIMTOOTH") == 5) { bonus2 bSkillAtk,"AS_GRIMTOOTH",50; } } if (.@r>=7) { bonus bDelayrate,-3; bonus bMaxHPrate,5; } if (.@r>=9) bonus bDelayrate,-3; - Id: 480194 AegisName: aegis_480194 Name: Heal Amistr Bag Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bAllStats,1; skill "AL_HEAL",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>=9) { bonus bSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>=12) bonus bNoCastCancel; - Id: 480195 AegisName: aegis_480195 Name: "[Not For Sale] Enforcer Cape" Type: Armor Weight: 300 Defense: 18 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-5; bonus2 bSkillAtk,"AS_GRIMTOOTH",BaseLevel; if (.@r>=5) { if (getskilllv("AS_GRIMTOOTH") == 5) { bonus2 bSkillAtk,"AS_GRIMTOOTH",50; } } if (.@r>=7) { bonus bDelayrate,-3; bonus bMaxHPrate,5; } if (.@r>=9) bonus bDelayrate,-3; - Id: 480196 AegisName: aegis_480196 Name: "[Not For Sale] Heal Amistr Bag" Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 4 Script: | .@r = getrefine(); bonus bAllStats,1; skill "AL_HEAL",1; bonus2 bExpAddRace,RC_All,.@r/2; bonus2 bDropAddRace,RC_All,.@r/2; if (.@r>=9) { bonus bSPGainValue,3; bonus bMagicSPGainValue,3; } if (.@r>=12) bonus bNoCastCancel; - Id: 480197 AegisName: aegis_480197 Name: Convertible Critical Wing Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bCritical,2*(.@r/2); bonus bBaseAtk,5*(.@r/2); bonus2 bAddSize,Size_All,3*(.@r/3); if (.@r>=7) { bonus bAspdRate,7; if (.@r>=9) { bonus2 bSubEle,Ele_Neutral,7; if (.@r>=11) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; } } } - Id: 480198 AegisName: C_20th_Anniversary_Wing Name: Costume 20th Anniversary Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 136 - Id: 480199 AegisName: C_Guardian_Wingdeco Name: Costume Wings of Astaroth Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 139 - Id: 480200 AegisName: C_Guardian_Wing Name: Costume Guardian Angel Wing Ears Type: Armor Locations: Costume_Head_Mid: true ArmorLevel: 1 View: 2282 - Id: 480201 AegisName: C_Guardian_Angelwing Name: Costume Guardian Angel Wings Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 138 - Id: 480202 AegisName: C_Guardian_Butterwing Name: Costume 20th Anniversary Fairy Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 140 - Id: 480203 AegisName: C_Magic_Circle_BL Name: Costume Blue Magic Circle # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_Magiccircle_Blue_TW,true); UnEquipScript: | hateffect(HAT_EF_Magiccircle_Blue_TW,false); - Id: 480204 AegisName: C_Back_Ribbon_Bell_BU Name: Costume Back Ribbon Bell (Blue) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 135 - Id: 480205 AegisName: C_Astra_Blessing Name: Costume Astra Blessing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_C_Astra_Blessing,true); UnEquipScript: | hateffect(HAT_EF_C_Astra_Blessing,false); - Id: 480206 AegisName: Comp_Anti_Manteau_TH Name: "[Not For Sale] Anti Magic Manteau" Type: Armor Weight: 750 Defense: 23 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,(300+(100*(.@r/2))); bonus bMaxHPrate,(2*(.@r/3)); if (.@r >= 7) bonus bAtkRate,7; if (.@r >= 9) bonus bVariableCastrate,-10; - Id: 480207 AegisName: aegis_480207 Name: Costume Traveler Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 137 - Id: 480215 AegisName: Hs_Manteau Name: Herosria Manteau Type: Armor Weight: 1600 Defense: 50 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bMaxHPrate,3; bonus2 bMagicAtkEle,Ele_All,-5; bonus bLongAtkRate,-5; bonus bShortAtkRate,3; - Id: 480216 AegisName: Hs_Muffler Name: Herosria Muffler Type: Armor Weight: 1000 Defense: 30 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,2; bonus2 bSubRace,RC_Player_Human,4; bonus2 bSubRace,RC_Player_Doram,4; bonus bHit,10; bonus2 bMagicAtkEle,Ele_All,-5; bonus bShortAtkRate,-5; bonus bLongAtkRate,3; - Id: 480217 AegisName: aegis_480217 Name: Herosria Cloak Type: Armor Weight: 1200 Defense: 10 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,3; bonus2 bSubRace,RC_Player_Human,4; bonus2 bSubRace,RC_Player_Doram,4; bonus bFlee,20; bonus2 bMagicAtkEle,Ele_All,-5; bonus bLongAtkRate,-5; bonus bShortAtkRate,3; - Id: 480218 AegisName: aegis_480218 Name: Herosria Hood Type: Armor Weight: 600 Defense: 20 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,8; bonus2 bSubRace,RC_Player_Human,4; bonus2 bSubRace,RC_Player_Doram,4; bonus bHealPower,5; bonus2 bAddRace,RC_Player_Human,-5; bonus2 bAddRace,RC_Player_Doram,-5; bonus2 bMagicAtkEle,Ele_All,3; - Id: 480219 AegisName: aegis_480219 Name: Herosria Pauldron Type: Armor Weight: 2000 Defense: 80 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 200 Refineable: true Script: | bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus bMaxHPrate,5; bonus2 bAddRace,RC_Player_Human,-10; bonus2 bAddRace,RC_Player_Doram,-10; bonus2 bMagicAddRace,RC_Player_Human,-10; bonus2 bMagicAddRace,RC_Player_Doram,-10; bonus bHealPower2,3; - Id: 480220 AegisName: aegis_480220 Name: Whale Shark Float Type: Armor Weight: 400 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubEle,Ele_Water,7*(readparam(bVit)/10); bonus2 bSubEle,Ele_Ghost,3*.@r; if (.@r>=5) { bonus bDef,300; bonus bMaxHPrate,30; } if (.@r>=7) { bonus3 bAddEff,Eff_Freeze,500,ATF_MAGIC; bonus3 bAddEff,Eff_Freezing,500,ATF_MAGIC; } - Id: 480221 AegisName: C_Ninetail_Tail Name: Costume Nine Tailed Fox Tail Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 145 - Id: 480222 AegisName: C_J_Umbrella Name: Costume Japanese Umbrella Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 146 - Id: 480223 AegisName: C_Muranyasa Name: Costume Oriental Sword Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 147 - Id: 480224 AegisName: ROZ_FV_Cassock_Manteau Name: Shining Priest's Cloak Type: Armor Weight: 450 Defense: 35 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHealPower2,25; bonus bAddItemHealRate,25; bonus2 bSubRace,RC_Angel,2*(.@r/2); bonus2 bSubRace,RC_Demon,2*(.@r/2); bonus bBaseAtk,7*(.@r/3); bonus bMatk,(6*(readparam(bInt/25))+(10*(.@r/3))); bonus bAspdRate,3*(readparam(bAgi)/25); bonus bMaxHP,350*(readparam(bVit)/25); bonus bVariableCastrate,-3*(readparam(bDex)/25); if (.@r>=9) bonus2 bSubSize,Size_All,10; - Id: 480225 AegisName: ROZ_FV_Rachel_manteau Name: Frosty Cloak Type: Armor Weight: 250 Defense: 35 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | bonus bBaseAtk,6*(readparam(bStr)/25); bonus bAspdRate,3*(readparam(bAgi)/25); bonus bMaxHP,350*(readparam(bVit)/25); bonus bCritAtkRate,5*(readparam(bLuk)/25); - Id: 480226 AegisName: aegis_480226 Name: Wing Of Happiness Type: Armor Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 9 Script: | bonus bAllStats,3; skill "AL_INCAGI",3; - Id: 480227 AegisName: aegis_480227 Name: "[Not For Sale] Wing Of Happiness" Type: Armor Defense: 10 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,3; skill "AL_INCAGI",3; - Id: 480228 AegisName: Day_of_the_Dead Name: Dia de Muertos Type: Armor Weight: 300 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,5; bonus bMatkRate,5; bonus bInt,5*getskilllv("SP_SOULENERGY"); bonus bMaxSPrate,5*getskilllv("SP_SOULENERGY"); bonus2 bSubRace,RC_Player_Human,5; bonus2 bMagicAtkEle,Ele_Dark,5*getskilllv("SP_SOULCURSE"); bonus2 bSkillAtk,"SP_SPA",5*getskilllv("SP_SOULREAPER"); bonus2 bSkillAtk,"SP_SWHOO",25*getskilllv("SP_SOULREAPER"); if (getskilllv("SP_SOULCOLLECT") == 5) { bonus bMagicHPGainValue,150; bonus bMagicSPGainValue,15; } if (.@r>=7) { bonus bMaxHPrate,5; bonus bMatkRate,5; } if (.@r>=9) { bonus bMaxHPrate,10; bonus bMatkRate,10; } - Id: 480229 AegisName: aegis_480229 Name: "[Not For Sale] Menblatt Wing Manteau" Type: Armor Weight: 400 Defense: 40 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,30; if (.@r>=5) { if (readparam(bDex)>=60) bonus bLongAtkRate,1; } if (.@r>=7) bonus bLongAtkRate,readparam(bDex)/10; - Id: 480230 AegisName: Flame_Rune_Hood Name: Rune Manteau of Flame Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bCritAtkRate,10; if (.@r>=11) { bonus bAtkRate,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bPAtk,2; } } } } - Id: 480231 AegisName: Plain_Rune_Hood Name: Rune Manteau of Plain Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bMaxHPrate,3; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bAddRace,RC_All,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMaxHPrate,5; if (.@g>=ENCHANTGRADE_C) { bonus bMaxHPrate,5; bonus bMRes,5; bonus bRes,5; if (.@g>=ENCHANTGRADE_B) { bonus bDelayrate,-5; bonus bMRes,5; bonus bRes,5; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bPAtk,2; } } } } - Id: 480232 AegisName: Ice_Rune_Hood Name: Rune Manteau of Ice Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bAtkRate,5; if (.@r>=9) { bonus bCritAtkRate,10; if (.@r>=11) { bonus bLongAtkRate,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,5; bonus bAtkRate,5; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bPAtk,2; } } } } - Id: 480233 AegisName: Death_Rune_Hood Name: Rune Manteau of Death Type: Armor Weight: 1000 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bMatkRate,10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,5; if (.@g>=ENCHANTGRADE_C) { bonus bSMatk,5; bonus bMatkRate,5; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus bDelayrate,-10; bonus bSMatk,2; } } } } - Id: 480235 AegisName: C_Diabolic_Friend Name: Costume Diabolic Friend Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 148 - Id: 480236 AegisName: C_Big_Magic_Book Name: Costume Big Magic Book Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 149 - Id: 480238 AegisName: Comp_Geffen_M_Muffle Name: "[Not For Sale] Geffen Magic Muffler" Type: Armor Weight: 550 Defense: 20 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 99 Refineable: true Script: | .@r = getrefine(); .@val = -10; bonus bMatk,(10*(.@r/2)); bonus bMatkRate,(.@r/3); if (.@r >= 7) bonus2 bMagicAtkEle,Ele_All,5; if (.@r >= 9) .@val -= 10; bonus bVariableCastrate,.@val; - Id: 480239 AegisName: aegis_480239 Name: Costume Pink Cupid Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 - Id: 480240 AegisName: aegis_480240 Name: Mortal Cape Type: Armor Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,3; skill "RG_TUNNELDRIVE",3; - Id: 480241 AegisName: aegis_480241 Name: "[Not For Sale] Mortal Cape" Type: Armor Defense: 10 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | bonus bAllStats,3; skill "RG_TUNNELDRIVE",3; - Id: 480242 AegisName: Tele_WG_Cape Name: Wind God Cloak Type: Armor Weight: 100 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_Wind,3*(.@r/4); bonus2 bMagicAtkEle,Ele_Ghost,3*(.@r/4); if (.@r>=7) bonus bMatkRate,10; if (.@r>=9) bonus2 bMagicAddRace,RC_All,10; if (.@r>=11) bonus bDelayrate,-12; if (.@r>=13) bonus2 bIgnoreDefClassRate,Class_Boss,10; - Id: 480243 AegisName: C_JP_EV16 Name: Costume Cinnamon Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 152 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 480244 AegisName: C_JP_EV17 Name: Costume Crowned Cinnamon Backpack Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 153 Trade: NoDrop: true NoTrade: true NoSell: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 480245 AegisName: aegis_480245 Name: Crowned Cinnamon Backpack Type: Armor Weight: 300 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoSell: true NoMail: true NoAuction: true NoGuildStorage: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,20; bonus2 bExpAddRace,RC_All,10; skill "ALL_PRONTERA_RECALL",1; bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; bonus bMaxHP,BaseLevel*20; bonus bMaxSP,BaseLevel*2; if (.@r>=5) bonus2 bSubEle,Ele_Holy,80; if (.@r>=7) bonus2 bHPDrainRate,1000,2; - Id: 480246 AegisName: aegis_480246 Name: Costume Valkyrie Spear Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 154 - Id: 480247 AegisName: C_Giant_Angeling Name: Costume Giant Angeling Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 155 - Id: 480248 AegisName: Comp_Bag_Antonio_Melee Name: "[Not For Sale] Candy Bag Backpack (Physical)" Type: Armor Weight: 200 Defense: 30 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,.@r/2; if (.@r>=9) bonus bAspdRate,10; if (.@r>=12) bonus bDelayrate,-7; if (BaseLevel >= 100) bonus2 bExpAddRace,RC_All,4; else if (BaseLevel <= 99) bonus2 bExpAddRace,RC_All,10; - Id: 480249 AegisName: aegis_480249 Name: 1Lv Hood Type: Armor Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true - Id: 480250 AegisName: aegis_480250 Name: Level 2 Hood # !todo check english name Type: Armor Slots: 1 Locations: Garment: true ArmorLevel: 2 Refineable: true - Id: 480251 AegisName: aegis_480251 Name: Mystery Wing Type: Armor Weight: 500 Defense: 50 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@stats= (readparam(bStr)+readparam(bAgi)+readparam(bVit)+readparam(bInt)+readparam(bDex)+readparam(bLuk)); .@a = .@stats/100; .@b = .@stats/300; .@c = .@stats/400; .@d = .@stats/500; .@e = .@stats/600; bonus2 bSubClass,Class_Boss,5; bonus2 bSubClass,Class_Normal,5; bonus2 bSubRace,RC_Player_Human,5; bonus bAtkRate,5*.@a; bonus bMatkRate,5*.@a; bonus bCriticalRate,5*.@a; bonus bMaxHPrate,20*.@b; bonus bMaxSPrate,20*.@b; bonus bAspdRate,15*.@c; bonus bDelayrate,-15*.@c; bonus bPerfectHitAddRate,25*.@d; bonus bFixedCastrate,-70*.@d; autobonus "{ bonus bFlee2,95; }",100*.@e,10000,BF_WEAPON|BF_MAGIC; /*Unknown Rate*/ if (.@r>=7) { bonus bDef,150; bonus bMdef,15; } if (.@r>=9) { bonus bDef,150; bonus bMdef,15; } - Id: 480252 AegisName: C_Mystical_Wing Name: Costume Mystery Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 156 - Id: 480256 AegisName: aegis_480256 Name: DID Cape Type: Armor Weight: 200 Defense: 8 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,30; bonus bHit,8*(.@r/3); bonus bShortAtkRate,3*(.@r/4); if (.@r>=9) { if (eaclass()&EAJL_THIRD && BaseJob == Job_Assassin) { bonus bDelayrate,-5; bonus bAspdRate,20; } if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bHit,20; autobonus3 "{ bonus bHit,20; bonus2 bSkillAtk,\"LG_SHIELDPRESS\",30; }",1000,60000,"LG_EARTHDRIVE"; } } if (.@r>=11) { bonus bHit,30; bonus bAllStats,5; bonus bShortAtkRate,5; } - Id: 480258 AegisName: C_Rainbow_Shell Name: Costume Rainbow Carapace # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 157 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true - Id: 480262 AegisName: aegis_480262 Name: "[Not For Sale] Golden Wings" Type: Armor Defense: 15 Slots: 1 Locations: Garment: true ArmorLevel: 1 Refineable: true View: 5 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus2 bExpAddClass,Class_All,10; bonus2 bDropAddClass,Class_All,10; if (readparam(bStr) >= 90) { bonus bAllStats,1; bonus bMaxHPrate,1; bonus bMaxSPrate,1; bonus bStr,.@r; } if (readparam(bAgi) >= 90) { bonus bAllStats,1; bonus bMaxHPrate,1; bonus bMaxSPrate,1; bonus bAgi,.@r; } if (readparam(bVit) >= 90) { bonus bAllStats,1; bonus bMaxHPrate,1; bonus bMaxSPrate,1; bonus bVit,.@r; } if (readparam(bInt) >= 90) { bonus bAllStats,1; bonus bMaxHPrate,1; bonus bMaxSPrate,1; bonus bInt,.@r; } if (readparam(bDex) >= 90) { bonus bAllStats,1; bonus bMaxHPrate,1; bonus bMaxSPrate,1; bonus bDex,.@r; } if (readparam(bLuk) >= 90) { bonus bAllStats,1; bonus bMaxHPrate,1; bonus bMaxSPrate,1; bonus bLuk,.@r; } - Id: 480264 AegisName: aegis_480264 Name: Costume Wing of Harmony Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 136 - Id: 480269 AegisName: N_Avenger_Cape_TW Name: Revenge Cloak of Naght Sieger Type: Armor Weight: 200 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSubRace,RC_Dragon,4*(.@r/3); bonus2 bAddRace,RC_DemiHuman,8*(.@r/4); bonus2 bAddRace,RC_Dragon,8*(.@r/4); if (.@r>=7) { bonus bAtkRate,10; if (.@r>=9) { bonus bDelayrate,-8; if (.@r>=11) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=12) { bonus2 bAddEle,Ele_Neutral,12; if (.@r>=13) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; } } } } } - Id: 480270 AegisName: N_Spirit_Cape_TW Name: Cloak of Naght Sieger Type: Armor Weight: 200 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bSubRace,RC_Dragon,4*(.@r/3); bonus2 bMagicAddRace,RC_Dragon,8*(.@r/4); bonus2 bMagicAddRace,RC_DemiHuman,8*(.@r/4); if (.@r>=7) { bonus bMatkRate,10; if (.@r>=9) { bonus bDelayrate,-8; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bMagicAtkEle,Ele_Water,10; if (.@r>=12) { bonus2 bMagicAddEle,Ele_Neutral,12; if (.@r>=13) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Water,15; } } } } } - Id: 480271 AegisName: aegis_480271 Name: Costume Angelic Long (Blonde) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 2328 - Id: 480272 AegisName: aegis_480272 Name: Costume Angelic Long (Royal Blonde) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 2329 - Id: 480273 AegisName: aegis_480273 Name: Costume Angelic Long (Silver) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 2330 - Id: 480274 AegisName: aegis_480274 Name: Costume Angelic Long (Royal Silver) Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 2331 - Id: 480275 AegisName: aegis_480275 Name: "[Not For Sale] Phreeoni Wing" Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHPrate,10; bonus bHit,10; if (.@r>=8) bonus bHit,20; if (.@r>=10) bonus bHit,30; if (.@r>=12) bonus bHit,50; - Id: 480276 AegisName: Occult_Nature_Cape Name: Graceful Force of Nature Cloak Type: Armor Weight: 200 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_Water,3*(.@r/4); bonus2 bMagicAtkEle,Ele_Earth,3*(.@r/4); if (.@r>=7) bonus bMatkRate,10; if (.@r>=9) bonus bMatkRate,10; if (.@r>=11) bonus bDelayrate,-12; if (.@r>=13) bonus2 bIgnoreMdefClassRate,Class_Boss,10; - Id: 480277 AegisName: aegis_480277 Name: "[Not For Sale] Christmas Guardian Tree" Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 Refineable: true View: 45 Script: | .@r = getrefine(); bonus bMatkRate,(.@r/2); bonus bAtkRate,(.@r/2); if (.@r>=9) { bonus bMatk,30; bonus bBaseAtk,30; } if (.@r>=11) autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Holy,20; }",1,10000,BF_WEAPON; - Id: 480279 AegisName: C_Poring_Syringe Name: Costume Poring Syringe Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 161 - Id: 480280 AegisName: C_Big_Ribbon_Cloak_WH Name: Costume Big Milky Ribbon Cloak Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 162 - Id: 480283 AegisName: D_Glacier_Manteau Name: Dim Glacier Manteau Type: Armor Weight: 1600 Defense: 147 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bPow,1; bonus bCon,1; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; if (.@r>=11) { bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,3; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bPAtk,2; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,1; if (.@g>=ENCHANTGRADE_A) { bonus bAtkRate,2; } } } } - Id: 480284 AegisName: D_Glacier_Muffler Name: Dim Glacier Muffler Type: Armor Weight: 800 Defense: 105 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,1; bonus bCon,1; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=11) { bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,3; bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,5; bonus bSMatk,2; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,1; if (.@g>=ENCHANTGRADE_A) { bonus bMatkRate,2; } } } } - Id: 480286 AegisName: aegis_480286 Name: Costume Serpentine Vision Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect HAT_EF_SERPENT_SHADOW,true; UnEquipScript: | hateffect HAT_EF_SERPENT_SHADOW,false; - Id: 480288 AegisName: aegis_480288 Name: Costume Dark Lord Cloak Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 164 Script: | hateffect HAT_EF_C_DARK_LORD_CLOAK,true; UnEquipScript: | hateffect HAT_EF_C_DARK_LORD_CLOAK,false; - Id: 480289 AegisName: aegis_480289 Name: Costume Moonlight Flower Bell Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 165 - Id: 480290 AegisName: C_Lord_Of_Death_Shield Name: Costume Lord of Death Shield Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 166 - Id: 480291 AegisName: Hero_Favor Name: Heroic Favor Cloak Type: Armor Weight: 200 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,3000; bonus bMaxSP,200; bonus bSMatk,BaseLevel/10; bonus bRes,5*(BaseLevel/10); bonus bMRes,5*(BaseLevel/10); bonus bMatk,10*(.@r/2); bonus bMatkRate,2*(.@r/3); if (BaseLevel>=200) { bonus bSMatk,1; bonus bRes,7; bonus bMRes,7; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,10; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=13) { bonus2 bMagicAddRace,RC_All,15; } } } } - Id: 480292 AegisName: Hero_Courage Name: Heroic Valor Cloak Type: Armor Weight: 200 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,3000; bonus bMaxSP,200; bonus bPAtk,BaseLevel/10; bonus bRes,5*(BaseLevel/10); bonus bMRes,5*(BaseLevel/10); bonus bBaseAtk,10*(.@r/2); bonus bAtkRate,2*(.@r/3); if (BaseLevel>=200) { bonus bPAtk,1; bonus bRes,7; bonus bMRes,7; } if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bAddSize,Size_All,10; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=13) { bonus2 bAddRace,RC_All,15; } } } } - Id: 480295 AegisName: aegis_480295 Name: Costume Sakura Branch Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 167 - Id: 480296 AegisName: aegis_480296 Name: Costume Sakura Falling Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect HAT_EF_C_SAKURA_FUBUKI,true; UnEquipScript: | hateffect HAT_EF_C_SAKURA_FUBUKI,false; - Id: 480297 AegisName: C_Lop_Bunny_Cloak Name: Costume Love Bunny Cloak Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 169 - Id: 480298 AegisName: C_MCircle_Wonderland Name: Costume Magic Wonderland Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 Script: | hateffect(HAT_EF_rabbit_aura,true); UnEquipScript: | hateffect(HAT_EF_rabbit_aura,false); - Id: 480310 AegisName: C_Giant_Mad_Bunny Name: Costume Big Mad Bunny Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 172 - Id: 480311 AegisName: aegis_480311 Name: Costume Key To Happiness Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 173 - Id: 480312 AegisName: Temporal_Cape_TW_LT Name: Exotic Temporal Manteau-LT Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bMdef,10; bonus bBaseAtk,15*(.@r/2); bonus bMatk,15*(.@r/2); bonus bAtkRate,4*(.@r/3); bonus bMatkRate,4*(.@r/3); bonus bCritical,3*(.@r/3); bonus bLongAtkRate,5*(.@r/4); bonus bShortAtkRate,5*(.@r/4); bonus2 bMagicAtkEle,Ele_All,5*(.@r/4); bonus bMaxHPrate,5*(.@r/4); bonus bAspdRate,5*(.@r/4); bonus bCritAtkRate,5*(.@r/4); bonus bDelayrate,-5*(.@r/4); if (.@r>=7) { bonus bAtkRate,7; bonus bMatkRate,7; } if (.@r>=9) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; } if (.@r>=12) { bonus2 bAddEle,Ele_All,15; bonus2 bMagicAddEle,Ele_All,15; } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,5; bonus bMatkRate,5; } if (.@g>=ENCHANTGRADE_C) { bonus bPow,5; bonus bSpl,5; } if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bSMatk,7; } if (.@g>=ENCHANTGRADE_A) { if (.@r>=13) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; } } - Id: 480313 AegisName: aegis_480313 Name: Hunting Scarf Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,5; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Insect,7; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Insect,7; if (getskilllv("RA_CAMOUFLAGE") >= 3) { bonus2 bSkillCooldown,"RA_UNLIMIT",-90000; } if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) { bonus bDelayrate,10; bonus2 bSkillCooldown,"RA_ARROWSTORM",-200; } UnEquipScript: | sc_end SC_UNLIMIT; - Id: 480314 AegisName: aegis_480314 Name: "[Not For Sale] Hunting Scarf" Type: Armor Weight: 300 Defense: 20 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,5; bonus2 bAddRace,RC_Brute,7; bonus2 bAddRace,RC_Insect,7; bonus2 bSubRace,RC_Brute,7; bonus2 bSubRace,RC_Insect,7; if (getskilllv("RA_CAMOUFLAGE") >= 3) { bonus2 bSkillCooldown,"RA_UNLIMIT",-90000; } if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) { bonus bDelayrate,10; bonus2 bSkillCooldown,"RA_ARROWSTORM",-200; } UnEquipScript: | sc_end SC_UNLIMIT; - Id: 480315 AegisName: C_Milky Name: Costume Skia's Sword Milky Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 176 - Id: 480316 AegisName: C_Labrys Name: Costume Labrys Axe Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 177 - Id: 480317 AegisName: aegis_480317 Name: Magic Compression Type: Armor Weight: 300 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("SO_EL_SYMPATHY"); .@b = getskilllv("SO_STRIKING"); bonus bAspdRate,5; bonus bMatkRate,5; bonus2 bSubClass,Class_Boss,5; bonus2 bSubClass,Class_Normal,5; bonus2 bSubRace,RC_Player_Human,5; bonus bInt,5*.@a; bonus bDelayrate,-5*.@a; bonus2 bSkillAtk,"MG_FIREBOLT",20*.@b; bonus2 bSkillAtk,"MG_COLDBOLT",20*.@b; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20*.@b; bonus2 bSkillAtk,"WZ_EARTHSPIKE",20*.@b; if (getskilllv("SO_SPELLFIST")>=10) bonus3 bAutoSpell,"MG_SAFETYWALL",max(getskilllv("MG_SAFETYWALL"),3),20; if (getskilllv("SO_PSYCHIC_WAVE")>=5) { bonus3 bAutoSpell,"MG_FIREBOLT",getskilllv("MG_FIREBOLT"),20; bonus3 bAutoSpell,"MG_COLDBOLT",getskilllv("MG_COLDBOLT"),20; bonus3 bAutoSpell,"MG_LIGHTNINGBOLT",getskilllv("MG_LIGHTNINGBOLT"),20; bonus3 bAutoSpell,"WZ_EARTHSPIKE",getskilllv("WZ_EARTHSPIKE"),20; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",getskilllv("SO_PSYCHIC_WAVE"),20; } if (.@r>=7) { bonus bAspdRate,5; bonus bMatkRate,5; } if (.@r>=9) { bonus bAspdRate,10; bonus bMatkRate,10; } - Id: 480318 AegisName: aegis_480318 Name: Costume Divine Phoenix Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 178 - Id: 480319 AegisName: aegis_480319 Name: Divine Phoenix Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubClass,Class_Boss,5; bonus2 bSubClass,Class_Normal,5; bonus2 bSubRace,RC_Player_Human,5; bonus2 bSubRace,RC_Player_Doram,5; bonus bMaxHPrate,2*.@r; bonus bMaxSPrate,2*.@r; bonus2 bSubEle,Ele_Holy,7*.@r; if (.@r>=7) { bonus bAllStats,10; bonus2 bAddEle,Ele_All,10; bonus2 bMagicAddEle,Ele_All,10; } if (.@r>=9) { bonus2 bAddEle,Ele_All,15; bonus2 bMagicAddEle,Ele_All,15; bonus2 bHPDrainRate,5,100; } - Id: 480320 AegisName: C_Aqua_Fin_Decoration Name: Costume Aqua Fin Decoration Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 179 - Id: 480321 AegisName: aegis_480321 Name: Costume Surfboard Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 180 - Id: 480322 AegisName: aegis_480322 Name: Opened Illusion Muffler Type: Armor Weight: 400 Defense: 30 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,750+(150*(.@r/2)); bonus bMaxSP,75+(15*(.@r/2)); if (.@r>=9) { bonus bVariableCastrate,-5; bonus bAspdRate,5; } - Id: 480323 AegisName: aegis_480323 Name: Opened Illusion Ancient Cape Type: Armor Weight: 600 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bAgi,5+(.@r/2); if (.@r>=9) { bonus bVariableCastrate,-5; bonus bAspdRate,5; } - Id: 480324 AegisName: Thanatos_Sword_FA Name: Magic Swordsman Thanatos's Sword-FA Type: Armor Weight: 500 Defense: 90 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 210 Refineable: true Gradable: true View: 23 Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=250) { bonus bPAtk,8; bonus bSMatk,8; } if (.@r>=9) { bonus2 bAddRace,RC_Angel,7; bonus2 bMagicAddRace,RC_Angel,7; bonus2 bAddRace,RC_Dragon,7; bonus2 bMagicAddRace,RC_Dragon,7; if (.@r>=11) { bonus2 bAddRace,RC_Angel,7; bonus2 bMagicAddRace,RC_Angel,7; bonus2 bAddRace,RC_Dragon,7; bonus2 bMagicAddRace,RC_Dragon,7; } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bIgnoreResRaceRate,RC_Angel,5; bonus2 bIgnoreResRaceRate,RC_Dragon,5; bonus2 bIgnoreMResRaceRate,RC_Angel,5; bonus2 bIgnoreMResRaceRate,RC_Dragon,5; if (.@g>=ENCHANTGRADE_B) { bonus2 bIgnoreResRaceRate,RC_Angel,5; bonus2 bIgnoreResRaceRate,RC_Dragon,5; bonus2 bIgnoreMResRaceRate,RC_Angel,5; bonus2 bIgnoreMResRaceRate,RC_Dragon,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bIgnoreResRaceRate,RC_Angel,5; bonus2 bIgnoreResRaceRate,RC_Dragon,5; bonus2 bIgnoreMResRaceRate,RC_Angel,5; bonus2 bIgnoreMResRaceRate,RC_Dragon,5; } } } } bonus bShortAtkRate,3*(.@r/2); bonus bLongAtkRate,3*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/2); bonus2 bAddSize,Size_Medium,5*(.@r/4); bonus2 bMagicAddSize,Size_Medium,5*(.@r/4); bonus2 bAddSize,Size_Large,5*(.@r/4); bonus2 bMagicAddSize,Size_Large,5*(.@r/4); - Id: 480325 AegisName: 2023RTC_S_Robe1 Name: 2023 ROS Champion Spark Cloak Type: Armor Weight: 200 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 181 Script: | .@r = getrefine(); bonus bMaxHP,2000*(.@r/2); bonus bAtkRate,8*(.@r/3); bonus bMatkRate,8*(.@r/3); if (.@r>=7) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=9) bonus2 bSubRace,RC_All,10; if (.@r>=11) { bonus2 bAddRace,RC_All,20; bonus2 bMagicAddRace,RC_All,20; } if (.@r>=13) { bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Player_Doram,8; } - Id: 480326 AegisName: 2023RTC_S_Robe2 Name: 2023 ROS Runner Up Spark Cloak Type: Armor Weight: 200 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 182 Script: | .@r = getrefine(); bonus bMaxHP,1800*(.@r/2); bonus bAtkRate,7*(.@r/3); bonus bMatkRate,7*(.@r/3); if (.@r>=7) { bonus bLongAtkRate,13; bonus bShortAtkRate,13; bonus2 bMagicAtkEle,Ele_All,13; } if (.@r>=9) bonus2 bSubRace,RC_All,9; if (.@r>=11) { bonus2 bAddRace,RC_All,18; bonus2 bMagicAddRace,RC_All,18; } if (.@r>=13) { bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Player_Doram,8; } - Id: 480327 AegisName: 2023RTC_S_Robe3 Name: 2023 ROS Third Place Spark Cloak Type: Armor Weight: 200 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 183 Script: | .@r = getrefine(); bonus bMaxHP,1600*(.@r/2); bonus bAtkRate,6*(.@r/3); bonus bMatkRate,6*(.@r/3); if (.@r>=7) { bonus bLongAtkRate,12; bonus bShortAtkRate,12; bonus2 bMagicAtkEle,Ele_All,12; } if (.@r>=9) bonus2 bSubRace,RC_All,8; if (.@r>=11) { bonus2 bAddRace,RC_All,16; bonus2 bMagicAddRace,RC_All,16; } if (.@r>=13) { bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Player_Doram,8; } - Id: 480328 AegisName: 2023RTC_S_Robe4 Name: 2023 ROS Decisive Battle Spark Cloak Type: Armor Weight: 200 Defense: 20 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true View: 184 Script: | .@r = getrefine(); bonus bMaxHP,1500*(.@r/2); bonus bAtkRate,5*(.@r/3); bonus bMatkRate,5*(.@r/3); if (.@r>=7) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; } if (.@r>=9) bonus2 bSubRace,RC_All,7; if (.@r>=11) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; } if (.@r>=13) { bonus2 bSubRace,RC_DemiHuman,8; bonus2 bSubRace,RC_Player_Human,8; bonus2 bSubRace,RC_Player_Doram,8; } - Id: 480329 AegisName: aegis_480329 Name: Costume ROS 2023 Flames Coat Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 184 - Id: 480330 AegisName: aegis_480330 Name: Costume Hero Cloak Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 185 - Id: 480331 AegisName: MD_Geffen_Cloth_JP Name: Magic Barrier Cloth Type: Armor Weight: 400 Defense: 38 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,5; bonus bDelayrate,-5; bonus2 bSubRace,RC_Player_Doram,5; bonus2 bSubRace,RC_Player_Human,5; if (.@r>=6) { bonus bAspdRate,5; bonus bDelayrate,-5; } if (.@r>=8) { bonus bAspdRate,10; bonus bDelayrate,-10; } - Id: 480332 AegisName: aegis_480332 Name: Dream Guardian Type: Armor Defense: 100 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 1 Refineable: true View: 71 Script: | .@r = getrefine(); bonus bAtkRate,.@r/2; bonus bMatkRate,.@r/2; if (.@r>=9) { bonus bBaseAtk,30; bonus bMatk,30; } if (.@r>=11) autobonus "{ bonus2 bMagicAtkEle,Ele_Ghost,20; bonus2 bMagicAtkEle,Ele_Water,20; }",30,10000,BF_WEAPON; - Id: 480333 AegisName: aegis_480333 Name: Medical Cape Type: Armor Weight: 600 Defense: 12 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100; bonus bMaxSP,10; bonus bLongAtkDef,5*.@r; if (BaseJob == Job_Alchemist) bonus bHealPower,2*.@r; - Id: 480334 AegisName: aegis_480334 Name: "[Not For Sale] Medical Cape" Type: Armor Weight: 600 Defense: 12 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 Refineable: true Script: | .@r = getrefine(); bonus bMaxHP,100; bonus bMaxSP,10; bonus bLongAtkDef,5*.@r; if (BaseJob == Job_Alchemist) bonus bHealPower,2*.@r; - Id: 480335 AegisName: aegis_480335 Name: Costume Poring Surfboard Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 186 - Id: 480336 AegisName: aegis_480336 Name: Costume Forest Summer Vacation Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 187 - Id: 480337 AegisName: aegis_480337 Name: Costume Rifle Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 188 - Id: 480338 AegisName: Astraea_Cape_LT Name: Asteria's Cloak-LT Type: Armor Weight: 400 Defense: 150 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 150 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus bAllStats,2; bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bBaseAtk,10*(.@r/2); bonus bMatk,10*(.@r/2); bonus2 bSubEle,Ele_Neutral,3*(.@r/3); if (.@r>=9) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } if (.@r>=11) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; } if (.@r>=13) bonus bDelayrate,-10; if (.@g>=ENCHANTGRADE_D) { bonus bRes,30; bonus bMRes,30; } if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,5; bonus bSMatk,5; } if (.@g>=ENCHANTGRADE_B) bonus bMaxHP,10000; if (.@g>=ENCHANTGRADE_A) bonus2 bSubRace,RC_All,5; - Id: 480339 AegisName: aegis_480339 Name: Opened Illusion Survivor's Manteau Type: Armor Weight: 550 Defense: 45 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bVit,15; bonus bDef,15*(.@r/2); bonus bMaxHP,150*(.@r/2); if (.@r>=9) { bonus bVariableCastrate,-5; bonus bAspdRate,5; } - Id: 480340 AegisName: aegis_480340 Name: "[Not For Sale] Improved Powered Wing" Type: Armor Weight: 100 Defense: 12 Slots: 1 Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("NC_PILEBUNKER"); bonus bMaxHPrate,3; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSkillAtk,"NC_ARMSCANNON",25*.@a; bonus2 bSkillAtk,"NC_COLDSLOWER",25*.@a; bonus2 bSkillAtk,"NC_FLAMELAUNCHER",25*.@a; if (getskilllv("NC_ARMSCANNON") == 5) bonus bDelayrate,-20; if (getskilllv("NC_NEUTRALBARRIER") == 3) { bonus2 bSubClass,Class_Boss,5; bonus bHPGainValue,100; bonus bSPGainValue,10; } if (getskilllv("NC_RESEARCHFE") == 5) bonus bNoKnockback; if (.@r>=9) { bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bAddClass,Class_Boss,10; } if (.@r>=11) { bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Wind,20; bonus2 bAddClass,Class_Boss,10; } - Id: 480342 AegisName: aegis_480342 Name: Monarch's Swords Type: Armor Weight: 500 Defense: 60 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 104 Script: | .@r = getrefine(); bonus bShortAtkRate,2*(.@r/3); bonus bLongAtkRate,2*(.@r/3); bonus2 bMagicAtkEle,Ele_All,2*(.@r/3); bonus2 bAddSize,Size_Medium,5*(.@r/5); bonus2 bAddSize,Size_Large,5*(.@r/5); bonus2 bMagicAddSize,Size_Medium,5*(.@r/5); bonus2 bMagicAddSize,Size_Large,5*(.@r/5); if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_Demon,20; bonus2 bIgnoreDefRaceRate,RC_Undead,20; bonus2 bIgnoreMdefRaceRate,RC_Demon,20; bonus2 bIgnoreMdefRaceRate,RC_Undead,20; } if (.@r>=11) { bonus2 bIgnoreDefRaceRate,RC_Demon,10; bonus2 bIgnoreDefRaceRate,RC_Undead,10; bonus2 bIgnoreMdefRaceRate,RC_Demon,10; bonus2 bIgnoreMdefRaceRate,RC_Undead,10; } - Id: 480343 AegisName: aegis_480343 Name: Battle Surcoat Type: Armor Weight: 300 Defense: 10 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",3; skill "MO_TRIPLEATTACK",3; if (.@r>=11) { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",5; skill "MO_TRIPLEATTACK",5; } if (.@r>=13) { bonus bAspdRate,3; bonus bFlee,10; skill "TF_DOUBLE",10; skill "MO_TRIPLEATTACK",10; } - Id: 480344 AegisName: aegis_480344 Name: Costume Thornvine Crystal Scythe # !todo check english name Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 189 - Id: 480345 AegisName: Season_Hood_Spring Name: "Manteau of Mystical Beast: Spring" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-20; bonus bPow,2; bonus bCon,2; bonus bBaseAtk,5*(.@r/2); bonus bShortAtkRate,2*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bDelayrate,-10; bonus bPAtk,2; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,7; bonus bAtkRate,7; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,3; bonus bDef,50; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,5; bonus bPAtk,5; } } } } - Id: 480346 AegisName: Season_Hood_Summer Name: "Manteau of Mystical Beast: Summer" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-20; bonus bPow,2; bonus bCon,2; bonus bBaseAtk,5*(.@r/2); bonus bLongAtkRate,2*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bDelayrate,-10; bonus bPAtk,2; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,7; bonus bAtkRate,7; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,3; bonus bDef,50; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,5; bonus bPAtk,5; } } } } - Id: 480347 AegisName: Season_Hood_Autumn Name: "Manteau of Mystical Beast: Autumn" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,2; bonus bCon,2; bonus bUseSPrate,15; bonus bMatk,5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bAspdRate,5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bDelayrate,-10; bonus bSMatk,2; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,7; bonus bMatkRate,7; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,3; bonus bDef,50; bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,5; bonus bSMatk,5; } } } } - Id: 480348 AegisName: Season_Hood_Winter Name: "Manteau of Mystical Beast: Winter" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,4; bonus bPow,1; bonus bCon,1; bonus bBaseAtk,4*(.@r/2); bonus bCritAtkRate,(.@r/3); bonus bCrt,(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-5; bonus bCRate,3; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bDelayrate,-10; bonus bPAtk,2; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,7; bonus bLongAtkRate,7; bonus bCritical,7; if (.@g>=ENCHANTGRADE_B) { bonus bCRate,1; bonus bPow,5; bonus bCon,5; bonus bCrt,3; if (.@g>=ENCHANTGRADE_A) { bonus bCritAtkRate,10; bonus bCRate,3; } } } } - Id: 480349 AegisName: Circul_Of_Life_Spring Name: "Circulation of Life: Spring" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-20; bonus bPow,4; bonus bCon,4; bonus bBaseAtk,10*(.@r/2); bonus bShortAtkRate,2*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bDelayrate,-10; bonus bPAtk,7; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,7; bonus bAtkRate,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bDef,50; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,7; bonus bPAtk,9; } } } } - Id: 480350 AegisName: Circul_Of_Life_Summer Name: "Circulation of Life: Summer" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,-20; bonus bPow,4; bonus bCon,4; bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,2*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bDelayrate,-10; bonus bPAtk,7; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bLongAtkRate,7; bonus bAtkRate,10; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,7; bonus bDef,50; bonus bPow,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,7; bonus bPAtk,9; } } } } - Id: 480351 AegisName: Circul_Of_Life_Autumn Name: "Circulation of Life: Autumn" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSpl,4; bonus bCon,4; bonus bUseSPrate,15; bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus bAspdRate,5; bonus bVariableCastrate,-5; if (.@r>=11) { bonus bDelayrate,-10; bonus bSMatk,7; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,7; bonus bMatkRate,10; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,7; bonus bDef,50; bonus bSpl,5; bonus bCon,5; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,7; bonus bSMatk,9; } } } } - Id: 480352 AegisName: Circul_Of_Life_Winter Name: "Circulation of Life: Winter" Type: Armor Weight: 700 Defense: 80 Slots: 1 Locations: Garment: true ArmorLevel: 2 EquipLevelMin: 250 Refineable: true Gradable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,4+(.@r/2); bonus bPow,2; bonus bCon,2; bonus bBaseAtk,5*(.@r/2); bonus bCritAtkRate,(.@r/3); bonus bCrt,(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-5; bonus bCRate,3; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus bDelayrate,-10; bonus bPAtk,7; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMRes,25; bonus bRes,25; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,7; bonus bLongAtkRate,7; bonus bCritical,10; if (.@g>=ENCHANTGRADE_B) { bonus bCRate,5; bonus bPow,5; bonus bCon,5; bonus bCrt,5; if (.@g>=ENCHANTGRADE_A) { bonus bCritAtkRate,15; bonus bCRate,7; } } } } - Id: 480358 AegisName: aegis_480358 Name: Dark Shadow Scarf Type: Armor Weight: 100 Defense: 30 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,5; bonus2 bSubRace,RC_Angel,7; bonus2 bSubRace,RC_Demon,7; bonus2 bAddRace,RC_Angel,7; bonus2 bAddRace,RC_Demon,7; bonus2 bSkillAtk,"RA_ARROWSTORM",10*getskilllv("SC_MAELSTROM"); if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus bDelayrate,-10; - Id: 480359 AegisName: aegis_480359 Name: "[Not For Sale] Dark Shadow Scarf" Type: Armor Weight: 100 Defense: 30 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Garment: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,5; bonus2 bSubRace,RC_Angel,7; bonus2 bSubRace,RC_Demon,7; bonus2 bAddRace,RC_Angel,7; bonus2 bAddRace,RC_Demon,7; bonus2 bSkillAtk,"RA_ARROWSTORM",10*getskilllv("SC_MAELSTROM"); if (.@r>=7) { bonus bMaxHPrate,7; bonus bMaxSPrate,7; } if (.@r>=9) bonus bLongAtkRate,7; if (.@r>=11) bonus bDelayrate,-10; - Id: 480360 AegisName: aegis_480360 Name: Costume Major Huuma Shuriken Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 190 - Id: 480361 AegisName: aegis_480361 Name: Costume Twin Blades of Evil Soul Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 191 - Id: 480362 AegisName: aegis_480362 Name: Costume White Nine-Tailed Fox's Tail Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 192 - Id: 480363 AegisName: aegis_480363 Name: Costume Oversized Miss Rabbit Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 193 - Id: 480364 AegisName: aegis_480364 Name: Costume Black Cat Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 26 - Id: 480365 AegisName: aegis_480365 Name: Fallen Protect Manteau Type: Armor Weight: 1500 Defense: 55 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,20*(.@r/2); bonus2 bAddSize,Size_All,5*(.@r/4); if (.@r>=7) { bonus bAspdRate,10; bonus bAtkRate,7; if (.@r>=9) { bonus bLongAtkRate,15; if (.@r>=11) { bonus2 bSkillAtk,"LG_CANNONSPEAR",BaseLevel/2; bonus2 bSkillAtk,"LG_BANISHINGPOINT",2*(BaseLevel/2); } } } - Id: 480372 AegisName: Giant_Mad_Bunny_TW Name: Mad Bunny Backpack Type: Armor Weight: 200 Slots: 1 Locations: Garment: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true View: 172 Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Neutral,10; bonus bBaseAtk,10*(.@r/2); bonus bMatk,10*(.@r/2); bonus bPow,2*(.@r/3); bonus bCon,2*(.@r/3); bonus bSpl,2*(.@r/3); if (.@r>=7) { bonus bAtkRate,10; bonus bMatkRate,10; if (.@r>=9) { bonus bShortAtkRate,12; bonus bLongAtkRate,12; bonus2 bMagicAtkEle,Ele_All,12; if (.@r>=11) { bonus bDelayrate,-10; if (.@r>=13) { bonus2 bAddRace,RC_All,15; bonus2 bMagicAddRace,RC_All,15; } } } } - Id: 480405 AegisName: C_SantaTeddyBear Name: Costume Santa Teddy Bear Doll Bag Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 202 - Id: 480408 AegisName: aegis_480408 Name: Costume Dragon Wing Type: Armor Locations: Costume_Garment: true ArmorLevel: 1 View: 204 - Id: 490004 AegisName: Atker_Ring Name: Attacker Booster Ring Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bMaxHPrate,3; bonus bCritAtkRate,5; - Id: 490005 AegisName: Ele_Earing Name: Elemental Booster Earrings Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bMaxSPrate,3; bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Wind,5; bonus2 bMagicAtkEle,Ele_Water,5; bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Neutral,5; - Id: 490006 AegisName: Defn_Earing Name: Defender Booster Earrings Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bMaxSPrate,3; bonus2 bMagicAtkEle,Ele_Undead,5; bonus2 bMagicAtkEle,Ele_Poison,5; bonus2 bMagicAtkEle,Ele_Dark,5; bonus2 bMagicAtkEle,Ele_Ghost,5; bonus2 bMagicAtkEle,Ele_Holy,5; - Id: 490007 AegisName: Ran_Brooch Name: Range Booster Brooches Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoStorage: true NoCart: true NoMail: true NoAuction: true NoGuildStorage: true Script: | bonus bAspdRate,10; bonus bVariableCastrate,-10; bonus bMaxHPrate,3; bonus bLongAtkRate,2; - Id: 490009 AegisName: Capricon_Ring_J Name: Capricon Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bFlee2,10; bonus bMaxSP,100; bonus bAtkRate,5; bonus bMatkRate,5; bonus2 bSkillUseSP,"TF_BACKSLIDING",2; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) { bonus bAspdRate,5; bonus bAtkRate,5; bonus bMatkRate,5; bonus bDelayrate,-30; } - Id: 490010 AegisName: Virgo_Ring_J Name: Virgo Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bMatkRate,5; bonus3 bAddEff,Eff_Stun,200,ATF_MAGIC; if (eaclass()&EAJL_THIRD && BaseJob == Job_Priest) { bonus bAspdRate,5; bonus bMatkRate,5; bonus2 bVariableCastrate,"AB_JUDEX",-50; } - Id: 490013 AegisName: Devil_Ring Name: Devil Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddRace,RC_All,5; bonus2 bSkillCooldown,"SR_ASSIMILATEPOWER",-3000; if (getskilllv("SR_EARTHSHAKER") == 5) { bonus2 bSkillUseSP,"SR_HOWLINGOFLION",35; bonus2 bSkillUseSP,"SR_KNUCKLEARROW",4; } if (getskilllv("SR_RAMPAGEBLASTER") == 5) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",30; bonus2 bSkillAtk,"SR_KNUCKLEARROW",100; } if (getskilllv("SR_RIDEINLIGHTNING") == 5) { bonus bAspdRate,10; bonus bPerfectHitAddRate,15; } - Id: 490014 AegisName: Noblesse_Attack_Ring Name: Noblesse Attack Ring Type: Armor Defense: 5 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus bCritAtkRate,5; - Id: 490015 AegisName: Noblesse_Magic_Ring Name: Noblesse Magic Ring Type: Armor Defense: 5 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,3; bonus bVariableCastrate,-5; bonus2 bMagicAddEle,Ele_All,5; - Id: 490016 AegisName: Bracelet_Of_Puppet Name: Puppet Bracelet Type: Armor Buy: 20 Weight: 400 Defense: 5 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,10; bonus bMaxHPrate,10; - Id: 490017 AegisName: Imperial_Attack_Ring Name: Imperial Attack Ring Type: Armor Weight: 0 Defense: 8 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 125 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus bCritAtkRate,7; - Id: 490018 AegisName: Imperial_Magic_Ring Name: Imperial Magic Ring Type: Armor Weight: 0 Defense: 8 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 125 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,5; bonus bVariableCastrate,-7; bonus2 bMagicAddEle,Ele_All,7; - Id: 490019 AegisName: Grace_Attack_Ring Name: Grace Attack Ring Type: Armor Weight: 0 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus bCritAtkRate,10; - Id: 490020 AegisName: Grace_Magic_Ring Name: Grace Magic Ring Type: Armor Weight: 0 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,7; bonus bVariableCastrate,-10; bonus2 bMagicAddEle,Ele_All,10; - Id: 490022 AegisName: TrustRing Name: Thunder Ring Type: Armor Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddRace,RC_All,5; bonus bMatkRate,5; bonus2 bAddEle,Ele_Water,10; bonus2 bMagicAddEle,Ele_Water,10; bonus2 bSubEle,Ele_Water,5; - Id: 490023 AegisName: Kukulkan_Tooth_TW Name: Kukulkan's Tooth Type: Armor Weight: 1500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 70 Script: | bonus bVariableCastrate,-10; bonus bAllStats,1; - Id: 490024 AegisName: Auto_B_R Name: Automatic Booster R Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Script: | bonus bAtkRate,5; bonus bMaxHPrate,5; - Id: 490025 AegisName: Auto_B_L Name: Automatic Booster L Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Script: | bonus bAtkRate,5; bonus bMaxSPrate,5; - Id: 490026 AegisName: Auto_BC_R Name: Automatic Battle Chip R Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Script: | bonus bMatkRate,5; bonus bMaxHPrate,5; - Id: 490027 AegisName: Auto_BC_L Name: Automatic Battle Chip L Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Script: | bonus bMatkRate,5; bonus bMaxSPrate,5; - Id: 490028 AegisName: Aries_Ring_J Name: Aries Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; bonus2 bSkillUseSP,"LG_SHIELDSPELL",20; if (eaclass()&EAJL_THIRD && BaseJob == Job_Crusader) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; bonus bAtkRate,5; bonus2 bSkillAtk,"PA_SHIELDCHAIN",100; bonus2 bVariableCastrate,"PA_SHIELDCHAIN",-50; } - Id: 490029 AegisName: Geffenia_Magictool_Ice Name: Geffenia Ice Magic Tool Type: Armor Weight: 500 Defense: 2 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,10; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"WZ_STORMGUST",2*(BaseLevel/3); if (getskilllv("WL_COMET") == 5) { bonus2 bSkillUseSP,"WL_JACKFROST",35; bonus2 bFixedCastrate,"WL_JACKFROST",-100; } if (getskilllv("WL_JACKFROST") == 5) { bonus2 bSkillAtk,"WL_COMET",50; bonus2 bSkillUseSP,"WL_COMET",100; } if (getskilllv("WL_STASIS") == 5) { bonus2 bSkillAtk,"WL_FROSTMISTY",50; bonus2 bSkillAtk,"WL_JACKFROST",50; } if (getskilllv("WL_RECOGNIZEDSPELL") == 5) bonus bDelayrate,-30; - Id: 490030 AegisName: Temporal_Ring_TW Name: Temporal Ring Type: Armor Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,1; - Id: 490031 AegisName: Petal_Tail Name: Petal Tail Type: Armor Buy: 20 Weight: 100 Defense: 3 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspd,1; bonus2 bAddClass,Class_Boss,5; bonus bCritAtkRate,5; bonus bCriticalLong,5; - Id: 490032 AegisName: Gemini_Ring_J Name: Gemini Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bHit,50; bonus bMaxSP,100; bonus bDelayrate,-5; bonus bAtkRate,5; bonus bMatkRate,5; if ((eaclass()&EAJL_THIRD) && (BaseJob == Job_Bard || BaseJob == Job_Dancer)) { bonus bDelayrate,-5; bonus bAtkRate,5; bonus bMatkRate,5; bonus2 bSkillAtk,"CG_ARROWVULCAN",300; bonus2 bVariableCastrate,"CG_ARROWVULCAN",-50; } - Id: 490033 AegisName: Fallen_Angel_tear Name: Fallen Angel's Tear Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 30 Script: | bonus bAtkRate,6; bonus bMatkRate,6; bonus bHit,15; - Id: 490034 AegisName: Pisces_Ring_J Name: Pisces Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bMaxSP,100; bonus bDelayrate,-5; bonus bMatkRate,5; bonus2 bSkillUseSP,"MG_COLDBOLT",5; bonus2 bSkillUseSP,"MG_FIREBOLT",5; bonus2 bSkillUseSP,"MG_LIGHTNINGBOLT",5; if (eaclass()&EAJL_THIRD && BaseJob == Job_Sage) { bonus bAspdRate,10; bonus bDelayrate,-5; bonus2 bSkillAtk,"MG_COLDBOLT",50; bonus2 bSkillAtk,"MG_FIREBOLT",50; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",50; bonus2 bVariableCastrate,"MG_COLDBOLT",-50; bonus2 bVariableCastrate,"MG_FIREBOLT",-50; bonus2 bVariableCastrate,"MG_LIGHTNINGBOLT",-50; } - Id: 490035 AegisName: Pendant_of_Solomon Name: Solomon's Pendant Type: Armor Weight: 500 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bInt,5; bonus bDex,5; bonus bMatkRate,10; skill "HW_MAGICPOWER",5; autobonus3 "{ bonus2 bMagicAtkEle,Ele_Fire,30; bonus2 bMagicAtkEle,Ele_Water,30; bonus2 bMagicAtkEle,Ele_Wind,30; bonus2 bMagicAtkEle,Ele_Holy,30; }",1000,10000,"HW_MAGICPOWER","{}"; - Id: 490036 AegisName: Pendant_of_Solomon_ Name: Solomon's Pendant # !todo check english name Type: Armor Weight: 500 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bInt,5; bonus bDex,5; bonus bMatkRate,10; skill "HW_MAGICPOWER",5; autobonus3 "{ bonus2 bMagicAtkEle,Ele_Fire,30; bonus2 bMagicAtkEle,Ele_Water,30; bonus2 bMagicAtkEle,Ele_Wind,30; bonus2 bMagicAtkEle,Ele_Holy,30; }",1000,10000,"HW_MAGICPOWER","{}"; - Id: 490037 AegisName: Dark_Ring Name: Dark Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@val = getskilllv("GC_WEAPONCRUSH"); bonus bStr,5+.@val; bonus bAgi,5+.@val; bonus bDex,5+.@val; bonus bBaseAtk,40*.@val; bonus2 bAddRace,RC_All,5; if (getskilllv("GC_CROSSIMPACT") == 5) bonus bDelayrate,-30; if (getskilllv("GC_DARKCROW") == 5) bonus2 bSkillCooldown,"GC_DARKCROW",-25000; if (getskilllv("GC_CLOAKINGEXCEED") == 5) { bonus bMaxSPrate,15; bonus bAspd,2; } - Id: 490038 AegisName: Sixth_Sense_Ring Name: Sixth Sense Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,15; bonus bInt,7; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",(BaseLevel/5); if (getskilllv("SO_CLOUD_KILL") == 5) { bonus bVariableCastrate,-15; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } if (getskilllv("SO_PSYCHIC_WAVE") == 5) bonus bDelayrate,-30; if (getskilllv("SO_STRIKING") == 5) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; } if (getskilllv("SO_VACUUM_EXTREME") == 5) { bonus2 bSkillUseSP,"SO_PSYCHIC_WAVE",20; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } - Id: 490041 AegisName: Sagittarius_Ring_J Name: Sagittarius Ring Type: Armor Buy: 20 Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 Script: | bonus bAspdRate,5; bonus bMaxSP,100; bonus bAtkRate,5; bonus bSPGainValue,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Hunter) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bDelayrate,-10; bonus bAtkRate,5; bonus2 bSkillAtk,"RA_ARROWSTORM",30; bonus bSPDrainValue,3; } - Id: 490042 AegisName: Kingly_Ring Name: Monarch Ring Type: Armor Buy: 20 Weight: 100 Defense: 150 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMdef,15; bonus bAllStats,1; bonus bAtkRate,6; bonus bMatkRate,6; bonus2 bSubClass,Class_Normal,3; - Id: 490043 AegisName: HalfBlood_Princess_Ring Name: Half Blood Princess Ring Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bAllStats,15; bonus bAspdRate,15; bonus2 bSkillAtk,"WL_TETRAVORTEX",BaseLevel; bonus2 bResEff,Eff_WhiteImprison,10000; - Id: 490044 AegisName: Sin_Ring_R Name: Sinful Ruby Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bAtkRate,10; - Id: 490045 AegisName: Sin_Necklace_R Name: Sinful Ruby Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bAtkRate,10; - Id: 490046 AegisName: Sin_Ring_E Name: Sinful Emerald Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bAtkRate,10; - Id: 490047 AegisName: Sin_Necklace_E Name: Sinful Emerald Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bAtkRate,10; - Id: 490048 AegisName: Sin_Ring_T Name: Sinful Topaz Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490049 AegisName: Sin_Necklace_T Name: Sinful Topaz Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490050 AegisName: Sin_Ring_A Name: Sinful Amethyst Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490051 AegisName: Sin_Necklace_A Name: Sinful Amethyst Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490052 AegisName: Sin_Ring_S Name: Sinful Sapphire Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bMatkRate,10; - Id: 490053 AegisName: Sin_Necklace_S Name: Sinful Sapphire Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bMatkRate,10; - Id: 490054 AegisName: Sin_Ring_O Name: Sinful Opal Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bAtkRate,10; - Id: 490055 AegisName: Sin_Necklace_O Name: Sinful Opal Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bAtkRate,10; - Id: 490056 AegisName: Shine_Ring_R Name: Brilliant Light Ruby Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bAtkRate,10; - Id: 490057 AegisName: Shine_Necklace_R Name: Brilliant Light Ruby Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bAtkRate,10; - Id: 490058 AegisName: Shine_Ring_A Name: Brilliant Light Amethyst Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490059 AegisName: Shine_Necklace_A Name: Brilliant Light Amethyst Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490060 AegisName: Shine_Ring_E Name: Brilliant Light Emerald Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490061 AegisName: Shine_Necklace_E Name: Brilliant Light Emerald Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bMatkRate,7; bonus bAtkRate,7; - Id: 490062 AegisName: Shine_Ring_Z Name: Brilliant Light Zircon Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bAtkRate,10; - Id: 490063 AegisName: Shine_Necklace_Z Name: Brilliant Light Zircon Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bAtkRate,10; - Id: 490064 AegisName: Shine_Ring_S Name: Brilliant Light Sapphire Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bMatkRate,10; - Id: 490065 AegisName: Shine_Necklace_S Name: Brilliant Light Sapphire Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bMatkRate,10; - Id: 490066 AegisName: Shine_Ring_AQ Name: Brilliant Light Aquamarine Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bAspdRate,7; bonus bAtkRate,10; - Id: 490067 AegisName: Shine_Necklace_AQ Name: Brilliant Light Aquamarine Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 170 Script: | bonus bVariableCastrate,-7; bonus bAtkRate,10; - Id: 490068 AegisName: RingofVenus Name: Ring of Venus Type: Armor Weight: 500 Defense: 2 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@p = getitempos(); .@a = readparam(bAgi); .@d = readparam(bDex); if (.@p == EQP_ACC_L) { bonus2 bAddRace,RC_All,.@a / 10; bonus2 bMagicAddRace,RC_All,.@a/10; if (.@a>=125) { bonus bSpeedRate,25; bonus bDelayrate,-25; } } if (.@p == EQP_ACC_R) { bonus bLongAtkRate,.@d / 10; bonus2 bResEff,Eff_Stun,3*(.@d/10); if (.@d>=125) { bonus bFixedCastrate,-70; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus2 bSubEle,Ele_Fire,5; } } - Id: 490069 AegisName: Morrigane_Belt_IL Name: Illusion Morrigane's Belt Type: Armor Weight: 200 Slots: 1 Jobs: All: true Novice: false Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMaxHPrate,5; bonus bStr,3; - Id: 490070 AegisName: Morrigane_Pendant_IL Name: Illusion Morrigane's Pendant Type: Armor Weight: 200 Slots: 1 Jobs: All: true Novice: false Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bCritical,5; bonus bBaseAtk,20; - Id: 490072 AegisName: E_Illusion_B_R Name: Illusion Booster R(Bound) Type: Armor Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,5; - Id: 490073 AegisName: E_Illusion_B_L Name: Illusion Booster L(Bound) Type: Armor Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,5; - Id: 490074 AegisName: E_Illusion_BC_R Name: Illusion Battle Chip R(Bound) Type: Armor Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,5; - Id: 490075 AegisName: E_Illusion_BC_L Name: Illusion Battle Chip L(Bound) Type: Armor Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,5; - Id: 490076 AegisName: Ring_Of_Nature Name: Ring of Nature Type: Armor Weight: 500 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddRace,RC_All,10; bonus bMatkRate,10; bonus bHPGainValue,200; bonus bSPGainValue,20; - Id: 490077 AegisName: MD_Geffen_Ring Name: Force Condenser Type: Armor Weight: 100 Defense: 15 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 230 Script: | bonus bMaxHPrate,5; bonus bAtkRate,8; - Id: 490078 AegisName: MD_Geffen_Ring2 Name: Mental Condenser Type: Armor Weight: 100 Defense: 15 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 230 Script: | bonus bMaxHPrate,5; bonus bMatkRate,8; - Id: 490079 AegisName: SoulExpansionRing Name: Soul Expansion Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,15; bonus bInt,7; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"WL_SOULEXPANSION",(BaseLevel/7); if (getskilllv("WL_STASIS") == 5) { bonus2 bMagicAtkEle,Ele_Dark,10; bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bMagicAtkEle,Ele_Neutral,10; } if (getskilllv("WL_TELEKINESIS_INTENSE") == 5) bonus2 bSkillCooldown,"WL_TELEKINESIS_INTENSE",-75000; if (getskilllv("WL_HELLINFERNO") == 5) { bonus bAspdRate,15; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } if (getskilllv("WL_RECOGNIZEDSPELL") == 5) bonus bDelayrate,-30; UnEquipScript: | sc_end SC_TELEKINESIS_INTENSE; - Id: 490083 AegisName: Themis_Balance Name: Themis Balance Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,5; bonus bInt,7; bonus2 bSkillAtk,"LG_RAYOFGENESIS",(BaseLevel/5); if (getskilllv("LG_INSPIRATION") == 5) { bonus2 bVariableCastrate,"LG_RAYOFGENESIS",-50; bonus2 bSkillUseSP,"LG_RAYOFGENESIS",20; } if (getskilllv("CR_DEVOTION") == 5) bonus2 bMagicAddClass,Class_Boss,15; if (getskilllv("LG_HESPERUSLIT") == 5) bonus bDelayrate,-30; - Id: 490084 AegisName: Dictator_Ring_TW Name: Dictator Earrings Type: Armor Weight: 100 Defense: 40 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,1; bonus bDelayrate,-3; - Id: 490086 AegisName: Eclipsedefmind_TW Name: Lunar Eclipse Guardian Heart Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,10; bonus bMaxHPrate,8; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSubSkill,"SJ_NEWMOONKICK",20; bonus2 bSubSkill,"SJ_FULLMOONKICK",20; skill "MG_SIGHT",1; - Id: 490087 AegisName: 4th_Q_Necklace Name: Hourglass Necklace Type: Armor Buy: 20 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAllTraitStats,6-(JobLevel/5); - Id: 490088 AegisName: 2020maypay_06 Name: Desperate Connections Ring Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,5; bonus bMatkRate,5; - Id: 490089 AegisName: Alice_Hug_Pillow_TW Name: Alice Maid Pillow Type: Armor Weight: 200 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bMdef,10; bonus bAllStats,2; bonus bMaxHPrate,5; bonus2 bSubSize,Size_Medium,5; bonus2 bSubRace,RC_DemiHuman,3; bonus2 bSubRace,RC_Player_Human,3; if (getpetinfo(PETINFO_EGGID) == 9027) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } if (getpetinfo(PETINFO_EGGID) == 9030) { bonus2 bSubRace,RC_DemiHuman,2; bonus2 bSubRace,RC_Player_Human,2; } - Id: 490090 AegisName: Egir_Ring_K Name: Aegir Ring Type: Armor Weight: 200 Defense: 5 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Script: | bonus2 bMagicAtkEle,Ele_All,2; bonus bMatk,10; - Id: 490091 AegisName: Egir_Necklace_K Name: Aegir Necklace Type: Armor Weight: 200 Defense: 5 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 40 Script: | bonus bLongAtkRate,2; bonus bShortAtkRate,2; bonus bBaseAtk,10; - Id: 490092 AegisName: Egirnion_Ring Name: Aegirnion Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 140 Script: | bonus2 bMagicAtkEle,Ele_All,5; bonus bMatk,30; - Id: 490093 AegisName: Egirnion_Necklace Name: Aegirnion Necklace Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 140 Script: | bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bBaseAtk,30; - Id: 490094 AegisName: Record_Sward_TW Name: Record of Destroy (Swordman) Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bMdef,10; bonus bDelayrate,-5; bonus bAtkRate,5; bonus bMatkRate,5; - Id: 490095 AegisName: Record_Acher_TW Name: Record of Destroy (Archer) Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bMdef,10; bonus bDelayrate,-5; bonus bAtkRate,5; bonus bMatkRate,5; - Id: 490096 AegisName: Ring_Of_Hunter Name: Ring of Hunter Type: Armor Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bAddClass,Class_All,10; bonus2 bSkillAtk,"SC_FATALMENACE",BaseLevel/3; if (getskilllv("SC_ESCAPE") == 5) bonus2 bSkillCooldown,"SC_ESCAPE",500; if (getskilllv("SC_FATALMENACE") == 10) bonus bDelayrate,-30; if (getskilllv("SC_FEINTBOMB") == 10) bonus bSPDrainValue,3; - Id: 490097 AegisName: TimeOverloadRing_TW Name: Time Overload Ring # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bAllStats,2; bonus bMdef,5; - Id: 490098 AegisName: Ring_of_Pazuzu Name: Ring of Pazuzu Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bInt,7; bonus bMdef,15; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"WZ_VERMILION",(BaseLevel*6); bonus2 bSkillAtk,"WL_CRIMSONROCK",(BaseLevel/3); bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",(BaseLevel/3); if (getskilllv("WL_CHAINLIGHTNING") == 5) { bonus2 bSkillUseSP,"WL_CHAINLIGHTNING",35; bonus2 bSkillCooldown,"WL_CHAINLIGHTNING",-500; } if (getskilllv("WL_DRAINLIFE") == 5) { bonus bVariableCastrate,-15; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } if (getskilllv("WL_RADIUS") == 3) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Neutral,10; } if (getskilllv("WL_RECOGNIZEDSPELL") == 5) bonus bDelayrate,-30; - Id: 490099 AegisName: Thanatos_Pendant Name: Thanatos's Necklace Type: Armor Weight: 100 Locations: Right_Accessory: true ArmorLevel: 1 Script: | bonus bMatkRate,5; bonus bAtkRate,5; - Id: 490100 AegisName: Red_Force_Pendant Name: Red Force Pendant Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 Script: | bonus bMatkRate,5; bonus bAtkRate,5; - Id: 490101 AegisName: Blue_Mental_Pendant Name: Blue Mental Pendant Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 Script: | bonus bMatkRate,5; bonus bAtkRate,5; - Id: 490102 AegisName: Skull_Ring Name: Skull Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,15; bonus bInt,7; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",(BaseLevel/7); if (getskilllv("SP_SOULCOLLECT") == 5) { bonus bAspdRate,15; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } if (getskilllv("SP_SOULENERGY") == 5) bonus bDelayrate,-30; if (getskilllv("SP_SOULREAPER") == 5) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Dark,10; bonus2 bMagicAtkEle,Ele_Ghost,10; } if (getskilllv("SP_SOULCURSE") == 5) { bonus2 bSkillUseSP,"SP_CURSEEXPLOSION",25; bonus2 bSkillCooldown,"SP_CURSEEXPLOSION",-500; } - Id: 490103 AegisName: Garnet_Pendant_TW Name: Garnet Crystal Pendant Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | if (eaclass()&EAJL_THIRD && BaseJob == Job_Wizard) { bonus bMdef,15; bonus2 bSubEle,Ele_Neutral,5; bonus bLongAtkDef,5; } else { bonus bMdef,15; bonus2 bSubEle,Ele_Neutral,5; bonus bLongAtkDef,5; skill "WL_RECOGNIZEDSPELL",1; bonus2 bSkillUseSP,"WL_RECOGNIZEDSPELL",-100; bonus2 bSkillCooldown,"WL_RECOGNIZEDSPELL",120000; } - Id: 490104 AegisName: Ring_Of_Phoenix Name: Ring of Phoenix Type: Armor Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVit,7; bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"LG_OVERBRAND",BaseLevel/3; bonus2 bSkillAtk,"PA_SHIELDCHAIN",BaseLevel; if (getskilllv("LG_INSPIRATION") == 5) bonus bVariableCastrate,-30; if (getskilllv("LG_KINGS_GRACE") == 5) { bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; } if (getskilllv("LG_FORCEOFVANGUARD") == 5) { bonus bAspdRate,10; bonus bHPGainValue,100; bonus bSPGainValue,10; } if (getskilllv("LG_MOONSLASHER") == 5) bonus2 bAddClass,Class_Boss,15; - Id: 490105 AegisName: Soul_of_Drowned Name: Undersea Temple Treasure Type: Armor Buy: 200000 Weight: 100 Defense: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bMatkRate,15; - Id: 490106 AegisName: Gray_W_Pendant Name: Gray Wolf Pendant Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 190 Script: | bonus bAtkRate,7; bonus bMaxHPrate,5; - Id: 490107 AegisName: Gray_W_Ring Name: Gray Wolf Ring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 190 Script: | bonus bAtkRate,7; bonus bMaxSPrate,5; - Id: 490108 AegisName: Gray_W_Earing Name: Gray Wolf Earring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 190 Script: | bonus bMatkRate,7; bonus bMaxHPrate,5; - Id: 490109 AegisName: Gray_W_Necklace Name: Gray Wolf Necklace Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 190 Script: | bonus bMatkRate,7; bonus bMaxSPrate,5; - Id: 490110 AegisName: Anulus_Ira Name: Anulus Ira Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,7; bonus2 bAddRace,RC_All,10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",(BaseLevel/5); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",2*(BaseLevel/5); if (getskilllv("SR_KNUCKLEARROW") == 10) bonus bLongAtkRate,10; if (getskilllv("SR_LIGHTNINGWALK") == 5) bonus bPerfectHitAddRate,30; if (getskilllv("SR_RAISINGDRAGON") == 10) { bonus2 bVariableCastrate,"CH_SOULCOLLECT",-50; bonus2 bVariableCastrate,"SR_LIGHTNINGWALK",-50; } if (getskilllv("SR_GENTLETOUCH_CHANGE") == 5) { bonus bDelayrate,-15; bonus bHPGainValue,100; bonus bSPGainValue,10; } - Id: 490113 AegisName: Jasper_Ring Name: Jasper Ring Type: Armor Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,7; bonus2 bAddClass,Class_All,10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",BaseLevel/3; bonus2 bSkillAtk,"RK_SONICWAVE",BaseLevel/3; if (getskilllv("RK_IGNITIONBREAK") >= 5) bonus bMaxHPrate,15; if (getskilllv("RK_WINDCUTTER") >= 5) bonus2 bAddClass,Class_Boss,15; if (getskilllv("RK_SONICWAVE") >= 10) { bonus bAspdRate,10; bonus bHPGainValue,100; bonus bSPGainValue,10; } if (getskilllv("RK_DEATHBOUND") >= 10) bonus2 bAddClass,Class_All,10; - Id: 490114 AegisName: Paradise_Lost Name: Paradise Lost Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus bAtkRate,10; bonus bMatkRate,10; - Id: 490118 AegisName: RingOfAdoramus Name: Ring of Adoramus Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,15; bonus bInt,7; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"AB_ADORAMUS",(BaseLevel/3); bonus2 bSkillAtk,"AB_JUDEX",(BaseLevel/3); if (getskilllv("AB_CLEARANCE") == 5) { bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Neutral,10; } if (getskilllv("AB_ORATIO") == 10) { bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus bHealPower,30; bonus bUseSPrate,-10; } if (getskilllv("AB_ADORAMUS") == 10) { bonus bAspdRate,15; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } if (getskilllv("AB_OFFERTORIUM") == 5) bonus bVariableCastrate,-30; - Id: 490119 AegisName: Battle_Core Name: Alpha Core Type: Armor Weight: 1500 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | skill "ECL_SNOWFLIP",1; skill "ECL_PEONYMAMY",1; skill "ECL_SADAGUI",1; skill "ECL_SEQUOIADUST",1; - Id: 490120 AegisName: Sprint_Ring_IL Name: Illusion Sprint Ring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bVariableCastrate,-10; - Id: 490121 AegisName: Sprint_Glove_IL Name: Illusion Sprint Glove Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bDelayrate,-3; - Id: 490122 AegisName: 1Para_Acc_L_A Name: Paradise Ring Type: Armor Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,2; bonus bNoCastCancel; - Id: 490123 AegisName: 1Para_Acc_R_A Name: Paradise Gloves Type: Armor Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,10; skill "AL_HEAL",1; - Id: 490124 AegisName: 1Para_Acc_L_B Name: Paradise Magic Ring Type: Armor Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,2; bonus bNoCastCancel; - Id: 490125 AegisName: 1Para_Acc_R_B Name: Paradise Necklace Type: Armor Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "AL_HEAL",1; bonus bVariableCastrate,-10; - Id: 490126 AegisName: 2Para_Acc_L_A Name: Advanced Paradise Ring Type: Armor Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; bonus bNoCastCancel; - Id: 490127 AegisName: 2Para_Acc_R_A Name: Advanced Paradise Gloves Type: Armor Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,10; skill "AL_HEAL",1; bonus bVariableCastrate,-5; - Id: 490128 AegisName: 2Para_Acc_L_B Name: Advanced Paradise Magic Ring Type: Armor Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; bonus bNoCastCancel; - Id: 490129 AegisName: 2Para_Acc_R_B Name: Advanced Paradise Necklace Type: Armor Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | skill "AL_HEAL",1; bonus bVariableCastrate,-10; bonus bAspdRate,5; - Id: 490130 AegisName: SkynetBlowRing Name: Sky Blow Ring Type: Armor Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@lvl = getskilllv("SR_RAISINGDRAGON"); .@lvll = getskilllv("SR_GENTLETOUCH_CHANGE"); bonus bAgi,7+(4*.@lvll); bonus bFlee,10*.@lvll; bonus bMaxHPrate,.@lvl*2; bonus bMaxSPrate,.@lvl*2; bonus2 bAddRace,RC_All,10; bonus2 bSkillAtk,"SR_SKYNETBLOW",2*BaseLevel; if (getskilllv("SR_KNUCKLEARROW") == 10) bonus2 bAddSize,Size_All,10; - Id: 490131 AegisName: Signet_Of_Star Name: Stellar Seal Type: Armor Weight: 500 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 - Id: 490132 AegisName: Signet_Of_Pow_Star Name: Stellar Power Seal Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bPAtk,3; bonus bAtkRate,7; - Id: 490133 AegisName: Signet_Of_Sta_Star Name: Stellar Stamina Seal Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMaxHPrate,7; bonus bRes,5; - Id: 490134 AegisName: Signet_Of_Con_Star Name: Stellar Concentration Seal Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,7; bonus bCritical,3; - Id: 490135 AegisName: Signet_Of_Crt_Star Name: Stellar Creative Seal Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritAtkRate,7; bonus bPAtk,2; - Id: 490136 AegisName: Signet_Of_Spl_Star Name: Stellar Spell Seal Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAtkEle,Ele_All,7; bonus bSMatk,2; - Id: 490137 AegisName: Signet_Of_Wis_Star Name: Stellar Wisdom Seal Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bVariableCastrate,-7; bonus bHPlus,2; - Id: 490139 AegisName: Ring_Of_TheAbyssKing_A Name: Awakening Abyss King's Ring Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMaxHP,BaseLevel*50; bonus bMaxSP,BaseLevel*5; - Id: 490140 AegisName: Cursed_Demon_Ring_A Name: Awakening Magic Curse Ring Type: Armor Buy: 20 Weight: 100 Defense: 150 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 130 Script: | bonus bMdef,15; bonus bAllStats,1; bonus bAtkRate,6; bonus bMatk,6; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; - Id: 490141 AegisName: Metal_Pick Name: Metal Pick Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bInt,7; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"WM_METALICSOUND",(BaseLevel/3); if (getskilllv("WM_RANDOMIZESPELL") == 5) bonus2 bMagicAtkEle,Ele_Neutral,10; if (getskilllv("WM_FRIGG_SONG") == 5) bonus2 bIgnoreMdefRaceRate,RC_All,50; if (getskilllv("WM_LULLABY_DEEPSLEEP") == 5) { bonus bAspdRate,10; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } if (getskilllv("WM_GLOOMYDAY") == 5) { bonus2 bMagicAddClass,Class_Normal,10; bonus2 bMagicAddClass,Class_Boss,10; } - Id: 490142 AegisName: Omega_Core Name: Omega Core Type: Armor Weight: 500 Defense: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus2 bAddRace,RC_All,10; - Id: 490143 AegisName: Omega_Core_ Name: Omega Core Type: Armor Weight: 500 Defense: 1 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus2 bAddRace,RC_All,10; - Id: 490145 AegisName: Ring_Of_Ceryneian Name: Ring of Ceryneian Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDex,7; bonus bAtkRate,10; bonus2 bSkillAtk,"RA_AIMEDBOLT",(BaseLevel/10); bonus2 bSkillAtk,"RA_ARROWSTORM",(BaseLevel/10); if (getskilllv("RA_WUGRIDER") == 3) { bonus bSPDrainValue,3; bonus bDelayrate,-20; } if (getskilllv("RA_AIMEDBOLT") == 10) bonus2 bAddClass,Class_Boss,15; if (getskilllv("RA_CAMOUFLAGE") == 5) bonus2 bSkillCooldown,"RA_UNLIMIT",-45000; if (getskilllv("RA_RANGERMAIN") == 10) bonus bPerfectHitAddRate,15; UnEquipScript: | sc_end SC_UNLIMIT; - Id: 490146 AegisName: Paracelsus_Glove Name: Paracelsus Glove Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,7; bonus bAtkRate,10; bonus2 bSkillAtk,"GN_CARTCANNON",(BaseLevel/2); bonus2 bSkillAtk,"GN_CART_TORNADO",(BaseLevel/2); if (getskilllv("GN_CARTBOOST") == 5) { bonus bAspdRate,15; bonus bMaxHPrate,15; } if (getskilllv("GN_CRAZYWEED") == 10) bonus bSPDrainValue,3; if (getskilllv("GN_FIRE_EXPANSION") == 5) bonus2 bAddSize,Size_All,10; - Id: 490147 AegisName: Anniversary_Ring_1TH Name: 1st Anniversary Ring Type: Armor Weight: 10 Defense: 5 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 99 Script: | bonus bAllStats,2; bonus bMdef,5; bonus bBaseAtk,25; bonus bMatk,25; - Id: 490149 AegisName: Glittering_Cat_Choker Name: Glittering Cat Choker Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = (getskilllv("SU_SV_STEMSPEAR")+getskilllv("SU_SV_ROOTTWIST")+getskilllv("SU_CN_METEOR")+getskilllv("SU_CN_POWDERING")+getskilllv("SU_CHATTERING")+getskilllv("SU_MEOWMEOW")+getskilllv("SU_NYANGGRASS")); bonus bMdef,15; bonus bInt,7; bonus2 bMagicAddSize,Size_All,10; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",BaseLevel/7; if (getskilllv("SU_SPIRITOFLAND") == 1) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",.@a; bonus bMdef,.@a; } if (getskilllv("SU_CHATTERING") == 5) { bonus bMaxHPrate,15; bonus bMagicHPGainValue,100; bonus bMagicSPGainValue,10; } if (getskilllv("SU_NYANGGRASS") == 5) { bonus2 bSkillUseSP,"SU_SV_STEMSPEAR",10; bonus2 bResEff,Eff_Stun,5000; } if (getskilllv("SU_MEOWMEOW") == 5) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Ghost,10; } - Id: 490152 AegisName: Hero_Token_AG Name: Heroic Token (Arch Mage) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490153 AegisName: Hero_Token_WH Name: Heroic Token (Windhawk) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490155 AegisName: Hero_Token_IG Name: Heroic Token (Imperial Guard) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Crusader: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490156 AegisName: Hero_Token_CD Name: Heroic Token (Cardinal) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Priest: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490159 AegisName: Rough_Core Name: Rough Core Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bVariableCastrate,-10; bonus bCritical,10; bonus bMaxHPrate,-3; - Id: 490160 AegisName: ST_Orleans_Glove Name: Engraved Orlean's Glove Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus bSMatk,3; bonus bSpl,2; bonus bCrt,2; - Id: 490161 AegisName: ST_Pinquicula_Corsage Name: Engraved Pinguicula's Corsage Type: Armor Defense: 20 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus2 bMagicAtkEle,Ele_Poison,7; bonus2 bMagicAtkEle,Ele_Earth,7; bonus bMRes,2; - Id: 490162 AegisName: ST_Waterdrop_Brooch Name: Engraved Waterdrop Brooch Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus2 bSubEle,Ele_Water,5; bonus bMaxHPrate,5; bonus bMRes,2; bonus2 bMagicAtkEle,Ele_Water,7; - Id: 490163 AegisName: Hero_Insignia Name: Hero's Badge Type: Armor Weight: 200 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bAllStats,2; - Id: 490164 AegisName: Hero_Token_SHC Name: Heroic Token (Shadow Cross) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490165 AegisName: Hero_Token_ABC Name: Heroic Token (Abyss Chaser) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Rogue: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490166 AegisName: Hero_Token_DK Name: Heroic Token (Dragon Knight) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Knight: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490167 AegisName: Hero_Token_BO Name: Heroic Token (Biolo) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Alchemist: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490168 AegisName: Wind_Spirit_Ring_TW Name: Wind Spirit Ring # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bMdef,5; bonus bDelayrate,-5; bonus2 bMagicAtkEle,Ele_All,5; - Id: 490170 AegisName: Record_Mage2_TW Name: Record of Wrath (Mage) Type: Armor Weight: 100 Slots: 1 Jobs: Wizard: true Sage: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bDelayrate,-6; bonus2 bMagicAtkEle,Ele_All,6; - Id: 490171 AegisName: Hero_Token_EM Name: Heroic Token (Elemental Master) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Sage: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490172 AegisName: Hero_Token_TR Name: Heroic Token (Troubadour / Trouvere) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: BardDancer: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490173 AegisName: Record_Sward2_TW Name: Record of Wrath (Swordman) Type: Armor Weight: 100 Slots: 1 Jobs: Knight: true Crusader: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bLongAtkRate,6; bonus2 bAddClass,Class_All,6; bonus2 bMagicAddClass,Class_All,6; - Id: 490175 AegisName: Record_Merchant2_TW Name: Record of Wrath (Merchant) Type: Armor Weight: 100 Slots: 1 Jobs: Blacksmith: true Alchemist: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bDelayrate,-5; bonus2 bAddRace,RC_All,5; - Id: 490176 AegisName: Snowflower_Pendant Name: Snowflower Pendant Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus bAtkRate,7; bonus bMaxHPrate,7; - Id: 490177 AegisName: Snowflower_Ring Name: Snowflower Ring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus bAtkRate,7; bonus bMaxSPrate,7; - Id: 490178 AegisName: Snowflower_Necklace Name: Snowflower Necklace Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus bMatkRate,7; bonus bMaxHPrate,7; - Id: 490179 AegisName: Snowflower_Earring Name: Snowflower Earring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus bMatkRate,7; bonus bMaxSPrate,7; - Id: 490180 AegisName: Hero_Token_MT Name: Heroic Token (Meister) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Blacksmith: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490181 AegisName: Hero_Token_IQ Name: Heroic Token (Inquisitor) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Monk: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490182 AegisName: Immortal_Dog_Tag_IN Name: Immortal Dog Tag Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bBaseAtk,40; bonus bMatk,40; bonus2 bSubRace,RC_Undead,4; - Id: 490183 AegisName: Military_Glove Name: Military Glove Type: Armor Buy: 20 Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVit,7; bonus2 bAddSize,Size_All,10; bonus2 bSkillAtk,"NC_AXETORNADO",BaseLevel/2; bonus2 bSkillAtk,"NC_AXEBOOMERANG",BaseLevel/2; bonus2 bSkillAtk,"NC_POWERSWING",BaseLevel/2; if (getskilllv("NC_SILVERSNIPER") == 5) bonus2 bAddEle,Ele_All,10; if (getskilllv("NC_MAGICDECOY") == 5) { bonus2 bAddMonsterDropItem,731,30; bonus2 bAddMonsterDropItem,731,10; } if (getskilllv("NC_AXEBOOMERANG") == 5) { bonus bAspdRate,10; bonus bHPGainValue,100; bonus bSPGainValue,10; } if (getskilllv("NC_MAGMA_ERUPTION") == 5) bonus bDelayrate,-30; - Id: 490184 AegisName: Hero_Token_SS Name: Heroic Token (Shinkiro & Shiranui) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490185 AegisName: Hero_Token_NW Name: Heroic Token (Night Watch) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490186 AegisName: Hero_Token_SOA Name: Heroic Token (Soul Ascetic) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: SoulLinker: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490187 AegisName: Hero_Token_SKE Name: Heroic Token (Sky Emperor) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: StarGladiator: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490188 AegisName: Hero_Token_SH Name: Heroic Token (Spirit Handler) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490189 AegisName: Wine_Jewel_Brooch_TW Name: Garnet Brooch Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = (readparam(bStr)+readparam(bLuk))/24; .@b = (readparam(bInt)+readparam(bDex))/24; bonus bMdef,15; bonus bAtkRate,5+(readparam(bStr)/16); bonus bMatkRate,5+(readparam(bInt)/16); bonus bDelayrate,-5; bonus2 bSubEle,Ele_All,5; bonus bLongAtkDef,5; if (BaseJob == Job_SuperNovice) { skill "MG_ENERGYCOAT",1; bonus bShortAtkRate,.@a; bonus bLongAtkRate,.@a; bonus2 bMagicAtkEle,Ele_All,2*.@b; } - Id: 490190 AegisName: Unknown_Hero_Ring_TW Name: Unknown Hero Potential Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490191 AegisName: Record_Thief2_TW Name: Record of Wrath (Thief) Type: Armor Weight: 100 Slots: 1 Jobs: Assassin: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bDelayrate,-6; bonus2 bAddRace,RC_All,6; bonus2 bMagicAddRace,RC_All,6; - Id: 490192 AegisName: Record_Acolyte2_TW Name: Record of Wrath (Acolyte) Type: Armor Weight: 100 Slots: 1 Jobs: Priest: true Monk: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bAtkRate,5; bonus bMatkRate,5; bonus bMaxHPrate,10; - Id: 490193 AegisName: Traveler_Ring Name: Traveler Ring Type: Armor Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAgi,7; bonus2 bAddClass,Class_All,10 + (getskilllv("WM_SEVERE_RAINSTORM")/3); if (getskilllv("WM_UNLIMITED_HUMMING_VOICE") >= 5) { bonus bHPGainValue,100; bonus bSPGainValue,10; } if (getskilllv("WM_SEVERE_RAINSTORM") >= 5) bonus2 bAddClass,Class_Boss,15; if (getskilllv("WM_FRIGG_SONG") >= 5) bonus bMaxHPrate,25; if (getskilllv("WM_GLOOMYDAY") >= 5) bonus bPerfectHitAddRate,15; UnEquipScript: | if ((eaclass()&EAJ_THIRDMASK)==EAJ_MINSTRELWANDERER) sc_end SC_UNLIMIT; - Id: 490194 AegisName: Guardian_Ring Name: Guardian Ring Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bVit,2; - Id: 490197 AegisName: The_Origin_of_Fire Name: Origin of Fire Type: Armor Weight: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoAuction: true Script: | .@r = getrefine(); bonus bCritical,2; bonus bBaseAtk,5; if (.@r >= 7) { bonus bBaseAtk,3; bonus bHit,2; bonus bCritical,3; if (.@r >= 9) { bonus bBaseAtk,5; bonus bHit,3; bonus bCritical,1; } } - Id: 490198 AegisName: Record_Acher2_TW Name: Record of Wrath (Archer) Type: Armor Weight: 100 Slots: 1 Jobs: Hunter: true BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bDelayrate,-5; bonus2 bAddSize,Size_All,5; bonus2 bMagicAddSize,Size_All,5; - Id: 490201 AegisName: The_Origin_of_fertility Name: Origin of Fertility Type: Armor Weight: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoAuction: true Script: | .@r = getrefine(); bonus bAllStats,1; bonus bMaxHP,300; bonus bMaxSP,200; if (.@r >= 7) { bonus bAllStats,2; if (.@r >= 9) { bonus bAllStats,2; } } - Id: 490206 AegisName: Noblesse_oblige Name: Noblesse Oblige Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus bAtkRate,10; bonus bMatkRate,10; - Id: 490207 AegisName: Memento_Mori Name: Memento Mori Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-10; bonus bAtkRate,10; bonus bMatkRate,10; - Id: 490208 AegisName: Palace_Ring Name: Palace Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bMaxHPrate,10; bonus2 bAddRace,RC_All,10; bonus2 bMagicAddRace,RC_All,10; - Id: 490211 AegisName: WM_Job_Pick Name: Discordant Pick # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | .@skill = getskilllv("WM_POEMOFNETHERWORLD") + getskilllv("MI_ECHOSONG") + getskilllv("WM_FRIGG_SONG") + getskilllv("WM_SONG_OF_MANA") + getskilllv("WM_MELODYOFSINK"); bonus2 bMagicAddRace,RC_All,5; bonus bMatk,4*.@skill; bonus bMatkRate,getskilllv("WM_METALICSOUND"); bonus bDelayrate,-2*getskilllv("WM_REVERBERATION"); - Id: 490214 AegisName: E_Auto_B_R Name: Automatic Booster R (Bound) Type: Armor Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,5; bonus bMaxHPrate,5; - Id: 490215 AegisName: E_Auto_B_L Name: Automatic Booster L (Bound) Type: Armor Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,5; bonus bMaxSPrate,5; - Id: 490216 AegisName: E_Auto_BC_R Name: Automatic Battle Chip R (Bound) Type: Armor Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,5; bonus bMaxHPrate,5; - Id: 490217 AegisName: E_Auto_BC_L Name: Automatic Battle chip L (Bound) Type: Armor Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 160 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,5; bonus bMaxSPrate,5; - Id: 490218 AegisName: Pure_Heart_TW Name: Pure Heart Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = (readparam(bStr)/16); .@b = (readparam(bInt)/16); bonus bMdef,15; bonus bVariableCastrate,-5-.@b; bonus bAtkRate,5+.@a; bonus bMatkRate,5+.@b; bonus bStr,5; bonus bInt,5; bonus2 bAddClass,Class_Normal,5; bonus2 bMagicAddClass,Class_Normal,5; bonus bDelayrate,-.@a; if (BaseJob == Job_Merchant) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; } - Id: 490219 AegisName: Twin_Dragonic_Ring Name: Double Head Dragon Ring # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Trade: NoDrop: true NoSell: true Script: | bonus bDelayrate,-5; bonus bLongAtkRate,5; bonus bMaxHPrate,3*getskilllv("RK_DRAGONHOWLING"); - Id: 490220 AegisName: aegis_490220 Name: Heroic Token (Hyper Novice) Type: Armor Weight: 200 Defense: 10 Slots: 1 Jobs: SuperNovice: true Classes: Fourth: true Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 205 Script: | bonus bMatkRate,10; bonus bAtkRate,10; bonus bVariableCastrate,-10; - Id: 490221 AegisName: aegis_490221 Name: Record of Swordsman Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,5; bonus bBaseAtk,15*(getskilllv("SM_BASH")/2); - Id: 490222 AegisName: aegis_490222 Name: "[Not for Sale] Record of Swordsman" Type: Armor Weight: 100 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,5; bonus bBaseAtk,15*(getskilllv("SM_BASH")/2); - Id: 490223 AegisName: Copy_Book Name: Book of Copying - Cloaking Chapter Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bAtkRate,5; bonus bMatkRate,5; skill "AS_CLOAKING",1; - Id: 490229 AegisName: aegis_490229 Name: Record of Thief Type: Armor Weight: 100 Slots: 1 Jobs: Thief: true Assassin: true Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAtkRate,5; bonus bBaseAtk,15*(getskilllv("TF_HIDING")/2); - Id: 490231 AegisName: aegis_490231 Name: "[Not For Sale] Record of Thief" Type: Armor Weight: 100 Slots: 1 Jobs: Assassin: true Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus bBaseAtk,15*(getskilllv("TF_HIDING")/2); - Id: 490232 AegisName: aegis_490232 Name: "[Not For Sale] Luminous Blue Stone" Type: Armor Weight: 400 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 90 Script: | bonus bAspdRate,5; bonus bCritical,5; bonus bCritAtkRate,5; skill "MG_SIGHT",1; if (readparam(bLuk)>=100) { bonus bCritical,5; bonus bCritAtkRate,5; } - Id: 490233 AegisName: Zongzi_Charm_TW Name: Rice Dumpling Amulet Type: Armor Weight: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAtkRate,5; bonus bMatkRate,5; skill "MG_FIREBALL",3; bonus2 bVariableCastrate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",50; - Id: 490234 AegisName: Copy_Book_Concen Name: Book of Copying - Concentration Chapter Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bAtkRate,5; bonus bMatkRate,5; skill "AC_CONCENTRATION",2; - Id: 490235 AegisName: Egirnion_Gardiansword Name: Aegirnion Guardian Sword Type: Armor Weight: 100 Defense: 20 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus bMatkRate,5; bonus bAtkRate,5; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490236 AegisName: aegis_490236 Name: Double Badge Type: Armor Weight: 10 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bAgi,2; bonus bDex,2; bonus bFlee,10; bonus bBaseAtk,5*(getskilllv("AC_DOUBLE")/2); bonus2 bSkillAtk,"AC_SHOWER",BaseLevel/2; bonus2 bSkillAtk,"AC_DOUBLE",BaseLevel/2; - Id: 490237 AegisName: aegis_490237 Name: "[Not For Sale] Double Badge" Type: Armor Weight: 10 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus bAgi,2; bonus bDex,2; bonus bFlee,10; bonus bBaseAtk,5*(getskilllv("AC_DOUBLE")/2); bonus2 bSkillAtk,"AC_SHOWER",BaseLevel/2; bonus2 bSkillAtk,"AC_DOUBLE",BaseLevel/2; - Id: 490238 AegisName: Time_Jewel_Acc Name: Chrono Gem Blade Chain # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@skill = getskilllv("GC_CROSSIMPACT") + getskilllv("GC_ROLLINGCUTTER") + getskilllv("GC_CROSSRIPPERSLASHER") + getskilllv("GC_COUNTERSLASH"); bonus bDelayrate,-5; bonus bShortAtkRate,5; bonus bBaseAtk,3*.@skill; - Id: 490239 AegisName: aegis_490239 Name: Record of Merchant Type: Armor Weight: 100 Slots: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bAtkRate,3*(getskilllv("MC_MAMMONITE")/2); bonus bMatkRate,3*(getskilllv("MC_MAMMONITE")/2); - Id: 490240 AegisName: aegis_490240 Name: "[Not For Sale] Record of Merchant" Type: Armor Weight: 100 Slots: 1 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bAtkRate,3*(getskilllv("MC_MAMMONITE")/2); bonus bMatkRate,3*(getskilllv("MC_MAMMONITE")/2); - Id: 490241 AegisName: aegis_490241 Name: "[Not For Sale] Gyges Ring" Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bInt,3; bonus bMatk,30; skill "TF_HIDING",1; - Id: 490242 AegisName: C_Valkyrie_Hair Name: Costume Valkyrie Hair Type: Armor Locations: Costume_Head_Low: true ArmorLevel: 1 View: 2311 - Id: 490243 AegisName: aegis_490243 Name: Ring of Silver Claw Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bCritical,50; bonus bAtkRate,10; bonus2 bSubRace,RC_Player_Human,3; bonus bCritAtkRate,BaseLevel/5; - Id: 490244 AegisName: aegis_490244 Name: Cardinal Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bSpl,3; bonus bMatkRate,10; bonus bHealPower,15; bonus2 bSubRace,RC_Player_Human,3; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bSkillAtk,"CD_ARBITRIUM",BaseLevel/10; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",BaseLevel/10; bonus2 bSkillAtk,"CD_PNEUMATICUS_PROCELLA",BaseLevel/10; bonus2 bSkillAtk,"CD_FRAMEN",BaseLevel/10; - Id: 490246 AegisName: aegis_490246 Name: Vassalage Ring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 30 Script: | .@a = 5; .@b = BaseLevel/35; if (BaseLevel>=175) { .@a = .@a*2; .@b = .@b*2; } bonus bAtkRate,.@a; bonus bCritAtkRate,.@b; - Id: 490251 AegisName: aegis_490251 Name: Herosria Ring Type: Armor Weight: 250 Defense: 5 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus bAspdRate,3; bonus bCritical,-3; - Id: 490252 AegisName: aegis_490252 Name: Herosria Earring Type: Armor Weight: 250 Defense: 5 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus bDelayrate,3; bonus bVariableCastrate,-3; - Id: 490253 AegisName: aegis_490253 Name: Herosria Necklace Type: Armor Weight: 250 Defense: 5 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus2 bAddRace,RC_Player_Human,-3; bonus2 bAddRace,RC_Player_Doram,-3; bonus2 bMagicAddRace,RC_Player_Human,-3; bonus2 bMagicAddRace,RC_Player_Doram,-3; bonus bHealPower,3; - Id: 490254 AegisName: aegis_490254 Name: Herosria Critical Ring Type: Armor Weight: 250 Defense: 5 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus bAspdRate,-3; bonus bCritical,3; - Id: 490255 AegisName: aegis_490255 Name: Herosria Cool Time Earring Type: Armor Weight: 250 Defense: 5 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus bDelayrate,-3; bonus bVariableCastrate,3; - Id: 490256 AegisName: aegis_490256 Name: Herosria Defender Necklace Type: Armor Weight: 250 Defense: 5 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus bHealPower2,-3; - Id: 490257 AegisName: Mob_P_Crystal_Ring Name: Crystal Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bMatkRate,5; - Id: 490258 AegisName: Time_Thief_Earring Name: Time Thief Crystal Earrings Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,5; bonus bLongAtkRate,5; - Id: 490259 AegisName: Curse_Magic_Ring Name: Curse Magic Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bMatkRate,5; - Id: 490260 AegisName: Old_Cart_Acc Name: Old Cart Modeling Pendant Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = (getskilllv("GN_CART_TORNADO")+getskilllv("GN_REMODELING_CART")+getskilllv(GN_CARTBOOST))/4; bonus bDelayrate,-5; bonus bLongAtkRate,5+.@a; bonus bShortAtkRate,5+.@a; - Id: 490261 AegisName: aegis_490261 Name: Shining Priest's Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 150 Script: | bonus bAllStats,5; - Id: 490262 AegisName: Firm_Faith_Ring Name: Firm Faith Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bLongAtkRate,6; - Id: 490263 AegisName: RoyalGard_Seal_Ring Name: Royal Guard Seal Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490264 AegisName: Infinity_Chip_MAX Name: Infinity Chip MAX Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMdef,10; bonus bAllStats,5; bonus bVariableCastrate,-5; bonus bAtkRate,5; bonus bLongAtkRate,5; bonus bShortAtkRate,5; bonus bDelayrate,-5; if (BaseJob == Job_Merchant) { bonus bAtkRate,8; bonus2 bAddRace,RC_All,8; } - Id: 490265 AegisName: aegis_490265 Name: Inception Ring Type: Armor Weight: 300 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-20; bonus bAspd,1; bonus5 bAutoSpell,"WL_RECOGNIZEDSPELL",1,10,BF_MAGIC,0; - Id: 490266 AegisName: aegis_490266 Name: "[Not For Sale] Inception Ring" Type: Armor Weight: 300 Slots: 1 Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-20; bonus bAspd,1; bonus5 bAutoSpell,"WL_RECOGNIZEDSPELL",1,10,BF_MAGIC,0; - Id: 490267 AegisName: aegis_490267 Name: Shadow Ring Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus3 bAutoSpell,"RG_STEALCOIN",max(getskilllv("RG_STEALCOIN"),1),10; bonus2 bSkillAtk,"RG_BACKSTAP",BaseLevel/2; bonus2 bAddEff,Eff_Stun,100*getskilllv("RG_RAID"); - Id: 490268 AegisName: aegis_490268 Name: "[Not For Sale] Shadow Ring" Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 20 Script: | bonus3 bAutoSpell,"RG_STEALCOIN",max(getskilllv("RG_STEALCOIN"),1),10; bonus2 bSkillAtk,"RG_BACKSTAP",BaseLevel/2; bonus2 bAddEff,Eff_Stun,100*getskilllv("RG_RAID"); - Id: 490269 AegisName: LightOfCardinal Name: Cardinal Light # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bMatkRate,6; - Id: 490272 AegisName: aegis_490272 Name: Harvest Festival Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-10; bonus bMaxHP,100*readparam(bVit); bonus bDef,2*readparam(bVit); - Id: 490273 AegisName: Under_Seal_D_Key Name: Sealed Dimensional Key Type: Armor Weight: 200 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 - Id: 490274 AegisName: Under_Seal_D_Padlock Name: Sealed Dimensional Lock Type: Armor Weight: 200 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 - Id: 490275 AegisName: Under_Seal_D_keyring Name: Sealed Dimensional Keyring Type: Armor Weight: 200 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 - Id: 490276 AegisName: Dimmension_W_Key Name: Dimensional Wanderer's Key Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Script: | .@param = (readparam(bSpl)/20); .@g = getenchantgrade(); .@r = getrefine(); bonus bAllTraitStats,3; bonus bVariableCastrate,-10; if (.@r>=7) { bonus bSMatk,3; if (.@r>=9) { bonus bSMatk,2*.@param; bonus bWis,4*.@param; if (.@r>=12) { bonus bFixedCast,-300; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,3; bonus bSpl,2; if (.@g>=ENCHANTGRADE_C) { bonus bSMatk,2; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,3; bonus bRes,20; if (.@g>=ENCHANTGRADE_A) { bonus bSpl,2*(readparam(bInt)/15); } } } } - Id: 490277 AegisName: Dimmension_W_Padlock Name: Dimensional Wanderer's Lock Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Script: | .@param = (readparam(bPow)/20); .@g = getenchantgrade(); .@r = getrefine(); bonus bAllTraitStats,3; bonus bVariableCastrate,-10; if (.@r>=7) { bonus bPAtk,3; if (.@r>=9) { bonus bPAtk,2*.@param; bonus bSta,4*.@param; if (.@r>=12) { bonus bFixedCast,-300; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,3; bonus bPow,2; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,2; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,3; bonus bRes,20; if (.@g>=ENCHANTGRADE_A) { bonus bPow,2*(readparam(bStr)/15); } } } } - Id: 490278 AegisName: Dimmension_W_Keyring Name: Dimensional Wanderer's Keyring Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 240 Refineable: true Gradable: true Script: | .@param = (readparam(bCon)/20); .@g = getenchantgrade(); .@r = getrefine(); bonus bAllTraitStats,3; bonus bVariableCastrate,-10; if (.@r>=7) { bonus bPAtk,3; if (.@r>=9) { bonus bPAtk,2*.@param; bonus bCrt,4*.@param; if (.@r>=12) { bonus bFixedCast,-300; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,3; bonus bCon,2; if (.@g>=ENCHANTGRADE_C) { bonus bPAtk,2; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,3; bonus bRes,20; if (.@g>=ENCHANTGRADE_A) { bonus bCon,2*(readparam(bDex)/15); } } } } - Id: 490279 AegisName: aegis_490279 Name: Raphin P. Necklace Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@a = readparam(bInt); .@p = getitempos(); bonus bLongAtkRate,5; bonus2 bSkillAtk,"RA_AIMEDBOLT",3*getskilllv("RA_WUGSTRIKE"); bonus bDelayrate,-.@a/12; if (.@a >= 125) { if (.@p == EQP_ACC_R) bonus bFixedCast,-500; if (.@p == EQP_ACC_L) bonus bBaseAtk,80; } - Id: 490281 AegisName: Armor_Drive_Wheel Name: Armored Drive Gear # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@skill = getskilllv("NC_ACCELERATION") + getskilllv("NC_STEALTHFIELD") + getskilllv("NC_NEUTRALBARRIER") + getskilllv("NC_SHAPESHIFT") + getskilllv("NC_SELFDESTRUCTION"); bonus bDelayrate,-5; bonus bLongAtkRate,6+4*(.@skill/4); - Id: 490282 AegisName: aegis_490282 Name: Kenshi Gauntlet Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bStr,3; bonus bVit,3; bonus bAtkRate,3; bonus2 bSkillAtk,"KN_BRANDISHSPEAR",1+BaseLevel; bonus bBaseAtk,5*(getskilllv("KN_SPEARMASTERY")/2); if (getskilllv("KN_TWOHANDQUICKEN") == 10) bonus2 bSkillAtk,"KN_BOWLINGBASH",25; if (BaseLevel>=90) bonus2 bSkillUseSP,"KN_CHARGEATK",10; - Id: 490283 AegisName: aegis_490283 Name: "[Not For Sale] Kenshi Gauntlet" Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bStr,3; bonus bVit,3; bonus bAtkRate,3; bonus2 bSkillAtk,"KN_BRANDISHSPEAR",1+BaseLevel; bonus bBaseAtk,5*(getskilllv("KN_SPEARMASTERY")/2); if (getskilllv("KN_TWOHANDQUICKEN") == 10) bonus2 bSkillAtk,"KN_BOWLINGBASH",25; if (BaseLevel>=90) bonus2 bSkillUseSP,"KN_CHARGEATK",10; - Id: 490284 AegisName: WindHawk_Snip_Ring Name: Wind Eagle Sniper Ring # !todo check english name Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bLongAtkRate,6; - Id: 490285 AegisName: aegis_490285 Name: Alternate Clip Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bMaxSPrate,10; - Id: 490286 AegisName: aegis_490286 Name: 1Lv Clip Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 - Id: 490287 AegisName: aegis_490287 Name: Level 2 Clip # !todo check english name Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 - Id: 490288 AegisName: aegis_490288 Name: Record of Mage Type: Armor Weight: 100 Slots: 1 Jobs: Sage: true Wizard: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-10; bonus2 bIgnoreMdefRaceRate,RC_All,10*(getskilllv("MG_SAFETYWALL")/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-10*(getskilllv("MG_SAFETYWALL")/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-10*(getskilllv("MG_SAFETYWALL")/2); - Id: 490289 AegisName: aegis_490289 Name: "[Not for Sale] Record of Mage" Type: Armor Weight: 100 Slots: 1 Jobs: Sage: true Wizard: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-10; bonus2 bIgnoreMdefRaceRate,RC_All,10*(getskilllv("MG_SAFETYWALL")/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-10*(getskilllv("MG_SAFETYWALL")/2); bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-10*(getskilllv("MG_SAFETYWALL")/2); - Id: 490290 AegisName: aegis_490290 Name: Ameretat Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubEle,Ele_Holy,10; bonus bAtkRate,10; bonus bMatkRate,10; - Id: 490295 AegisName: aegis_490295 Name: Armaia Belt Type: Armor Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bDex,3; bonus bInt,3; bonus bMaxHPrate,2; bonus2 bSkillAtk,"AM_ACIDTERROR",(min(BaseLevel,99)*1); if (getskilllv("BS_MAXIMIZE") == 5) bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; - Id: 490296 AegisName: aegis_490296 Name: "[Not For Sale] Armaia Belt" Type: Armor Slots: 1 Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bDex,3; bonus bInt,3; bonus bMaxHPrate,2; bonus2 bSkillAtk,"AM_ACIDTERROR",(min(BaseLevel,99)*1); if (getskilllv("BS_MAXIMIZE") == 5) bonus2 bSkillAtk,"MC_CARTREVOLUTION",25; - Id: 490297 AegisName: aegis_490297 Name: Varmundt Rune Ring Type: Armor Weight: 100 Defense: 10 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 - Id: 490299 AegisName: Barmund_Soul_Ring Name: Varmundt Soul Rune Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,10; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490300 AegisName: Barmund_Venom_Ring Name: Varmundt Venom Rune Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bShortAtkRate,10; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490301 AegisName: Barmund_Temple_Ring Name: Varmundt Temple Rune Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAtkEle,Ele_All,10; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490302 AegisName: Soul_Rune_Ring Name: Soul Rune Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bLongAtkRate,15; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490303 AegisName: Venom_Rune_Ring Name: Venom Rune Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bShortAtkRate,15; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490304 AegisName: Temple_Rune_Ring Name: Temple Rune Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus2 bMagicAtkEle,Ele_All,15; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490305 AegisName: Soul_M_Ring Name: Soul Magic Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bLongAtkRate,15; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490306 AegisName: Venom_M_Ring Name: Venom Magic Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bShortAtkRate,15; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490307 AegisName: Temple_M_Ring Name: Temple Magic Ring Type: Armor Weight: 200 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus2 bMagicAtkEle,Ele_All,15; bonus bAspdRate,5; bonus bVariableCastrate,-5; - Id: 490308 AegisName: aegis_490308 Name: 1st Golden Ring Type: Armor Weight: 10 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus bAtkRate,3; bonus bMatkRate,3; bonus bAspdRate,3; bonus bHit,3; - Id: 490316 AegisName: aegis_490316 Name: Brooch of Matador Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@p = getitempos(); bonus bDelayrate,-5; bonus bAtkRate,10; bonus bMatkRate,10; if (getskilllv("SC_FEINTBOMB") == 10) bonus2 bSkillAtk,"SC_FATALMENACE",5; if (getskilllv("SC_ESCAPE") == 5) bonus2 bSkillCooldown,("SC_ESCAPE"),-500; if (.@p == EQP_ACC_L) { bonus bDelayrate,-7; bonus bHPGainValue,300; bonus bSPGainValue,30; } if (.@p == EQP_ACC_R) bonus2 bSkillAtk,"SC_FATALMENACE",BaseLevel/9; UnEquipScript: | heal -5000,-500; - Id: 490319 AegisName: aegis_490319 Name: Y.S.F. Ring Type: Armor Weight: 100 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVit,20; bonus bMaxHPrate,15; bonus bLongAtkRate,10; bonus bPerfectHitAddRate,15; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1000; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",BaseLevel/2; bonus2 bSkillAtk,"RK_DRAGONBREATH",BaseLevel/2; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",3*(BaseLevel/2); - Id: 490320 AegisName: Ash_Ring Name: Ashes Ring Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 75 Script: | bonus bMdef,15; bonus2 bAddRace,RC_All,5; bonus2 bMagicAddRace,RC_All,5; bonus2 bSubRace,RC_Dragon,5; - Id: 490327 AegisName: Glacier_Ring Name: Glacier Ring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bAtkRate,8; bonus bMaxSPrate,7; - Id: 490328 AegisName: Glacier_Pendant Name: Glacier Pendant Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bAtkRate,8; bonus bMaxHPrate,7; - Id: 490329 AegisName: Glacier_Earring Name: Glacier Earring Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bMatkRate,8; bonus bMaxSPrate,7; - Id: 490330 AegisName: Glacier_Necklace Name: Glacier Necklace Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 230 Script: | bonus bMatkRate,8; bonus bMaxHPrate,7; - Id: 490332 AegisName: aegis_490332 Name: "[Not For Sale] Exotic Temporal Ring" Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,2; bonus bMdef,5; - Id: 490334 AegisName: aegis_490334 Name: Record of Acolyte Type: Armor Weight: 100 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bLongAtkRate,5; bonus bAspdRate,5; bonus bBaseAtk,10*(getskilllv("AL_HEAL")/2); bonus bMatk,10*(getskilllv("AL_HEAL")/2); - Id: 490335 AegisName: aegis_490335 Name: "[Not For Sale] Record of Acolyte" Type: Armor Weight: 100 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bLongAtkRate,5; bonus bAspdRate,5; bonus bBaseAtk,10*(getskilllv("AL_HEAL")/2); bonus bMatk,10*(getskilllv("AL_HEAL")/2); - Id: 490336 AegisName: aegis_490336 Name: Dimension Linkage Stone Type: Armor Weight: 100 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bStr,20; bonus bMaxHPrate,15; bonus bLongAtkRate,10; bonus bPerfectHitAddRate,15; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSkillCooldown,"NC_NEUTRALBARRIER",-5000; bonus2 bSkillAtk,"NC_ARMSCANNON",BaseLevel/3; bonus2 bSkillAtk,"NC_COLDSLOWER",BaseLevel/3; bonus2 bSkillAtk,"NC_FLAMELAUNCHER",2*(BaseLevel/3); - Id: 490337 AegisName: aegis_490337 Name: Amulet of Genesis Stone Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,15; bonus bDelayrate,-15; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; bonus bBaseAtk,BaseLevel; bonus bMatk,BaseLevel; bonus bMaxHP,50*BaseLevel; bonus bMaxSP,5*BaseLevel; /*Todo Add Item 23044 and Remove Cooldown Item Script*/ - Id: 490340 AegisName: aegis_490340 Name: illegal Chip Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus bAtkRate,10; bonus bMatkRate,10; - Id: 490351 AegisName: aegis_490351 Name: Assassin Amulet Type: Armor Weight: 400 Slots: 1 Jobs: Assassin: true Classes: All_Upper: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | .@a = getskilllv("ASC_KATAR"); .@b = getskilllv("AS_CLOAKING"); .@c = getskilllv("ASC_BREAKER"); bonus bMaxSP,20; bonus bCritical,3+.@b; bonus bBaseAtk,.@a; bonus bFlee,-5*.@a; bonus bHit,-5*.@b; bonus bAspdRate,.@c; bonus bMaxHPrate,.@c; bonus2 bSkillAtk,"AS_SONICBLOW",5*.@a; bonus2 bSkillAtk,"AS_GRIMTOOTH",5*.@b; bonus2 bSkillAtk,"ASC_METEORASSAULT",5*.@c; - Id: 490352 AegisName: aegis_490352 Name: "[Not For Sale] Assassin Amulet" Type: Armor Weight: 400 Slots: 1 Jobs: Assassin: true Classes: All_Upper: true Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 80 Script: | .@a = getskilllv("ASC_KATAR"); .@b = getskilllv("AS_CLOAKING"); .@c = getskilllv("ASC_BREAKER"); bonus bMaxSP,20; bonus bCritical,3+.@b; bonus bBaseAtk,.@a; bonus bFlee,-5*.@a; bonus bHit,-5*.@b; bonus bAspdRate,.@c; bonus bMaxHPrate,.@c; bonus2 bSkillAtk,"AS_SONICBLOW",5*.@a; bonus2 bSkillAtk,"AS_GRIMTOOTH",5*.@b; bonus2 bSkillAtk,"ASC_METEORASSAULT",5*.@c; - Id: 490359 AegisName: aegis_490359 Name: Lord of Elemental Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bSpl,3; bonus bMatkRate,10; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; skill "AL_CURE",1; bonus2 bFixedCastrate,"SO_SUMMON_AQUA",-100; bonus2 bFixedCastrate,"SO_SUMMON_TERA",-100; bonus2 bSkillAtk,"EM_CONFLAGRATION",BaseLevel/10; bonus2 bSkillAtk,"EM_DIAMOND_STORM",BaseLevel/10; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",BaseLevel/10; bonus2 bSkillAtk,"EM_TERRA_DRIVE",BaseLevel/10; bonus2 bSkillAtk,"EM_VENOM_SWAMP",BaseLevel/10; - Id: 490364 AegisName: aegis_490364 Name: Above B.E.2 475 Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatkRate,10; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",BaseLevel/5; - Id: 490365 AegisName: aegis_490365 Name: "[Not For Sale] Above B.E.2 475" Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatkRate,10; bonus bVariableCastrate,-10; bonus bDelayrate,-5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",BaseLevel/5; - Id: 490367 AegisName: aegis_490367 Name: Ulle's Bracelet Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus bDelayrate,-15; bonus bAtkRate,10; - Id: 490370 AegisName: aegis_490370 Name: "[Not For Sale] Celine's Brooch K" Type: Armor Weight: 500 Slots: 1 Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMatkRate,10; bonus bVariableCastrate,-15; - Id: 490371 AegisName: aegis_490371 Name: "[Not For Sale] Prontera Army Glove" Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVit,5; bonus bMdef,5; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubEle,Ele_Earth,5; bonus2 bSubEle,Ele_Fire,5; bonus2 bSubEle,Ele_Water,5; bonus2 bSubEle,Ele_Wind,5; bonus bAspdRate,5; - Id: 490372 AegisName: aegis_490372 Name: Solar Blessing Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bShortAtkRate,8; bonus bMatkRate,8; - Id: 490373 AegisName: aegis_490373 Name: "[Not For Sale] Solar Blessing" Type: Armor Weight: 200 Slots: 1 Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bShortAtkRate,8; bonus bMatkRate,8; - Id: 490374 AegisName: SeeOtter_Fan_LT Name: Sea Otter Mini Fan-LT Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 100 Script: | bonus bAllStats,1; bonus bAllTraitStats,1; if (BaseLevel<175) { bonus2 bExpAddRace,RC_All,10; } if (BaseLevel>=175) { bonus2 bExpAddRace,RC_All,5; } - Id: 490375 AegisName: FurSeal_Fan_LT Name: Fur Seal Mini Fan-LT Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 100 Script: | bonus bAllStats,1; bonus bAllTraitStats,1; if (BaseLevel<175) { bonus2 bExpAddRace,RC_All,10; } if (BaseLevel>=175) { bonus2 bExpAddRace,RC_All,5; } - Id: 490376 AegisName: aegis_490376 Name: Record of Swordsman 2 Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-6; bonus2 bAddSize,Size_All,6; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",30; bonus2 bSkillAtk,"LG_EARTHDRIVE",30; - Id: 490377 AegisName: aegis_490377 Name: "[Not For Sale] Record of Swordsman 2" Type: Armor Weight: 100 Slots: 1 Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-6; bonus2 bAddSize,Size_All,6; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",30; bonus2 bSkillAtk,"LG_EARTHDRIVE",30; - Id: 490378 AegisName: aegis_490378 Name: Curse of Maebia Book Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 60 Script: | bonus bInt,3; bonus bAgi,3; if (BaseJob == Job_Sage) bonus bAspd,readparam(bInt)/30; if (Class == Job_Star_Gladiator || Class == Job_Soul_Linker) { bonus bDex,JobLevel/2; bonus bLuk,JobLevel/2; bonus2 bSkillAtk,"SL_SMA",2*(JobLevel/2); bonus2 bSkillAtk,"SG_STAR_WARM",2*(JobLevel/2); } - Id: 490379 AegisName: aegis_490379 Name: "[Not For Sale] Curse of Maebia Book" Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 60 Script: | bonus bInt,3; bonus bAgi,3; if (BaseJob == Job_Sage) bonus bAspd,readparam(bInt)/30; if (Class == Job_Star_Gladiator || Class == Job_Soul_Linker) { bonus bDex,JobLevel/2; bonus bLuk,JobLevel/2; bonus2 bSkillAtk,"SL_SMA",2*(JobLevel/2); bonus2 bSkillAtk,"SG_STAR_WARM",2*(JobLevel/2); } - Id: 490380 AegisName: aegis_490380 Name: Majesty of Yggdrasil Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,3; bonus bAspdRate,10; bonus bDelayrate,-15; bonus2 bAddSize,Size_All,25; bonus2 bMagicAddSize,Size_All,25; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; - Id: 490381 AegisName: aegis_490381 Name: Majesty of Yggdrasil Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAllStats,3; bonus bAspdRate,10; bonus bDelayrate,-15; bonus2 bAddSize,Size_All,25; bonus2 bMagicAddSize,Size_All,25; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; - Id: 490382 AegisName: Red_Force_Pendant_LT Name: Red Force Pendant-LT Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus bAtkRate,8; bonus bMatkRate,8; - Id: 490383 AegisName: Blue_Mental_Pendant_LT Name: Blue Mental Pendant-LT Type: Armor Weight: 100 Slots: 1 Locations: Right_Accessory: true ArmorLevel: 2 EquipLevelMin: 210 Script: | bonus bAtkRate,8; bonus bMatkRate,8; - Id: 490384 AegisName: aegis_490384 Name: Amulet of the Moon Type: Armor Weight: 10 Slots: 1 Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bBaseAtk,50; bonus bMatk,50; bonus bAtkRate,10; bonus bMatkRate,10; bonus bMaxHPrate,10; - Id: 490385 AegisName: aegis_490385 Name: Stellar Blessing Type: Armor Weight: 200 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bMatkRate,8; bonus bShortAtkRate,8; - Id: 490386 AegisName: aegis_490386 Name: "[Not For Sale] Stellar Blessing" Type: Armor Weight: 200 Slots: 1 Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bMaxHPrate,6; bonus bMaxSPrate,6; bonus bMatkRate,8; bonus bShortAtkRate,8; - Id: 490387 AegisName: Zongzi_Lotusleaf_TW Name: Lotus Leaf Sticky Rice Amulet Type: Armor Weight: 10 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAtkRate,5; bonus bMatkRate,5; skill "MG_FIREBALL",3; bonus2 bVariableCastrate,"MG_FIREBALL",-50; bonus2 bSkillAtk,"MG_FIREBALL",50; - Id: 490388 AegisName: Copy_Book_Cold Name: Book of Copying - Cold Bolt Chapter Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 80 Script: | bonus bAtkRate,5; bonus bMatkRate,5; skill "MG_COLDBOLT",3; - Id: 490390 AegisName: aegis_490390 Name: Toy Ring Type: Armor Weight: 1000 Defense: 5 Slots: 1 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bHPDrainRate,10,1; bonus2 bSkillAtk,"NC_AXETORNADO",BaseLevel/9; bonus2 bSkillAtk,"GN_CART_TORNADO",2*(BaseLevel/9); - Id: 490391 AegisName: aegis_490391 Name: "[Not For Sale] Toy Ring" Type: Armor Weight: 1000 Defense: 5 Slots: 1 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus2 bHPDrainRate,10,1; bonus2 bSkillAtk,"NC_AXETORNADO",BaseLevel/9; bonus2 bSkillAtk,"GN_CART_TORNADO",2*(BaseLevel/9); - Id: 490392 AegisName: aegis_490392 Name: Scarlet Worm Charm Type: Armor Weight: 100 Slots: 1 Jobs: Spirit_Handler: true Summoner: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",getskilllv("SU_PICKYPECK")*(readparam(bDex)/5); bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",BaseLevel/5; if (getskilllv("SU_HISS") == 5) { bonus bAspdRate,15; bonus2 bAddSize,Size_All,10; } if (getskilllv("SU_POWEROFFLOCK") == 5) bonus bDelayrate,-30; if (getskilllv("SU_SVG_SPIRIT") == 5) bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-2000; - Id: 490393 AegisName: aegis_490393 Name: "[Not For Sale] Scarlet Worm Charm" Type: Armor Weight: 100 Slots: 1 Jobs: Spirit_Handler: true Summoner: true Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 50 Script: | bonus2 bVariableCastrate,"SU_PICKYPECK",-50; bonus2 bSkillAtk,"SU_PICKYPECK",getskilllv("SU_PICKYPECK")*(readparam(bDex)/5); bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",BaseLevel/5; if (getskilllv("SU_HISS") == 5) { bonus bAspdRate,15; bonus2 bAddSize,Size_All,10; } if (getskilllv("SU_POWEROFFLOCK") == 5) bonus bDelayrate,-30; if (getskilllv("SU_SVG_SPIRIT") == 5) bonus2 bSkillCooldown,"SU_LUNATICCARROTBEAT",-2000; - Id: 490394 AegisName: aegis_490394 Name: Record of Thief 2 Type: Armor Weight: 100 Slots: 1 Jobs: Assassin: true Rogue: true Classes: All_Third: true Fourth: true Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus2 bAddSize,Size_All,6; bonus2 bSkillAtk,"SC_TRIANGLESHOT",30; bonus2 bSkillAtk,"ASC_METEORASSAULT",30; - Id: 490395 AegisName: aegis_490395 Name: "[Not For Sale] Record of Thief 2" Type: Armor Weight: 100 Slots: 1 Jobs: Assassin: true Rogue: true Classes: All_Third: true Fourth: true Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus2 bAddSize,Size_All,6; bonus2 bSkillAtk,"SC_TRIANGLESHOT",30; bonus2 bSkillAtk,"ASC_METEORASSAULT",30; - Id: 490396 AegisName: aegis_490396 Name: Establish Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bSpl,3; bonus bMatkRate,10; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; bonus2 bFixedCastrate,"WL_CRIMSONROCK",-100; bonus2 bSkillAtk,"WZ_VERMILION",BaseLevel*8; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",BaseLevel/10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",BaseLevel/10; bonus2 bSkillAtk,"AG_FROZEN_SLASH",BaseLevel/10; bonus2 bSkillAtk,"AG_STORM_CANNON",BaseLevel/10; bonus2 bSkillAtk,"AG_ROCK_DOWN",BaseLevel/10; - Id: 490397 AegisName: aegis_490397 Name: Ring of Unknown Hero (Rune Knight) Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490398 AegisName: aegis_490398 Name: "[Not For Sale] Ring of Unknown Hero (Rune Knight)" Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490399 AegisName: aegis_490399 Name: Boxer Glove Type: Armor Weight: 200 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 55 Script: | bonus bStr,3; bonus bAgi,3; bonus bMaxSP,75; bonus bMdef,15; bonus3 bAutoSpell,"MO_CALLSPIRITS",5,1000; if (BaseJob == Job_Monk) { bonus4 bAutoSpellOnSkill,"CH_CHAINCRUSH","CH_SOULCOLLECT",1,1000; bonus2 bSkillAtk,"MO_CHAINCOMBO",BaseLevel; bonus2 bSkillAtk,"MO_COMBOFINISH",BaseLevel; bonus2 bSkillAtk,"CH_TIGERFIST",BaseLevel; bonus2 bSkillAtk,"CH_CHAINCRUSH",BaseLevel; bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",JobLevel; } - Id: 490400 AegisName: aegis_490400 Name: Record of Archer Type: Armor Weight: 100 Slots: 1 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bLongAtkRate,3*(getskilllv("AC_CONCENTRATION")/2); - Id: 490401 AegisName: aegis_490401 Name: "[Not For Sale] Record of Archer" Type: Armor Weight: 100 Slots: 1 Jobs: BardDancer: true Hunter: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-5; bonus bLongAtkRate,3*(getskilllv("AC_CONCENTRATION")/2); - Id: 490402 AegisName: aegis_490402 Name: Ring of Unknown Hero (Royal Guard) Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490403 AegisName: aegis_490403 Name: "[Not For Sale] Ring of Unknown Hero (Royal Guard)" Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490404 AegisName: Temporal_Ring_TW_LT Name: Temporal Ring-LT Type: Armor Weight: 300 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 2 EquipLevelMin: 200 Script: | bonus bAtkRate,7; bonus bMatkRate,7; - Id: 490405 AegisName: aegis_490405 Name: Beast Rings Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus2 bSubRace,RC_All,5; bonus2 bSubRace,RC_Player_Doram,-5; bonus2 bSubRace,RC_Player_Human,-5; bonus2 bExpAddRace,RC_All,5; switch( getpetinfo(PETINFO_EGGID) ) { case 9003: // Poporing_Egg bonus2 bSubRace,RC_Plant,5; bonus2 bExpAddRace,RC_All,15; break; case 9040: // Civil_Servant_Egg bonus2 bSubRace,RC_Angel,5; bonus2 bExpAddRace,RC_All,15; break; case 9015: // Smokie_Egg bonus2 bSubRace,RC_Brute,5; bonus2 bExpAddRace,RC_All,15; break; case 9020: // Sohee_Egg bonus2 bSubRace,RC_Demon,5; bonus2 bExpAddRace,RC_All,15; break; case 9046: // Goblin_Leader_Egg bonus2 bSubRace,RC_Dragon,5; bonus2 bExpAddRace,RC_All,15; break; case 9044: // Shinobi_Egg bonus2 bSubRace,RC_DemiHuman,5; bonus2 bExpAddRace,RC_All,15; break; case 9007: // Steel_Chonchon_Egg bonus2 bSubRace,RC_Insect,5; bonus2 bExpAddRace,RC_All,15; break; case 9018: // Munak_Egg bonus2 bSubRace,RC_Undead,5; bonus2 bExpAddRace,RC_All,15; break; case 9050: // Medusa_Egg bonus2 bSubRace,RC_Formless,5; bonus2 bExpAddRace,RC_All,15; break; case 9062: // Novice_Poring_Egg bonus2 bSubRace,RC_Fish,5; bonus2 bExpAddRace,RC_All,15; break; } - Id: 490406 AegisName: aegis_490406 Name: Ring of Unknown Hero (Sura) Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490407 AegisName: aegis_490407 Name: "[Not For Sale] Ring of Unknown Hero (Sura)" Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490408 AegisName: aegis_490408 Name: Super Novice Figure Type: Armor Weight: 100 Slots: 1 Jobs: SuperNovice: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@p = getitempos(); bonus bVariableCastrate,-10; bonus bAtkRate,10; bonus bMatkRate,10; if (.@p == EQP_ACC_L) { bonus2 bIgnoreMdefRaceRate,RC_All,50; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Neutral,10; } if (.@p == EQP_ACC_R) { bonus bAspdRate,10; bonus2 bSkillAtk,"PA_SHIELDCHAIN",BaseLevel/3; } - Id: 490409 AegisName: aegis_490409 Name: Book of Copying - Resurrection Chapter Type: Armor Weight: 100 Defense: 10 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAtkRate,5; bonus bMatkRate,5; skill "ALL_RESURRECTION",2; - Id: 490410 AegisName: aegis_490410 Name: Intuiabis Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bSpl,3; bonus bMatkRate,10; bonus bPerfectHitAddRate,25; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSubRace,RC_Player_Human,3; skill "MG_FIREWALL",10; bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",BaseLevel/10; bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",BaseLevel/10; bonus2 bSkillAtk,"ABC_ABYSS_STRIKE",BaseLevel/10; - Id: 490411 AegisName: aegis_490411 Name: Record of Merchant 2 Type: Armor Weight: 100 Slots: 1 Jobs: Alchemist: true Blacksmith: true Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus2 bAddSize,Size_All,6; bonus2 bSkillAtk,"NC_AXEBOOMERANG",30; bonus2 bSkillAtk,"NC_ARMSCANNON",30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",30; - Id: 490412 AegisName: aegis_490412 Name: "[Not For Sale] Record of Merchant 2" Type: Armor Weight: 100 Slots: 1 Jobs: Alchemist: true Blacksmith: true Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bAspdRate,10; bonus2 bAddSize,Size_All,6; bonus2 bSkillAtk,"NC_AXEBOOMERANG",30; bonus2 bSkillAtk,"NC_ARMSCANNON",30; bonus2 bSkillAtk,"GN_SPORE_EXPLOSION",30; - Id: 490413 AegisName: aegis_490413 Name: Twin Head Dragon Ring Type: Armor Weight: 100 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@p = getitempos(); bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bAspdRate,10; bonus bDelayrate,-15; if (readparam(bDex)>=125) bonus bLongAtkRate,15; if (.@p == EQP_ACC_L) { if (getskilllv("RK_DRAGONBREATH") == 10) { bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; } } if (.@p == EQP_ACC_R) { if (getskilllv("RK_DRAGONBREATH_WATER") == 10) { bonus2 bSkillAtk,"RK_DRAGONBREATH",50; } } - Id: 490414 AegisName: aegis_490414 Name: "[Not For Sale] Twin Head Dragon Ring" Type: Armor Weight: 100 Slots: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | .@p = getitempos(); bonus bMaxHPrate,15; bonus bMaxSPrate,15; bonus bAspdRate,10; bonus bDelayrate,-15; if (readparam(bDex)>=125) bonus bLongAtkRate,15; if (.@p == EQP_ACC_L) { if (getskilllv("RK_DRAGONBREATH") == 10) { bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",50; } } if (.@p == EQP_ACC_R) { if (getskilllv("RK_DRAGONBREATH_WATER") == 10) { bonus2 bSkillAtk,"RK_DRAGONBREATH",50; } } - Id: 490415 AegisName: aegis_490415 Name: Ring of Unknown Hero (Sorcerer) Type: Armor Weight: 100 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490416 AegisName: aegis_490416 Name: "[Not For Sale] Ring of Unknown Hero (Sorcerer)" Type: Armor Weight: 100 Slots: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490417 AegisName: Ep2_Commemorative_Ring Name: Commemorative Golden Ring Ep2 Type: Armor Weight: 100 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 1 Script: | bonus bAllStats,7; - Id: 490418 AegisName: aegis_490418 Name: Record of Mage 2 Type: Armor Weight: 100 Slots: 1 Jobs: Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-10; bonus2 bMagicAddSize,Size_All,6; bonus2 bSkillAtk,"WL_COMET",30; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; - Id: 490419 AegisName: aegis_490419 Name: "[Not For Sale] Record of Mage 2" Type: Armor Weight: 100 Slots: 1 Jobs: Sage: true Wizard: true Classes: All_Third: true Fourth: true Locations: Left_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bVariableCastrate,-10; bonus2 bMagicAddSize,Size_All,6; bonus2 bSkillAtk,"WL_COMET",30; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",30; - Id: 490420 AegisName: aegis_490420 Name: Ring of Unknown Hero (Ranger) Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490421 AegisName: aegis_490421 Name: "[Not For Sale] Ring of Unknown Hero (Ranger)" Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490427 AegisName: aegis_490427 Name: Ring of Storm Type: Armor Weight: 100 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Left_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDex,20; bonus bDelayrate,-15; bonus bAtkRate,10; bonus bPerfectHitAddRate,15; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; skill "RA_UNLIMIT",5; bonus2 bSkillAtk,WM_SEVERE_RAINSTORM,BaseLevel/2; UnEquipScript: | sc_end SC_UNLIMIT; - Id: 490428 AegisName: aegis_490428 Name: Chemical Resistant Glove Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bPow,3; bonus bAtkRate,10; bonus bPerfectHitAddRate,25; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSkillAtk,"GN_CARTCANNON",BaseLevel/2; bonus2 bSkillAtk,"GN_CART_TORNADO",BaseLevel/2; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",BaseLevel/10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",BaseLevel/10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",BaseLevel/10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",BaseLevel/10; - Id: 490429 AegisName: aegis_490429 Name: Petal's Tail (Albino) Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bPow,3; bonus bCritical,50; bonus bAtkRate,10; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bFixedCastrate,"AB_ORATIO",-100; bonus2 bFixedCastrate,"AB_RENOVATIO",-100; bonus2 bSkillAtk,"CD_PETITIO",BaseLevel/10; bonus2 bSkillAtk,"CD_EFFLIGO",BaseLevel/10; - Id: 490440 AegisName: Eclipsedefmind_LT Name: Lunar Eclipse Guardian Heart-LT Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 190 Script: | skill "MG_SIGHT",1; bonus bMaxHP,15; bonus bShortAtkRate,10; bonus bLongAtkRate,10; bonus2 bMagicAtkEle,Ele_All,10; - Id: 490453 AegisName: aegis_490453 Name: Elemental Jewel Type: Armor Weight: 100 Slots: 1 Locations: Both_Accessory: true ArmorLevel: 1 EquipLevelMin: 200 Script: | bonus bSpl,3; bonus bMatkRate,10; bonus2 bSubRace,RC_Player_Human,3; bonus2 bSubRace,RC_Player_Doram,3; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-1000; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",BaseLevel/3; bonus2 bSkillAtk,"EM_CONFLAGRATION",BaseLevel/10; bonus2 bSkillAtk,"EM_DIAMOND_STORM",BaseLevel/10; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",BaseLevel/10; bonus2 bSkillAtk,"EM_TERRA_DRIVE",BaseLevel/10; bonus2 bSkillAtk,"EM_VENOM_SWAMP",BaseLevel/10; - Id: 490464 AegisName: aegis_490464 Name: Ring of Unknown Hero (Guillotine) Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490465 AegisName: aegis_490465 Name: "[Not For Sale] Ring of Unknown Hero (Guillotine)" Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490469 AegisName: aegis_490469 Name: Ring of Unknown Hero (Taekwon) Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490470 AegisName: aegis_490470 Name: "[Not For Sale] Ring of Unknown Hero (Taekwon)" Type: Armor Weight: 100 Defense: 7 Slots: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Accessory: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true ArmorLevel: 1 EquipLevelMin: 100 Script: | bonus bDelayrate,-3; bonus bAtkRate,6; bonus bMatkRate,6; - Id: 490483 AegisName: Signet_Of_Spring Name: "Signet of Circulation: Spring" Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 250 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bShortAtkRate,10; bonus bVariableCastrate,-10; - Id: 490484 AegisName: Signet_Of_Summer Name: "Signet of Circulation: Summer" Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 250 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bLongAtkRate,10; bonus bVariableCastrate,-10; - Id: 490485 AegisName: Signet_Of_Autumn Name: "Signet of Circulation: Autumn" Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 250 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus2 bMagicAtkEle,Ele_All,10; bonus bVariableCastrate,-10; - Id: 490486 AegisName: Signet_Of_Winter Name: "Signet of Circulation: Winter" Type: Armor Weight: 500 Defense: 10 Slots: 1 Locations: Left_Accessory: true ArmorLevel: 2 EquipLevelMin: 250 Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritAtkRate,10; bonus bVariableCastrate,-10; - Id: 500000 AegisName: IDTest_weapon Name: IDTest weapon Type: Weapon SubType: 1hSword Weight: 10 Attack: 100 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true # Flags: # BuyingStore: true Script: | bonus3 bAutoSpell,"MG_COLDBOLT",1,1; - Id: 500001 AegisName: Boost_Sword Name: Booster Sword Type: Weapon SubType: 1hSword Attack: 160 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkRate,2; bonus bVariableCastrate,-3; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bBaseAtk,min(BaseLevel,180)/15*3; if (.@r>=7) bonus bVariableCastrate,-1*getskilllv("AM_LEARNINGPOTION"); if (.@r>=9) bonus bLongAtkRate,10; - Id: 500003 AegisName: Light_Blade Name: Light Blade Type: Weapon SubType: 1hSword Weight: 1000 Attack: 130 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bMatk,.@r/2*10; } if (.@r>=3) { bonus2 bSkillAtk,"PA_PRESSURE",5*(.@r/3); bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5; } if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,15; } - Id: 500004 AegisName: Slate_Sword Name: Slate Sword Type: Weapon SubType: 1hSword Weight: 1000 Attack: 190 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bBaseAtk,.@r/2*10; } if (.@r>=3) { bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; } if (.@r>=9) { bonus2 bSkillAtk,"GN_CART_TORNADO",20; } if (.@r>=11) { bonus bDelayrate,-10; } - Id: 500006 AegisName: Woe_Onehand_Sword2_Z Name: Intermediate Guild Member's Flamberge Type: Weapon SubType: 1hSword Weight: 700 Attack: 130 Range: 1 Slots: 1 Jobs: Crusader: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus3 "{ .@r = getrefine(); bonus bMaxHP,1000+((.@r-10)*50); }",1000,30000,"CR_DEVOTION"; - Id: 500007 AegisName: Ep172_1h_Sword Name: Hypocrisy Machine Type: Weapon SubType: 1hSword Weight: 3000 Attack: 250 Range: 1 Slots: 3 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bShortAtkRate,3*(.@r/2); bonus bCritical,2*(.@r/3); if (.@r>=7) bonus bAspdRate,20; if (.@r>=9) { bonus2 bAddSize,Size_Small,25; bonus2 bAddSize,Size_Large,25; } if (.@r>=11) skill "KN_BOWLINGBASH",getskilllv("SM_SWORD"); - Id: 500008 AegisName: Ep172_1h_Sword2 Name: Invidia Bundle Type: Weapon SubType: 1hSword Weight: 1800 Attack: 210 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"GN_CART_TORNADO",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GN_CART_TORNADO",15; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"GN_CART_TORNADO",25; } - Id: 500013 AegisName: Up_Sword_Of_Bluefire Name: Patent Red Lotus Sword Type: Weapon SubType: 1hSword Weight: 1000 Attack: 200 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7) { bonus2 bSkillUseSPrate,"GN_CARTCANNON",10; bonus bVariableCastrate,-7; } if (.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",20; } if (.@r>=11) { bonus bVariableCastrate,-5; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",10; } - Id: 500014 AegisName: Up_Slate_Sword Name: Patent Slate Sword Type: Weapon SubType: 1hSword Weight: 1200 Attack: 205 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GN_CART_TORNADO",.@r/3*10; bonus2 bSkillAtk,"GN_HELLS_PLANT",.@r/3*5; if (.@r>=7) { bonus2 bSkillAtk,"GN_CART_TORNADO",20; bonus2 bSkillAtk,"GN_HELLS_PLANT",10; } if (.@r>=9) { bonus bDelayrate,-10; } if (.@r>=11) { bonus bDelayrate,-5; bonus bMaxHPrate,10; } - Id: 500015 AegisName: PG_B_Sword Name: Pressure Genesis Booster Sword Type: Weapon SubType: 1hSword Attack: 150 Range: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatkRate,2; bonus bMatk,180; bonus bMatk,3*.@r; bonus bMatk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,getskilllv("CR_TRUST"); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"LG_RAYOFGENESIS",25; bonus2 bSkillAtk,"PA_PRESSURE",25; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=13) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; bonus2 bSkillAtk,"PA_PRESSURE",15; } - Id: 500016 AegisName: HS_T_Sword Name: Hell Tornado Booster Sword Type: Weapon SubType: 1hSword Attack: 190 Range: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bShortAtkRate,2*getskilllv("GN_TRAINING_SWORD"); } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"GN_CART_TORNADO",25; bonus2 bSkillAtk,"GN_HELLS_PLANT",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,20; bonus bDelayrate,-10; } if (.@r>=13) { bonus2 bSkillAtk,"GN_CART_TORNADO",15; bonus2 bSkillAtk,"GN_HELLS_PLANT",15; } - Id: 500017 AegisName: Up_Light_Blade Name: Patent Light Blade Type: Weapon SubType: 1hSword Weight: 1200 Attack: 130 MagicAttack: 195 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"PA_PRESSURE",.@r/3*5; bonus2 bSkillAtk,"LG_RAYOFGENESIS",.@r/3*5; if (.@r>=7) { bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"PA_PRESSURE",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } - Id: 500018 AegisName: Fourth_1h_Sword Name: Relapse Blade Type: Weapon SubType: 1hSword Weight: 1850 Attack: 200 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",5*(.@r/2); bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",5*(.@r/2); bonus bAtkRate,3*(.@r/4); - Id: 500019 AegisName: Poenitentia_Gladius Name: Poenitentia Gladius Type: Weapon SubType: 1hSword Weight: 1800 Attack: 195 MagicAttack: 250 Range: 1 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,10; bonus2 bSkillAtk,"IG_CROSS_RAIN",10; bonus2 bSkillAtk,"LG_RAYOFGENESIS",4*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",25; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"IG_CROSS_RAIN",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"IG_CROSS_RAIN",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"IG_CROSS_RAIN",12; } } } - Id: 500020 AegisName: Poenitentia_Ligula Name: Poenitentia Ligula Type: Weapon SubType: 1hSword Weight: 1800 Attack: 185 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",10; bonus2 bSkillAtk,"GN_CARTCANNON",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) { bonus bLongAtkRate,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",5; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",8; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,2; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",10; } } } - Id: 500024 AegisName: Thanos_Sword_AD Name: Thanos Sword-AD Type: Weapon SubType: 1hSword Weight: 1000 Attack: 190 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-15; bonus bAtkRate,5; if (.@r>=9) { bonus bAspdRate,10; bonus2 bSkillAtk,"GN_CARTCANNON",15; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSkillAtk,"GN_CARTCANNON",15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",10; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",10; } } } - Id: 500025 AegisName: Adulter_F_G_Sword Name: Adulter Fides Guardian Sword Type: Weapon SubType: 1hSword Weight: 2000 Attack: 200 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; if (.@r>=9) { bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-500; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Holy,15; } } } } - Id: 500026 AegisName: Adulter_F_Lapier Name: Adulter Fides Rapier Type: Weapon SubType: 1hSword Weight: 2000 Attack: 210 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 500027 AegisName: Vivatus_F_G_Sword Name: Vivatus Fides Guardian Sword Type: Weapon SubType: 1hSword Weight: 2000 Attack: 200 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",20; if (.@r>=9) { bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-500; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Holy,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 500028 AegisName: Vivatus_F_Lapier Name: Vivatus Fides Rapier Type: Weapon SubType: 1hSword Weight: 2000 Attack: 210 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"GN_CARTCANNON",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 500030 AegisName: Excalibur_IL Name: Illusion Excalibur Type: Weapon SubType: 1hSword Weight: 1000 Attack: 120 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-5; bonus bMatkRate,5; if (.@r>=7) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Holy,15; bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",25; } } } - Id: 500032 AegisName: 1Para_Sword Name: Paradise Sword Type: Weapon SubType: 1hSword 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: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseLevel>=20) bonus bBaseAtk,15; if (BaseLevel>=30) bonus bBaseAtk,20; if (BaseLevel>=45) bonus bBaseAtk,25; - Id: 500033 AegisName: 2Para_Sword_CR Name: Paradise Crusader Sword Type: Weapon SubType: 1hSword Attack: 160 MagicAttack: 160 Range: 1 Jobs: Crusader: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) bonus2 bSkillAtk,"CR_GRANDCROSS",10; if (BaseLevel>=90) bonus2 bSkillAtk,"CR_GRANDCROSS",15; - Id: 500034 AegisName: 2Para_Sword_AM Name: Paradise Alchemist Sword Type: Weapon SubType: 1hSword Attack: 160 Range: 1 Jobs: Alchemist: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bShortAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"MC_CARTREVOLUTION",10; if (BaseLevel>=90) bonus2 bSkillAtk,"MC_CARTREVOLUTION",15; - Id: 500035 AegisName: 2Para_Sword_NV Name: Paradise Super Novice Sword Type: Weapon SubType: 1hSword Attack: 160 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bShortAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"SM_BASH",20; if (BaseLevel>=90) bonus2 bSkillAtk,"SM_BASH",20; - Id: 500036 AegisName: 3Para_Sword_LG Name: Paradise Royal Guard Sword Type: Weapon SubType: 1hSword Attack: 160 Range: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("CR_TRUST"); bonus bMatk,180; bonus bMatkRate,5; bonus bVariableCastrate,-1*.@a; if (.@l>=105) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bSkillAtk,"PA_PRESSURE",25; bonus2 bSkillAtk,"LG_RAYOFGENESIS",25; if (.@l>=110) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Holy,15; if (.@l>=115) { bonus2 bSkillAtk,"PA_PRESSURE",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } } } - Id: 500037 AegisName: 3Para_Sword_GN Name: Paradise Genetic Sword Type: Weapon SubType: 1hSword Attack: 180 Range: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("GN_TRAINING_SWORD"); bonus bShortAtkRate,2*.@a; bonus bAtkRate,5; if (.@l>=105) { bonus bDelayrate,-5; bonus2 bSkillAtk,"GN_HELLS_PLANT",25; bonus2 bSkillAtk,"GN_CART_TORNADO",25; if (.@l>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"GN_HELLS_PLANT",15; bonus2 bSkillAtk,"GN_CART_TORNADO",15; } } } - Id: 500038 AegisName: Light_Blade_LT Name: Light Blade-LT Type: Weapon SubType: 1hSword Weight: 1200 Attack: 130 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bMatk,195; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bMagicAtkEle,Ele_Neutral,15; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",30; bonus2 bSkillAtk,"PA_PRESSURE",30; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"LG_RAYOFGENESIS",5*(.@r/3); bonus2 bSkillAtk,"PA_PRESSURE",5*(.@r/3); - Id: 500039 AegisName: Sword_Of_Bluefire_LT Name: Red Lotus Sword-LT Type: Weapon SubType: 1hSword Weight: 1000 Attack: 200 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"GN_CARTCANNON",10; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r>=11) { bonus bVariableCastrate,-8; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",25; bonus2 bSkillAtk,"GN_CARTCANNON",10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 500040 AegisName: Slate_Sword_LT Name: Slate Sword-LT Type: Weapon SubType: 1hSword Weight: 1200 Attack: 205 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillAtk,"GN_HELLS_PLANT",30; bonus2 bSkillAtk,"GN_CART_TORNADO",25; if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillAtk,"GN_CART_TORNADO",20; if (.@r>=11) { bonus bDelayrate,-5; bonus bMaxHPrate,10; bonus2 bSkillAtk,"GN_CART_TORNADO",20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bShortAtkRate,4*(.@r/3); - Id: 500041 AegisName: Melon_Blade Name: Melon Blade Type: Weapon SubType: 1hSword Buy: 20 Weight: 1200 Attack: 150 MagicAttack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 500042 AegisName: SP_B_Saber Name: Super Psychic Booster Saber Type: Weapon SubType: 1hSword Attack: 130 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatkRate,2; bonus bMatk,170+3*.@r; bonus bMatk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bAspdRate,getskilllv("MG_SRECOVERY"); if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus3 bAutoSpell,"SO_PSYCHIC_WAVE",2,1; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus bMatkRate,10; if (.@r>=13) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; } } } } - Id: 500043 AegisName: SI_B_Saber Name: Super Ignition Booster Saber Type: Weapon SubType: 1hSword Attack: 190 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bCritical,15; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bAspdRate,getskilllv("SM_SWORD"); if (.@r>=9) { bonus bCritAtkRate,10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",25; bonus3 bAutoSpell,"RK_IGNITIONBREAK",2,1; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bCritical,15; if (.@r>=13) { bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; } } } } - Id: 500044 AegisName: Solid_Edge Name: Solid Edge Type: Weapon SubType: 1hSword Weight: 1100 Attack: 200 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",6*(.@r/2); bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",8*(.@r/3); bonus bShortAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 500045 AegisName: Wicked_Blade Name: Wicked Blade Type: Weapon SubType: 1hSword Weight: 1800 Attack: 230 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",6*(.@r/2); bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",6*(.@r/2); bonus2 bSkillAtk,"GN_CART_TORNADO",7*(.@r/3); bonus bAtkRate,5*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 500046 AegisName: Poenitentia_Orbis Name: Poenitentia Orbis Type: Weapon SubType: 1hSword Weight: 1600 Attack: 260 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",10; bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",10; bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",3*(.@r/2); bonus2 bSkillAtk,"RG_BACKSTAP",3*(.@r/2); if (.@r>=7) { bonus bAspdRate,20; if (.@r>=9) { bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",25; bonus2 bSkillAtk,"RG_BACKSTAP",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",5; bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",3; bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",3; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",5; bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",5; } } } - Id: 500049 AegisName: Glacier_Sword Name: Glacier Sword Type: Weapon SubType: 1hSword Weight: 1600 Attack: 220 MagicAttack: 210 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 500050 AegisName: Glacier_B_Sword Name: Glacier Basic Sword Type: Weapon SubType: 1hSword Weight: 1400 Attack: 220 MagicAttack: 210 Range: 1 Jobs: Novice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 500051 AegisName: Cannon_Rapier_AD Name: Cannon Rapier-OSAD Type: Weapon SubType: 1hSword Weight: 800 Attack: 160 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus3 bAutoSpell,"MG_FIREBOLT",min(.@r,10),80; bonus3 bAutoSpell,"MG_FIREBALL",min(.@r,10),80; if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"MG_FIREBOLT",60; bonus2 bSkillAtk,"MG_FIREBALL",60; if (.@r>=11) { bonus3 bAutoSpell,"WL_HELLINFERNO",4,40; } } } - Id: 500053 AegisName: Evt_20th_Sword Name: Sword of Honor # !todo check english name Type: Weapon SubType: 1hSword Weight: 500 Attack: 50 MagicAttack: 50 Range: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 500054 AegisName: D_Glacier_Sword Name: Dim Glacier Sword Type: Weapon SubType: 1hSword Weight: 1600 Attack: 220 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 500055 AegisName: D_Glacier_B_Sword Name: Dim Glacier Basic Sword Type: Weapon SubType: 1hSword Weight: 1400 Attack: 220 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 500056 AegisName: F_Ein_1HSWORD Name: Flush Safety Saber Type: Weapon SubType: 1hSword Weight: 1250 Attack: 230 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",20; bonus2 bSkillAtk,"GN_CARTCANNON",20; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,70; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10; bonus2 bSkillAtk,"GN_CARTCANNON",15; bonus2 bSkillUseSP,"BO_MAYHEMIC_THORNS",-25; bonus2 bSkillUseSP,"GN_CARTCANNON",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10; bonus2 bSkillAtk,"GN_CARTCANNON",10; bonus2 bSkillUseSP,"BO_MAYHEMIC_THORNS",-25; bonus2 bSkillUseSP,"GN_CARTCANNON",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10; bonus2 bSkillAtk,"GN_CARTCANNON",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10; bonus2 bSkillAtk,"GN_CARTCANNON",10; } } } } - Id: 500057 AegisName: aegis_500057 Name: Herosria Crusader Sword Type: Weapon SubType: 1hSword Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Crusader: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Holy,10; bonus bLongAtkRate,-5; bonus bVariableCastrate,-10; bonus bDef,-150; - Id: 500058 AegisName: aegis_500058 Name: Herosria Guardian Sword Type: Weapon SubType: 1hSword Weight: 1500 Attack: 100 MagicAttack: 80 Range: 1 Jobs: Crusader: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Player_Human,-5; bonus2 bAddRace,RC_Player_Doram,-5; bonus2 bMagicAddRace,RC_Player_Human,-5; bonus2 bMagicAddRace,RC_Player_Doram,-5; bonus bMatkRate,-3; bonus bAtkRate,-3; bonus bDef,300; - Id: 500059 AegisName: Hs_Am_Sword Name: Herosria Alchemic Sword Type: Weapon SubType: 1hSword Weight: 1500 Attack: 130 Range: 1 Jobs: Alchemist: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bShortAtkRate,10; bonus bLongAtkRate,-5; bonus bAspdRate,10; bonus bDef,-150; - Id: 500060 AegisName: aegis_500060 Name: Herosria Basic Sword Type: Weapon SubType: 1hSword Weight: 1500 Attack: 130 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-5; bonus bShortAtkRate,10; bonus bCritical,-5; bonus bHit,30; - Id: 500061 AegisName: Comp_Light_Blade Name: "[Not For Sale] Light Blade" Type: Weapon SubType: 1hSword Weight: 1000 Attack: 130 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,(.@r/2)*10; bonus2 bSkillAtk,"PA_PRESSURE",5*(.@r/3); bonus2 bSkillAtk,"LG_RAYOFGENESIS",(.@r/3)*5; if (.@r>=9) bonus bVariableCastrate,-10; if (.@r>=11) bonus2 bMagicAtkEle,Ele_Holy,15; - Id: 500062 AegisName: Devil_Cursed_Sword Name: Devil Cursed Sword Type: Weapon SubType: 1hSword Weight: 1200 Attack: 110 MagicAttack: 220 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",5; if (.@r>=5) { bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,5; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r>=9) { bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"HN_GROUND_GRAVITATION",15; bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Ghost,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 500063 AegisName: Guardian_Saber Name: Guardian Saber Type: Weapon SubType: 1hSword Weight: 1100 Attack: 210 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",5; if (.@r>=5) { bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"HN_SPIRAL_PIERCE_MAX",15; bonus2 bSkillAtk,"HN_SHIELD_CHAIN_RUSH",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 500065 AegisName: Blood_Rapier Name: Blood Rapier Type: Weapon SubType: 1hSword Weight: 1500 Attack: 210 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",5; if (.@r>=5) { bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus bCritAtkRate,20; bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 500066 AegisName: Victory_Sword Name: Victory Sword Type: Weapon SubType: 1hSword Weight: 1500 Attack: 210 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",5; if (.@r>=5) { bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus bShortAtkRate,15; bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 500067 AegisName: aegis_500067 Name: 1Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 500068 AegisName: aegis_500068 Name: 2Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 500069 AegisName: aegis_500069 Name: 3Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 500070 AegisName: aegis_500070 Name: 4Lv One-handed Swords Type: Weapon SubType: 1hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 500071 AegisName: aegis_500071 Name: Level 5 One-Handed Sword # !todo check english name Type: Weapon SubType: 1hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Rogue: true Swordman: true Thief: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 500072 AegisName: Devil_Guardian_Sword Name: Devil Guardian Sword Type: Weapon SubType: 1hSword Weight: 1800 Attack: 100 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"IG_CROSS_RAIN",5; if (.@r>=5) { bonus2 bSkillAtk,"IG_CROSS_RAIN",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r>=9) { bonus2 bSkillAtk,"IG_CROSS_RAIN",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bSkillAtk,"IG_CROSS_RAIN",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Holy,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 500073 AegisName: Comp_Fatalist Name: "[Not For Sale] Fatalist" Type: Weapon SubType: Dagger Weight: 900 Attack: 165 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r*2/3); if (.@r>=9) bonus2 bSkillAtk,"SC_FATALMENACE",20; if (.@r>=11) bonus bDelayrate,-7; - Id: 500074 AegisName: Mocadas_G_Sword Name: Muqaddas Sasyiir Type: Weapon SubType: 1hSword Weight: 1500 Attack: 100 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus2 bSkillAtk,"IG_CROSS_RAIN",10; if (.@r>=7) { bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-1000; if (.@r>=9) { bonus2 bSkillAtk,"IG_CROSS_RAIN",10; if (.@r>=11) { bonus2 bSkillAtk,"IG_CROSS_RAIN",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-500; bonus bSMatk,5; } } } } - Id: 500081 AegisName: aegis_500081 Name: Open Illusion Immaterial Sword Type: Weapon SubType: 1hSword Weight: 1000 Attack: 270 Range: 1 Slots: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-3*(.@r/2); if (BaseLevel>=150) bonus bBaseAtk,(min(BaseLevel,170)*3); if (.@r>=7) bonus bVariableCastrate,-5; if (.@r>=9) bonus bAtkRate,5; - Id: 500092 AegisName: Dimen_IG_Sword Name: Dimensions Imperial Sword Type: Weapon SubType: 1hSword Weight: 2300 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"IG_CROSS_RAIN",15+5*(.@r/3); bonus2 bSkillAtk,"LG_RAYOFGENESIS",25+7*(.@r/3); bonus bMatk,25*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,25; bonus2 bMagicAtkEle,Ele_Neutral,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"LG_RAYOFGENESIS",-1000; if (.@r>=11) { bonus2 bSkillAtk,"IG_CROSS_RAIN",15; bonus2 bSkillAtk,"LG_RAYOFGENESIS",45; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"IG_CROSS_RAIN",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 500093 AegisName: Dimen_BO_Sword Name: Dimensions Biological Sword Type: Weapon SubType: 1hSword Weight: 1800 Attack: 240 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bCRate,5; if (.@r>=11) { bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"BO_MAYHEMIC_THORNS",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 500094 AegisName: Dimen_HN_Sword Name: Dimensions Hyper Sword Type: Weapon SubType: 1hSword Weight: 1800 Attack: 240 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 510001 AegisName: Boost_Dagger Name: Booster Dagger Type: Weapon SubType: Dagger Attack: 150 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Fire,3; bonus bAtkRate,3; .@r = getrefine(); if (.@r) { bonus bBaseAtk,.@r*2; bonus bMatk,.@r*2; } .@i = min(BaseLevel,180)/15*3; bonus bBaseAtk,.@i; bonus bMatk,.@i; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,getskilllv("RG_PLAGIARISM"); } if (.@r>=9) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 510002 AegisName: Boost_Nindo Name: Booster Nindo Type: Weapon SubType: Dagger Attack: 150 MagicAttack: 160 Range: 1 Slots: 2 Jobs: KagerouOboro: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Fire,3; bonus2 bMagicAtkEle,Ele_Wind,3; bonus2 bMagicAtkEle,Ele_Water,3; bonus bAtkRate,3; .@r = getrefine(); if (.@r) { bonus bBaseAtk,.@r*2; bonus bMatk,.@r*2; } .@i = min(BaseLevel,180)/15*3; bonus bBaseAtk,.@i; bonus bMatk,.@i; if (.@r>=7) { bonus bVariableCastrate,-1*getskilllv("NJ_NINPOU"); } if (.@r>=9) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 510005 AegisName: Woe_Knife2_Z Name: Intermediate Guild Member's Gladius Type: Weapon SubType: Dagger Weight: 300 Attack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,15+.@r; bonus2 bAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,30; autobonus3 "{ bonus2 bSkillAtk,\"RG_RAID\",50; }",1000,20000,"TF_HIDING"; } - Id: 510006 AegisName: Fatalist Name: Fatalist Type: Weapon SubType: Dagger Weight: 900 Attack: 165 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,(.@r/3)*2; if (.@r>=9) { bonus2 bSkillAtk,"SC_FATALMENACE",20; } if (.@r>=11) { bonus bDelayrate,-7; } - Id: 510008 AegisName: Ep172_1h_Dagger Name: Wrath Rack Type: Weapon SubType: Dagger Weight: 800 Attack: 160 MagicAttack: 170 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"NJ_KOUENKA",10; bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; bonus bMatk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"NJ_KOUENKA",10; bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; } if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillAtk,"NJ_KOUENKA",10; bonus2 bSkillAtk,"NJ_HYOUSENSOU",10; } - Id: 510009 AegisName: Ep172_1h_Dagger2 Name: Gula Teeth Type: Weapon SubType: Dagger Weight: 900 Attack: 180 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_FATALMENACE",10; } if (.@r>=9) { bonus bDelayrate,-10; } if (.@r>=11) { bonus2 bSkillAtk,"SC_FATALMENACE",15; } - Id: 510017 AegisName: CA_B_Dagger Name: Counter Assault Booster Dagger Type: Weapon SubType: Dagger Attack: 180 Range: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bDelayrate,-1*getskilllv("KO_LEFT"); } if (.@r>=9) { bonus bShortAtkRate,10; bonus2 bSkillAtk,"ASC_METEORASSAULT",25; bonus2 bSkillAtk,"GC_COUNTERSLASH",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bDelayrate,-10; } if (.@r>=13) { bonus2 bSkillAtk,"ASC_METEORASSAULT",15; bonus2 bSkillAtk,"GC_COUNTERSLASH",15; } - Id: 510018 AegisName: MF_B_Dagger Name: Magic Fatal Booster Dagger Type: Weapon SubType: Dagger Attack: 190 MagicAttack: 180 Range: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatkRate,2; bonus bAtkRate,2; bonus bMatk,3*(.@r+(min(BaseLevel,195)/15)); bonus bBaseAtk,3*(.@r+(min(BaseLevel,195)/15)); if (.@r>=7) { bonus bDelayrate,-1*getskilllv("RG_BACKSTAP"); bonus2 bMagicAtkEle,Ele_Neutral,getskilllv("RG_PLAGIARISM"); } if (.@r>=9) { bonus bAspd,1; bonus2 bSkillAtk,"SC_FATALMENACE",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; bonus bShortAtkRate,15; } if (.@r>=13) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"SC_FATALMENACE",15; } - Id: 510019 AegisName: Up_Magic_Sword Name: Patent Madogum Type: Weapon SubType: Dagger Weight: 800 Attack: 150 MagicAttack: 195 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r/2*15; bonus bAspdRate,(.@r/3*2); if (.@r>=7) { bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT,1; } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=11) { bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",4,100,BF_SHORT,1; } - Id: 510020 AegisName: Up_Fatalist Name: Patent Fatalist Type: Weapon SubType: Dagger Weight: 1200 Attack: 205 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_FATALMENACE",25; } if (.@r>=9) { bonus2 bSkillUseSPrate,"SC_FATALMENACE",15; bonus bDelayrate,-7; } if (.@r>=11) { bonus bShortAtkRate,10; bonus bDelayrate,-7; } - Id: 510021 AegisName: Avd_Knife Name: Reinforced Knife Type: Weapon SubType: Dagger Weight: 100 Attack: 100 Range: 1 Slots: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: 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: 5 Refineable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAllTraitStats,1; if (.@g>=ENCHANTGRADE_D) { bonus bPow,.@r; } if (.@g>=ENCHANTGRADE_C) { bonus bSpl,.@r; } if (.@g>=ENCHANTGRADE_B) { bonus bSta,.@r; bonus bPAtk,.@r*2; bonus bSMatk,.@r*2; bonus bCRate,.@r; } - Id: 510022 AegisName: Up_Fog_Dew_Sword Name: Patent Kiri no Tsuyu Type: Weapon SubType: Dagger Buy: 20 Weight: 1200 Attack: 190 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | /*Is combo set with 28763 Surudoi Kaze*/ - Id: 510026 AegisName: Fourth_1h_Dagger Name: Relapse Dagger Type: Weapon SubType: Dagger Weight: 1400 Attack: 180 MagicAttack: 215 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/4); - Id: 510027 AegisName: Poenitentia_Mucro Name: Poenitentia Mucro Type: Weapon SubType: Dagger Weight: 900 Attack: 190 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"SHC_SHADOW_STAB",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",3*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,15; if (.@r>=9) { bonus2 bSkillAtk,"GC_CROSSIMPACT",30; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SHC_SHADOW_STAB",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"SHC_SHADOW_STAB",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"SHC_SHADOW_STAB",12; } } } - Id: 510028 AegisName: Poenetentia_Dilacero Name: Poenitentia Dilacero Type: Weapon SubType: Dagger Weight: 900 Attack: 190 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"ABC_DEFT_STAB",10; bonus2 bSkillAtk,"SC_FATALMENACE",3*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SC_FATALMENACE",30; if (.@r>=11) { bonus bDelayrate,-12; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"ABC_DEFT_STAB",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"ABC_DEFT_STAB",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"ABC_DEFT_STAB",12; } } } - Id: 510030 AegisName: Thanos_Dagger_AD Name: Thanos Dagger-AD Type: Weapon SubType: Dagger Weight: 1400 Attack: 150 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,1000,1000; bonus2 bSPRegenRate,100,1000; }",10,4000,BF_MAGIC; bonus bMatk,10*(.@r/2); bonus2 bMagicAtkEle,Ele_Neutral,4*(.@r/3); bonus2 bMagicAtkEle,Ele_Fire,4*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus bMatkRate,5; if (.@r>=9) { bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",4,100,BF_SHORT|BF_WEAPON,1; bonus5 bAutoSpell,"WZ_METEOR",4,100,BF_SHORT|BF_WEAPON,1; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,2; bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; } } } - Id: 510031 AegisName: Rotten_Garden_knife Name: Rotten Garden Knife Type: Weapon SubType: Dagger Buy: 20 Weight: 400 Attack: 360 MagicAttack: 160 Range: 1 Slots: 1 Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RA_CLUSTERBOMB",4*getskilllv("RA_CLUSTERBOMB"); bonus bFlee2,.@r; bonus bLongAtkDef,.@r; - Id: 510032 AegisName: Adulter_F_Dagger Name: Adulter Fides Dagger Type: Weapon SubType: Dagger Weight: 1200 Attack: 210 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_FATALMENACE",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SC_FATALMENACE",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 510033 AegisName: Vivatus_F_Dagger Name: Vivatus Fides Dagger Type: Weapon SubType: Dagger Weight: 1200 Attack: 210 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SC_FATALMENACE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_FATALMENACE",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SC_FATALMENACE",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SC_FATALMENACE",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 510034 AegisName: Ancient_Dagger_IL Name: Illusion Ancient Dagger Type: Weapon SubType: Dagger Weight: 600 Attack: 107 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bSPrecovRate,10; bonus bMaxSP,100; autobonus "{ bonus bMatkRate,10; bonus bMatk,70; }",1,10000,BF_WEAPON; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,15; if (.@r>=9) { bonus2 bMagicAddSize,Size_Medium,20; bonus2 bMagicAddSize,Size_Large,20; if (.@r>=11) { autobonus "{ bonus2 bMagicAddRace,RC_All,15; }",1,10000,BF_MAGIC; } } } - Id: 510035 AegisName: 1Para_Dagger Name: Paradise Dagger Type: Weapon SubType: Dagger Attack: 100 Range: 1 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Mage: true Merchant: true Ninja: true Novice: true Rogue: true Sage: true SoulLinker: true StarGladiator: true SuperNovice: true Swordman: true Taekwon: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatk,100; if (BaseLevel>=20) { bonus bBaseAtk,15; bonus bMatk,15; if (BaseLevel>=30) { bonus bBaseAtk,20; bonus bMatk,20; if (BaseLevel>=45) { bonus bBaseAtk,25; bonus bMatk,25; } } } - Id: 510036 AegisName: 2Para_Dagger_RG Name: Paradise Rogue Dagger Type: Weapon SubType: Dagger Attack: 160 Range: 1 Jobs: Rogue: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAspdRate,10; if (BaseLevel>=60) bonus2 bSkillAtk,"RG_BACKSTAP",20; if (BaseLevel>=75) bonus2 bSkillAtk,"RG_RAID",10; if (BaseLevel>=90) bonus2 bSkillAtk,"RG_RAID",15; - Id: 510037 AegisName: 2Para_Dagger_SL Name: Paradise Soul Linker Dagger Type: Weapon SubType: Dagger Attack: 160 Range: 1 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,15; if (BaseLevel>=60) bonus bCritical,30; if (BaseLevel>=75) bonus bCritAtkRate,5; if (BaseLevel>=90) bonus bCritAtkRate,10; - Id: 510038 AegisName: 3Para_Dagger_SC Name: Paradise Shadow Chaser Dagger Type: Weapon SubType: Dagger Attack: 180 Range: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("RG_PLAGIARISM"); bonus bMatk,180; bonus bMatkRate,3; bonus bDelayrate,-1*.@a; bonus bAtkRate,3; if (.@l>=105) { bonus2 bSkillAtk,"SC_FATALMENACE",25; bonus bAspd,1; if (.@l>=110) { bonus bShortAtkRate,15; bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"SC_FATALMENACE",15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,15; } } } - Id: 510039 AegisName: 3Para_Dagger_NV Name: Paradise Super Novice Dagger Type: Weapon SubType: Dagger Attack: 180 Range: 1 Jobs: SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("SM_SWORD"); bonus bShortAtkRate,.@a; bonus bAtkRate,5; if (.@l>=105) { bonus bAspdRate,10; bonus2 bSkillAtk,"RG_RAID",25; bonus2 bSkillAtk,"RG_BACKSTAP",25; if (.@l>=110) { bonus bShortAtkRate,10; bonus2 bAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"RG_RAID",15; bonus2 bSkillAtk,"RG_BACKSTAP",15; } } } - Id: 510040 AegisName: Magic_Sword_LT Name: Magic Sword-LT Type: Weapon SubType: Dagger Weight: 800 Attack: 150 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bMatk,195; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus5 bAutoSpell,"WZ_METEOR",7,100,BF_SHORT|BF_WEAPON,1; if (.@r>=9) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bMagicAtkEle,Ele_All,15; if (.@r>=11) { bonus5 bAutoSpell,"SO_PSYCHIC_WAVE",5,100,BF_SHORT|BF_WEAPON,1; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); - Id: 510041 AegisName: Fatalist_LT Name: Fatalist-LT Type: Weapon SubType: Dagger Weight: 1200 Attack: 215 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } bonus bBaseAtk,15*(.@r/2); bonus bAspdRate,2*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_FATALMENACE",25; if (.@r>=9) { bonus bDelayrate,-7; bonus2 bSkillAtk,"SC_FATALMENACE",20; if (.@r>=11) { bonus bShortAtkRate,15; bonus bDelayrate,-7; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } - Id: 510042 AegisName: Rebirth_Athame Name: Rebirth Athame Type: Weapon SubType: Dagger Buy: 20 Weight: 300 Attack: 30 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Merchant: true Ninja: true Rogue: true Sage: true SoulLinker: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); skill "WZ_STORMGUST",1; bonus2 bMagicAtkEle,Ele_Water,3*.@r; if (getskilllv("GN_MANDRAGORA") == 5) bonus3 bSPVanishRate,1000,10,BF_WEAPON; if (.@r>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkDef,5; } if (.@r>=7) skill "WZ_STORMGUST",min(10,.@r); if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkDef,5; } - Id: 510043 AegisName: Kings_Bless_A Name: Awakened King Sword of Praising Glory Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 120 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Rogue: true Sage: true SoulLinker: true StarGladiator: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Holy; bonus2 bAddSize,Size_All,6*.@r; if (.@r>=9) bonus bNoSizeFix; - Id: 510044 AegisName: Kings_Eager_A Name: Awakened Karma Sword of Wearing Destruction Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 120 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Rogue: true Sage: true SoulLinker: true StarGladiator: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Dark; bonus2 bAddEle,Ele_All,6*.@r; if (.@r>=9) bonus2 bSkillCooldown,"GC_DARKCROW",-30000; - Id: 510048 AegisName: Melon_Dagger Name: Melon Dagger Type: Weapon SubType: Dagger Buy: 20 Weight: 600 Attack: 120 MagicAttack: 120 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true KagerouOboro: true Knight: true Rogue: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 510049 AegisName: C_Garden_Knife Name: Corrode Garden Knife Type: Weapon SubType: Dagger Weight: 300 Attack: 117 MagicAttack: 190 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus3 bAutoSpell,"SO_CLOUD_KILL",1,1; autobonus "{ bonus2 bMagicAtkEle,Ele_Poison,15; }",20,5000,BF_WEAPON; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,15; if (.@r>=9) { bonus2 bMagicAddSize,Size_Small,20; bonus2 bMagicAddSize,Size_Medium,20; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Poison,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bSMatk,2; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus bSpl,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,15; } } } - Id: 510050 AegisName: Solid_Dagger Name: Solid Dagger Type: Weapon SubType: Dagger Weight: 1200 Attack: 180 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@r = getrefine(); .@g = getenchantgrade(); bonus2 bSkillAtk,"SS_SEKIENHOU",5*(.@r/2); bonus2 bSkillAtk,"SS_REIKETSUHOU",5*(.@r/2); bonus2 bSkillAtk,"SS_ANTENPOU",7*(.@r/3); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bSpl,1; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SS_SEKIENHOU",7; bonus2 bSkillAtk,"SS_REIKETSUHOU",7; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,1; } } } - Id: 510051 AegisName: Wicked_Dagger Name: Wicked Dagger Type: Weapon SubType: Dagger Weight: 1400 Attack: 160 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",7*(.@r/2); bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10*(.@r/3); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); bonus bAspdRate,7*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bSpl,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",10; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; } } } - Id: 510052 AegisName: Wicked_Edge Name: Wicked Edge Type: Weapon SubType: Dagger Weight: 1400 Attack: 200 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SS_KAGENOMAI",5*(.@r/2); bonus2 bSkillAtk,"SS_KAGEGISSEN",7*(.@r/3); bonus bShortAtkRate,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,1; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SS_KAGENOMAI",7; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,1; } } } - Id: 510053 AegisName: Fourth_1h_Nindo Name: Fortified Dagger Type: Weapon SubType: Dagger Weight: 1100 Attack: 160 MagicAttack: 180 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SS_SEKIENHOU",4*(.@r/2); bonus2 bSkillAtk,"SS_REIKETSUHOU",4*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/4); - Id: 510054 AegisName: Fourth_1h_Edge Name: Fortified Edge Type: Weapon SubType: Dagger Weight: 1000 Attack: 170 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"HN_DOUBLEBOWLINGBASH",5*(.@r/2); bonus bShortAtkRate,3*(.@r/4); - Id: 510055 AegisName: Fourth_1h_Nindo2 Name: Relapse Edge Type: Weapon SubType: Dagger Weight: 1200 Attack: 180 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SS_KAGENOMAI",4*(.@r/2); bonus bShortAtkRate,2*(.@r/4); - Id: 510056 AegisName: Poenitentia_Sol Name: Poenitentia Sol Type: Weapon SubType: Dagger Weight: 1200 Attack: 210 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,7; bonus2 bSkillAtk,"SS_KUNAIKAITEN",7; bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",7; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",2*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,7; if (.@r>=9) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; if (.@r>=11) { bonus2 bAddSize,Size_All,10; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-1000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SS_KUNAIKAITEN",5; bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"SS_KUNAIKAITEN",3; bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",3; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"SS_KUNAIKAITEN",5; bonus2 bSkillAtk,"SS_KUNAIKUSSETSU",5; } } } - Id: 510057 AegisName: Poenitentia_Jana Name: Poenitentia Jana Type: Weapon SubType: Dagger Weight: 1100 Attack: 180 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,7; bonus bMatk,200; bonus2 bSkillAtk,"SS_RAIDENPOU",7; bonus2 bSkillAtk,"SS_KINRYUUHOU",7; bonus2 bSkillAtk,"NJ_KOUENKA",2*(.@r/2); bonus2 bSkillAtk,"NJ_HYOUSENSOU",2*(.@r/2); bonus2 bSkillAtk,"NJ_HUUJIN",2*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"NJ_KOUENKA",20; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20; bonus2 bSkillAtk,"NJ_HUUJIN",20; if (.@r>=11) { bonus2 bMagicAddRace,RC_All,10; bonus2 bMagicAddRace,RC_Player_Human,-10; bonus2 bMagicAddRace,RC_Player_Doram,-10; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SS_RAIDENPOU",5; bonus2 bSkillAtk,"SS_KINRYUUHOU",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"SS_RAIDENPOU",3; bonus2 bSkillAtk,"SS_KINRYUUHOU",3; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"SS_RAIDENPOU",5; bonus2 bSkillAtk,"SS_KINRYUUHOU",5; } } } - Id: 510060 AegisName: Fog_Dew_Sword_LT Name: Kiri no Tsuyu-LT Type: Weapon SubType: Dagger Weight: 1200 Attack: 190 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true - Id: 510061 AegisName: Glacier_R_Knife Name: Glacier Rogue Knife Type: Weapon SubType: Dagger Weight: 1400 Attack: 210 MagicAttack: 210 Range: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 510062 AegisName: Glacier_B_Knife Name: Glacier Basic Knife Type: Weapon SubType: Dagger Weight: 1200 Attack: 210 MagicAttack: 210 Range: 1 Jobs: Novice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 510066 AegisName: Kuroiro_AD Name: Kuroiro-OSAD Type: Weapon SubType: Dagger Weight: 900 Attack: 150 MagicAttack: 150 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAddEle,Ele_Undead,7; bonus2 bAddEle,Ele_Undead,7; bonus2 bMagicAddEle,Ele_Dark,7; bonus2 bAddEle,Ele_Dark,7; if (.@r>=7) { bonus2 bAddEle,Ele_Undead,13; bonus2 bMagicAddEle,Ele_Undead,13; bonus2 bAddEle,Ele_Dark,13; bonus2 bMagicAddEle,Ele_Dark,13; if (.@r>=9) { bonus2 bSkillAtk,"KO_HAPPOKUNAI",35; bonus2 bSkillAtk,"NJ_KOUENKA",20; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20; bonus2 bSkillAtk,"NJ_HUUJIN",20; if (.@r>=11) { bonus2 bAddRace,RC_Undead,15; bonus2 bMagicAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; bonus2 bMagicAddRace,RC_Demon,15; } } } - Id: 510067 AegisName: Comp_Fog_Dew_Sword Name: "[Not For Sale] Kiri no Tsuyu" Type: Weapon SubType: Dagger Weight: 1000 Attack: 150 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true - Id: 510068 AegisName: Comp_Sharp_Wind_Sword Name: "[Not For Sale] Surudoi Kaze" Type: Weapon SubType: Dagger Weight: 1000 Attack: 150 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true - Id: 510069 AegisName: SN_B_Dagger Name: Super Novice Booster Dagger Type: Weapon SubType: Dagger Attack: 210 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,3; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bAspdRate,getskilllv("SM_SWORD"); if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; bonus2 bSkillAtk,"RG_BACKSTAP",15; bonus2 bSkillAtk,"RG_RAID",15; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bAtkRate,10; if (.@r>=13) { bonus2 bSkillAtk,"RG_BACKSTAP",25; bonus2 bSkillAtk,"RG_RAID",25; } } } } - Id: 510070 AegisName: Blessed_Knife Name: Blessed Knife Type: Weapon SubType: Dagger Weight: 1200 Attack: 200 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RG_BACKSTAP",20*(.@r/3); if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { skill "SC_FATALMENACE",7; } } - Id: 510071 AegisName: Up_Blessed_Knife Name: Patent Blessed Knife Type: Weapon SubType: Dagger Weight: 1200 Attack: 210 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"RG_BACKSTAP",25*(.@r/3); if (.@r>=7) { skill "SC_FATALMENACE",10; bonus2 bAddEle,Ele_All,15; if (.@r>=9) { bonus bAspdRate,10; bonus2 bSkillAtk,"SC_FATALMENACE",10; if (.@r>=11) { bonus bShortAtkRate,15; bonus bDelayrate,-5; } } } - Id: 510072 AegisName: Blessed_Knife_LT Name: Blessed Knife-LT Type: Weapon SubType: Dagger Weight: 1200 Attack: 220 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"RG_BACKSTAP",25*(.@r/3); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { skill "SC_FATALMENACE",10; bonus2 bAddEle,Ele_All,15; if (.@r>=9) { bonus bAspdRate,10; bonus2 bSkillAtk,"SC_FATALMENACE",15; if (.@r>=11) { bonus bShortAtkRate,20; bonus bDelayrate,-10; } } } if (.@g>=ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g>=ENCHANTGRADE_C) { bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g>=ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } - Id: 510075 AegisName: D_Glacier_R_Knife Name: Dim Glacier Rogue Knife Type: Weapon SubType: Dagger Weight: 1400 Attack: 210 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 510076 AegisName: D_Glacier_B_Knife Name: Dim Glacier Basic Knife Type: Weapon SubType: Dagger Weight: 1200 Attack: 210 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 510077 AegisName: F_Ein_1HMAGGER Name: Flush Jewel Detector Mk47 Type: Weapon SubType: Dagger Weight: 1250 Attack: 200 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,10; bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",20; if (.@r>=7) { bonus bAspdRate,10; bonus bMatk,70; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",10; bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillUseSP,"ABC_ABYSS_SQUARE",-25; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus bDelayrate,-15; bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",10; bonus2 bSkillUseSP,"ABC_ABYSS_SQUARE",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",10; } } } } - Id: 510079 AegisName: aegis_510079 Name: Herosria Alchemic Dagger Type: Weapon SubType: Dagger Weight: 1500 Attack: 100 MagicAttack: 120 Range: 1 Jobs: Alchemist: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bLongAtkRate,-5; bonus bHealPower,10; bonus bDelayrate,-10; bonus bAtkRate,-3; - Id: 510080 AegisName: aegis_510080 Name: Herosria Assassin Dagger I Type: Weapon SubType: Dagger Weight: 1500 Attack: 150 Range: 1 Jobs: Assassin: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510081 AegisName: aegis_510081 Name: Herosria Assassin Dagger II Type: Weapon SubType: Dagger Weight: 1500 Attack: 50 Range: 1 Jobs: Assassin: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510082 AegisName: aegis_510082 Name: Herosria Assassin Knife I Type: Weapon SubType: Dagger Weight: 1500 Attack: 150 Range: 1 Jobs: Assassin: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510083 AegisName: aegis_510083 Name: Herosria Assassin Knife II Type: Weapon SubType: Dagger Weight: 1500 Attack: 50 Range: 1 Jobs: Assassin: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510084 AegisName: aegis_510084 Name: Herosria Rogue Knife Type: Weapon SubType: Dagger Weight: 1500 Attack: 130 Range: 1 Jobs: Rogue: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_All,-5; bonus bShortAtkRate,10; bonus bMatkRate,-3; bonus bBaseAtk,30; - Id: 510085 AegisName: aegis_510085 Name: Herosria Rogue Dagger Type: Weapon SubType: Dagger Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Rogue: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bShortAtkRate,-5; bonus bAspdRate,-5; bonus bVariableCastrate,-10; - Id: 510086 AegisName: aegis_510086 Name: Herosria Hunter Knife Type: Weapon SubType: Dagger Weight: 1500 Attack: 130 Range: 1 Jobs: Hunter: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,-10; bonus2 bSubRace,RC_Player_Doram,-10; bonus bShortAtkRate,10; bonus bVariableCastrate,5; bonus bHit,30; - Id: 510087 AegisName: aegis_510087 Name: Herosria Ninja Dagger I Type: Weapon SubType: Dagger Weight: 1500 Attack: 150 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510088 AegisName: aegis_510088 Name: Herosria Ninja Dagger II Type: Weapon SubType: Dagger Weight: 1500 Attack: 50 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510089 AegisName: aegis_510089 Name: Herosria Ninja Knife I Type: Weapon SubType: Dagger Weight: 1500 Attack: 100 MagicAttack: 150 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510090 AegisName: aegis_510090 Name: Herosria Ninja Knife II Type: Weapon SubType: Dagger Weight: 1500 Attack: 50 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true - Id: 510091 AegisName: Underworld_Knife Name: Underworld Knife Type: Weapon SubType: Dagger Weight: 1000 Attack: 180 Range: 1 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"WH_SOLIDTRAP",5; bonus2 bSkillAtk,"WH_FLAMETRAP",5; if (.@r>=5) { bonus2 bSkillAtk,"WH_SOLIDTRAP",10; bonus2 bSkillAtk,"WH_FLAMETRAP",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"WH_SOLIDTRAP",10; bonus2 bSkillAtk,"WH_FLAMETRAP",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"WH_DEEPBLINDTRAP",15; bonus2 bSkillAtk,"WH_SWIFTTRAP",15; bonus2 bSkillAtk,"WH_SOLIDTRAP",5; bonus2 bSkillAtk,"WH_FLAMETRAP",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 510092 AegisName: Holy_Light_Dagger Name: Holy Light Dagger Type: Weapon SubType: Dagger Weight: 800 Attack: 205 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",5; if (.@r>=5) { bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"ABC_DEFT_STAB",15; bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 510096 AegisName: aegis_510096 Name: 1Lv Dagger Type: Weapon SubType: Dagger Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true Knight: true Merchant: true Ninja: true Novice: true SuperNovice: true Rebellion: true Rogue: true SoulLinker: true Swordman: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 510097 AegisName: aegis_510097 Name: 2Lv Dagger Type: Weapon SubType: Dagger Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true Knight: true Merchant: true Ninja: true Novice: true SuperNovice: true Rebellion: true Rogue: true SoulLinker: true Swordman: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 510098 AegisName: aegis_510098 Name: 3Lv Dagger Type: Weapon SubType: Dagger Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true Knight: true Merchant: true Ninja: true Novice: true SuperNovice: true Rebellion: true Rogue: true SoulLinker: true Swordman: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 510099 AegisName: aegis_510099 Name: 4Lv Dagger Type: Weapon SubType: Dagger Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true Knight: true Merchant: true Ninja: true Novice: true SuperNovice: true Rebellion: true Rogue: true SoulLinker: true Swordman: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 510100 AegisName: aegis_510100 Name: Level 5 Dagger # !todo check english name Type: Weapon SubType: Dagger Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Archer: true Assassin: true BardDancer: true Blacksmith: true Crusader: true Hunter: true Knight: true Merchant: true Ninja: true Novice: true SuperNovice: true Rebellion: true Rogue: true SoulLinker: true Swordman: true Thief: true Wizard: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 510102 AegisName: Mocadas_C_Sword Name: Muqaddas Tasyiribatiy Type: Weapon SubType: Dagger Weight: 1250 Attack: 215 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"ABC_DEFT_STAB",10; if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"ABC_DEFT_STAB",10; if (.@r>=11) { bonus2 bSkillAtk,"ABC_DEFT_STAB",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 510103 AegisName: Mocadas_Knife Name: Muqaddas Nazar Type: Weapon SubType: Dagger Weight: 1500 Attack: 200 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 510104 AegisName: Mocadas_Degger Name: Muqaddas Kanjar Type: Weapon SubType: Dagger Weight: 1500 Attack: 150 Range: 1 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true - Id: 510105 AegisName: F_Ein_1HDAGGER Name: Flush Metal Detector Mk47 Type: Weapon SubType: Dagger Weight: 1250 Attack: 200 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SHC_SHADOW_STAB",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"SHC_SHADOW_STAB",10; bonus2 bSkillAtk,"GC_CROSSIMPACT",10; } } } } - Id: 510106 AegisName: F_Ein_1HDAGGER2 Name: Flush Metal Detector Mk47-2 Type: Weapon SubType: Dagger Weight: 1250 Attack: 200 Range: 1 Jobs: Assassin: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true - Id: 510118 AegisName: aegis_510118 Name: Incurable Evil Sword Type: Weapon SubType: Dagger Weight: 600 Attack: 120 MagicAttack: 120 Range: 3 Slots: 1 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSubRace,RC_Player_Doram,10; bonus2 bSubRace,RC_Player_Human,10; bonus2 bVariableCastrate,"ABC_ABYSS_SQUARE",-100; bonus2 bVariableCastrate,"ABC_ABYSS_STRIKE",-100; bonus2 bAddSize,Size_All,10*.@r; if (.@r>=8) { bonus2 bSkillAtk,"ABC_ABYSS_DAGGER",25; bonus2 bSkillAtk,"ABC_ABYSS_SQUARE",25; bonus2 bSkillAtk,"ABC_ABYSS_STRIKE",25; if (.@r>=10) { autobonus "{ bonus2 bMagicAtkEle,Ele_Neutral,50; }",50,10000,BF_MAGIC; } } - Id: 510120 AegisName: aegis_510120 Name: Opened Illusion Moonlight Sword Type: Weapon SubType: Dagger Weight: 400 Attack: 180 Range: 1 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHit,3*.@r; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) { bonus bAtkRate,5; if (BaseLevel>=150) { bonus bBaseAtk,(min(BaseLevel,170)*3); } } - Id: 510139 AegisName: Dimen_ABC_Knife Name: Dimensions Abyss Knife Type: Weapon SubType: Dagger Weight: 1800 Attack: 240 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"ABC_DEFT_STAB",15+5*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,25; if (.@r>=9) { bonus bDelayrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"ABC_DEFT_STAB",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"ABC_DEFT_STAB",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 510150 AegisName: Demonius_Furious Name: Furious Demonius Type: Weapon SubType: Dagger Weight: 1400 Attack: 180 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"ABC_DEFT_STAB",5; if (BaseLevel>=210) { bonus bAtkRate,4; bonus bBaseAtk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"ABC_DEFT_STAB",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"ABC_DEFT_STAB",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"ABC_DEFT_STAB",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"ABC_DEFT_STAB",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"ABC_DEFT_STAB",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); bonus bAtkRate,3*(.@r/2); } } } } - Id: 510151 AegisName: Demonsword_Furious Name: Furious Demon Sword Type: Weapon SubType: Dagger Weight: 1400 Attack: 140 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; if (BaseLevel>=210) { bonus bMatkRate,4; bonus bMatk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",5; } if (BaseLevel>=230) { bonus2 bMagicAddSize,Size_All,10; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@r>=11) { bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"ABC_FROM_THE_ABYSS_ATK",10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); bonus bMatkRate,3*(.@r/2); } } } } - Id: 520000 AegisName: Boost_Axe Name: Booster Axe Type: Weapon SubType: 1hAxe Attack: 200 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bAtkRate,5; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bBaseAtk,min(BaseLevel,180)/15*3; if (.@r>=7) bonus bBaseAtk,getskilllv("BS_WEAPONRESEARCH")*3; if (.@r>=9) bonus2 bAddSize,Size_All,15; - Id: 520001 AegisName: Woe_One_Hand_Axe2_Z Name: Intermediate Guild Member's Cleaver Type: Weapon SubType: 1hAxe Weight: 1000 Attack: 130 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",1,100; bonus4 bAutoSpellOnSkill,"AM_ACIDTERROR","NPC_CRITICALWOUND",1,100; } - Id: 520002 AegisName: Ep172_1h_Axe Name: Pride Steel Type: Weapon SubType: 1hAxe Weight: 3000 Attack: 250 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NC_POWERSWING",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"NC_POWERSWING",15; } if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; } if (.@r>=11) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",25; } - Id: 520003 AegisName: Scythe_Of_Ice_Flame Name: Scythe of Ice Flame Type: Weapon SubType: 1hAxe Buy: 20 Weight: 4000 Attack: 360 MagicAttack: 290 Range: 3 Slots: 1 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bStr,3; bonus bInt,5; bonus2 bResEff,Eff_Freeze,((.@r>=9)?10000:(.@r>=7?7500:5000)); bonus2 bResEff,Eff_Burning,((.@r>=9)?10000:(.@r>=7?7500:5000)); bonus2 bSkillAtk,"MC_MAMMONITE",BaseLevel*10; bonus2 bHPDrainRate,1000,((.@r>=9)?4:(.@r>=7?2:1)); bonus bMaxHPrate,2*.@r; bonus bAtkRate,2*.@r; bonus bPerfectHitAddRate,2*.@r; if (.@r>=10) bonus bNoSizeFix; - Id: 520008 AegisName: Adulter_F_Axe Name: Adulter Fides Axe Type: Weapon SubType: 1hAxe Weight: 7500 Attack: 270 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NC_AXEBOOMERANG",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 520009 AegisName: Vivatus_F_Axe Name: Vivatus Fides Axe Type: Weapon SubType: 1hAxe Weight: 7500 Attack: 270 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NC_AXEBOOMERANG",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 520010 AegisName: 1Para_Axe Name: Paradise Axe Type: Weapon SubType: 1hAxe Attack: 100 Range: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; if (BaseLevel>=20) bonus bBaseAtk,15; if (BaseLevel>=30) bonus bBaseAtk,20; if (BaseLevel>=45) bonus bBaseAtk,25; - Id: 520011 AegisName: 2Para_Axe_BS Name: Paradise Blacksmith Axe Type: Weapon SubType: 1hAxe Attack: 160 Range: 1 Jobs: Blacksmith: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bShortAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"MC_CARTREVOLUTION",10; if (BaseLevel>=90) bonus2 bSkillAtk,"MC_CARTREVOLUTION",15; - Id: 520012 AegisName: 3Para_Axe_NC Name: Paradise Mechanic Axe Type: Weapon SubType: 1hAxe Attack: 250 Range: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("NC_MADOLICENCE"); bonus bUnbreakableWeapon; bonus bLongAtkRate,2*.@a; bonus bAtkRate,5; if (.@l>=105) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"NC_VULCANARM",25; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; bonus2 bSkillAtk,"NC_ARMSCANNON",25; if (.@l>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"NC_VULCANARM",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; bonus2 bSkillAtk,"NC_ARMSCANNON",15; } } } - Id: 520015 AegisName: Melon_Axe Name: Melon Axe Type: Weapon SubType: 1hAxe Buy: 20 Weight: 1800 Attack: 180 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 520017 AegisName: Glacier_Axe Name: Glacier Axe Type: Weapon SubType: 1hAxe Weight: 5000 Attack: 240 MagicAttack: 210 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 520021 AegisName: D_Glacier_Axe Name: Dim Glacier Axe Type: Weapon SubType: 1hAxe Weight: 5000 Attack: 240 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 520022 AegisName: Hs_Bs_Axe Name: Herosria Axe Type: Weapon SubType: 1hAxe Weight: 1500 Attack: 130 Range: 1 Jobs: Blacksmith: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bShortAtkRate,10; bonus bLongAtkRate,-5; bonus bAspdRate,10; bonus bDef,-150; - Id: 520024 AegisName: aegis_520024 Name: 1Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 520027 AegisName: aegis_520027 Name: 2Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 520028 AegisName: aegis_520028 Name: 3Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 520029 AegisName: aegis_520029 Name: 4Lv One-handed Axe. Type: Weapon SubType: 1hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 520030 AegisName: aegis_520030 Name: Level 5 Axe # !todo check english name Type: Weapon SubType: 1hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Assassin: true Blacksmith: true Crusader: true Knight: true Merchant: true Novice: true SuperNovice: true Swordman: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 520031 AegisName: Mocadas_Axe Name: Muqaddas Tabar Type: Weapon SubType: 1hAxe Weight: 6000 Attack: 250 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus2 bSkillAtk,"MT_TRIPLE_LASER",10; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"MT_TRIPLE_LASER",10; if (.@r>=11) { bonus2 bSkillAtk,"MT_TRIPLE_LASER",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 520033 AegisName: aegis_520033 Name: Opened Illusion War Axe Type: Weapon SubType: 1hAxe Weight: 1500 Attack: 255 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bLuk,3; bonus bHit,3*(.@r/2); bonus bCritical,3*(.@r/2); if (BaseLevel>=150) bonus bBaseAtk,(min(BaseLevel,170)*3); if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) bonus bAtkRate,5; - Id: 530000 AegisName: Boost_Spear Name: Booster Spear Type: Weapon SubType: 1hSpear Attack: 160 MagicAttack: 160 Range: 3 Slots: 2 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMatkRate,3; bonus bAtkRate,3; bonus2 bMagicAtkEle,Ele_Holy,3; .@r = getrefine(); if (.@r) { bonus bBaseAtk,.@r*2; bonus bMatk,.@r*2; } .@i = min(BaseLevel,180)/15*3; bonus bBaseAtk,.@i; bonus bMatk,.@i; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,getskilllv("CR_TRUST"); } if (.@r>=9) { bonus bLongAtkRate,10; } - Id: 530001 AegisName: Woe_Onehand_Spear2_Z Name: Intermediate Guild Member's Pike Type: Weapon SubType: 1hSpear Weight: 900 Attack: 130 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); .@a = getskilllv("KN_SPEARMASTERY"); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { autobonus3 "{ bonus2 bSkillAtk,\"KN_PIERCE\",20+" + .@a + "; }",1000,10000,"SM_PROVOKE"; bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Stun,1000+(.@a*200); bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Blind,1000+(.@a*200); } - Id: 530002 AegisName: Ep172_1h_Spear Name: Gluttony Stick Type: Weapon SubType: 1hSpear Weight: 2000 Attack: 190 MagicAttack: 200 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",10; } if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillAtk,"LG_RAYOFGENESIS",15; } - Id: 530005 AegisName: BC_B_Spear Name: Vanishing Cannon Booster Spear Type: Weapon SubType: 1hSpear Attack: 200 Range: 3 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bAspdRate,getskilllv("CR_SPEARQUICKEN"); } if (.@r>=9) { bonus bAspd,1; bonus2 bSkillAtk,"LG_OVERBRAND",25; bonus2 bSkillAtk,"LG_BANISHINGPOINT",25; bonus2 bSkillAtk,"LG_CANNONSPEAR",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bLongAtkRate,15; bonus bShortAtkRate,15; } if (.@r>=13) { bonus2 bSkillAtk,"LG_OVERBRAND",15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; } - Id: 530006 AegisName: Up_Undine_Spear_K Name: Patent Aquatic Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1400 Attack: 195 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7) { bonus2 bSkillAtk,"LG_CANNONSPEAR",15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus bAspdRate,10; } if (.@r>=9) { bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; } if (.@r>=11) { bonus bPerfectHitAddRate,7; bonus bMaxSPrate,5; } - Id: 530009 AegisName: Fourth_1h_Spear Name: Fortified Spear Type: Weapon SubType: 1hSpear Weight: 1400 Attack: 200 Range: 3 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",5*(.@r/2); bonus bLongAtkRate,2*(.@r/4); - Id: 530010 AegisName: Poenitentia_Hasta Name: Poenitentia Hasta Type: Weapon SubType: 1hSpear Weight: 1900 Attack: 205 Range: 3 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"IG_OVERSLASH",10; bonus2 bSkillAtk,"LG_OVERBRAND",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"LG_OVERBRAND",25; if (.@r>=11) { bonus bShortAtkRate,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"IG_OVERSLASH",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"IG_OVERSLASH",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"IG_OVERSLASH",12; } } } - Id: 530012 AegisName: Thanos_Spear_AD Name: Thanos Spear-AD Type: Weapon SubType: 1hSpear Weight: 1800 Attack: 190 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"LG_HESPERUSLIT",10*(.@r/3); if (.@r>=7) { bonus bDelayrate,-10; bonus2 bSkillAtk,"LG_HESPERUSLIT",15; if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"LG_OVERBRAND",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bShortAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; bonus2 bSkillAtk,"IG_OVERSLASH",10; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"IG_OVERSLASH",10; } } } - Id: 530013 AegisName: Adulter_F_G_Spear Name: Adulter Fides Guardian Spear Type: Weapon SubType: 1hSpear Weight: 1800 Attack: 220 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"LG_OVERBRAND",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"LG_OVERBRAND",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"LG_OVERBRAND",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 530014 AegisName: Vivatus_F_G_Spear Name: Vivatus Fides Guardian Spear Type: Weapon SubType: 1hSpear Weight: 1800 Attack: 220 Range: 3 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"LG_OVERBRAND",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"LG_OVERBRAND",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"LG_OVERBRAND",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"LG_OVERBRAND",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 530015 AegisName: Gelerdria_IL Name: Illusion Gelerdria Type: Weapon SubType: 1hSpear Weight: 2000 Attack: 170 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bCritical,15; bonus bMaxHPrate,10; bonus bAspdRate,2*(.@r/3); bonus bBaseAtk,20*(.@r/3); if (.@r>=7) { bonus bCritAtkRate,30; bonus2 bSkillAtk,"LG_CANNONSPEAR",25; if (.@r>=9) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"LG_BANISHINGPOINT",25; if (.@r>=11) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; bonus2 bSkillAtk,"LG_CANNONSPEAR",20; } } } - Id: 530017 AegisName: 2Para_Spear_CR Name: Paradise Crusader Spear Type: Weapon SubType: 1hSpear Attack: 160 Range: 3 Jobs: Crusader: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"CR_HOLYCROSS",10; if (BaseLevel>=90) bonus2 bSkillAtk,"CR_HOLYCROSS",15; - Id: 530018 AegisName: 3Para_Spear_LG Name: Paradise Royal Guard Spear Type: Weapon SubType: 1hSpear Attack: 180 Range: 3 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("CR_SPEARQUICKEN"); bonus bAspdRate,.@a; bonus bAtkRate,5; if (.@l>=105) { bonus bAspd,1; bonus2 bSkillAtk,"LG_BANISHINGPOINT",25; bonus2 bSkillAtk,"LG_CANNONSPEAR",25; bonus2 bSkillAtk,"LG_OVERBRAND",25; if (.@l>=110) { bonus bShortAtkRate,15; bonus bLongAtkRate,15; bonus2 bAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; bonus2 bSkillAtk,"LG_OVERBRAND",15; } } } - Id: 530019 AegisName: Undine_Spear_K_LT Name: Aquatic Spear-LT Type: Weapon SubType: 1hSpear Weight: 1400 Attack: 205 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillAtk,"LG_CANNONSPEAR",15; if (.@r>=9) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",35; bonus2 bSkillAtk,"LG_CANNONSPEAR",35; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bPerfectHitAddRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bAddEle,Ele_All,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 530022 AegisName: Melon_Spear Name: Melon Spear Type: Weapon SubType: 1hSpear Buy: 20 Weight: 1800 Attack: 150 MagicAttack: 110 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 530023 AegisName: Solid_Spear Name: Solid Spear Type: Weapon SubType: 1hSpear Weight: 1600 Attack: 230 Range: 3 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",6*(.@r/2); bonus2 bSkillAtk,"PA_SHIELDCHAIN",15*(.@r/3); bonus bLongAtkRate,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 530025 AegisName: Glacier_Spear Name: Glacier Spear Type: Weapon SubType: 1hSpear Weight: 2100 Attack: 220 MagicAttack: 210 Range: 3 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 530028 AegisName: Rhongomyniad Name: Shining Silver Spear Type: Weapon SubType: 1hSpear Weight: 1800 Attack: 110 MagicAttack: 180 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"LG_RAYOFGENESIS",BaseLevel/2; bonus bDelayrate,-2*.@r; - Id: 530031 AegisName: Boost_Lance_AD Name: Boost Lance-OSAD Type: Weapon SubType: 1hSpear Weight: 1000 Attack: 190 Range: 3 Slots: 2 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAspdRate,5; if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"LG_CANNONSPEAR",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; if (.@r>=11) { bonus2 bSkillAtk,"LG_BANISHINGPOINT",25; } } } - Id: 530034 AegisName: D_Glacier_Spear Name: Dim Glacier Spear Type: Weapon SubType: 1hSpear Weight: 2100 Attack: 220 MagicAttack: 210 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 530035 AegisName: F_Ein_1HSPEAR Name: Flush Blocking Spear Type: Weapon SubType: 1hSpear Weight: 1250 Attack: 230 Range: 3 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",20; bonus2 bSkillAtk,"LG_BANISHINGPOINT",20; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,70; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",15; bonus2 bSkillUseSP,"IG_SHIELD_SHOOTING",-20; bonus2 bSkillUseSP,"LG_BANISHINGPOINT",-20; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; bonus2 bSkillUseSP,"IG_SHIELD_SHOOTING",-20; bonus2 bSkillUseSP,"LG_BANISHINGPOINT",-20; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"IG_SHIELD_SHOOTING",10; bonus2 bSkillAtk,"LG_BANISHINGPOINT",10; } } } } - Id: 530036 AegisName: Hs_Cr_Spear Name: Herosria Spear Type: Weapon SubType: 1hSpear Weight: 1500 Attack: 130 Range: 3 Jobs: Crusader: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-5; bonus bLongAtkRate,10; bonus bAspdRate,-5; bonus bHit,30; - Id: 530040 AegisName: aegis_530040 Name: 1Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 530041 AegisName: aegis_530041 Name: 2Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 530042 AegisName: aegis_530042 Name: 3Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 530043 AegisName: aegis_530043 Name: 4Lv One-handed Spear Type: Weapon SubType: 1hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 530044 AegisName: aegis_530044 Name: Level 5 One-Handed Spear # !todo check english name Type: Weapon SubType: 1hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 530045 AegisName: Holy_Raise_Spear Name: Holy Light Spear Type: Weapon SubType: 1hSpear Weight: 2000 Attack: 210 Range: 3 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"IG_OVERSLASH",5; if (.@r>=5) { bonus2 bSkillAtk,"IG_OVERSLASH",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"IG_OVERSLASH",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus bShortAtkRate,15; bonus2 bSkillAtk,"IG_OVERSLASH",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 530049 AegisName: aegis_530049 Name: Opened Illusion Pole Axe Type: Weapon SubType: 1hSpear Weight: 1100 Attack: 255 MagicAttack: 240 Range: 3 Slots: 1 Jobs: Crusader: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHit,3*.@r; bonus bVariableCastrate,-3*(.@r/2); if (BaseLevel>=150) { bonus bBaseAtk,(min(BaseLevel,170)*3); bonus bMatk,(min(BaseLevel,170)*3); } if (.@r>=7) { bonus bVariableCastrate,-5; bonus bAspdRate,5; } if (.@r>=9) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 530054 AegisName: Dimen_IG_Spear Name: Dimensions Imperial Spear Type: Weapon SubType: 1hSpear Weight: 2500 Attack: 240 Range: 3 Slots: 2 Jobs: Crusader: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"IG_OVERSLASH",15+5*(.@r/3); bonus2 bSkillAtk,"LG_OVERBRAND",25+7*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,25; if (.@r>=9) { bonus bDelayrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"IG_OVERSLASH",15; bonus2 bSkillAtk,"LG_OVERBRAND",45; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"IG_OVERSLASH",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 540000 AegisName: Boost_Spl_Book Name: Booster Spellbook Type: Weapon SubType: Book Attack: 165 MagicAttack: 165 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Neutral,3; .@r = getrefine(); bonus bMatk,.@r; bonus bMatk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,getskilllv("PF_HPCONVERSION"); } if (.@r>=9) { bonus2 bMagicAddSize,Size_All,10; } - Id: 540001 AegisName: Boost_Text Name: Booster Book Type: Weapon SubType: Book Attack: 160 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bBaseAtk,min(BaseLevel,180)/15*3; bonus bAtkRate,5; if (.@r>=7) { bonus bAspdRate,getskilllv("TK_RUN"); } if (.@r>=9) { bonus bAtkRate,10; } - Id: 540004 AegisName: Ep172_1h_Book Name: Sloth Text Type: Weapon SubType: Book Weight: 500 Attack: 210 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SJ_NEWMOONKICK",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; } - Id: 540005 AegisName: Ep172_1h_Book2 Name: Sloth Bible Type: Weapon SubType: Book Weight: 700 Attack: 160 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus2 bSubClass,Class_Normal,15; bonus2 bSPRegenRate,300,1000; }",1,5000,BF_WEAPON|BF_MAGIC; bonus bVariableCastrate,-3*(.@r/3); bonus bMatk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25; bonus2 bSkillAtk,"MG_FIREBOLT",25; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",30; bonus2 bSkillAtk,"MG_FIREBOLT",30; } - Id: 540009 AegisName: SB_B_Book Name: Spell Bolt Booster Book Type: Weapon SubType: Book Attack: 150 Range: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,160+(3*.@r)+3*(min(BaseLevel,195)/15); if (.@r>=7) { .@val = getskilllv("SA_AUTOSPELL"); bonus2 bMagicAtkEle,Ele_Fire,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Wind,.@val; } if (.@r>=9) { bonus bAspd,1; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",25; bonus2 bSkillAtk,"WZ_EARTHSPIKE",25; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus bAspd,1; } if (.@r>=13) { bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15; bonus2 bSkillAtk,"WZ_EARTHSPIKE",15; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15; } - Id: 540010 AegisName: Up_OneSkyOneSun Name: Patent One Sky One Sun Type: Weapon SubType: Book Weight: 1100 Attack: 200 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bShortAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; bonus bAspdRate,10; } if (.@r>=9) { bonus2 bSkillAtk,"SJ_SOLARBURST",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; } - Id: 540011 AegisName: Up_Demon_Hunting_Bible Name: Patent Exorcist's Bible Type: Weapon SubType: Book Buy: 20 Weight: 700 Attack: 205 MagicAttack: 190 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25*(.@r/3); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",30; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",30; bonus2 bSkillAtk,"AB_JUDEX",30; } if (.@r>=11) { .@i = getskilllv("AB_JUDEX"); bonus3 bAutoSpell,"AB_JUDEX",(.@i > 5 ? .@i : 5),100; } - Id: 540013 AegisName: Fourth_1h_Book Name: Fortified Book Type: Weapon SubType: Book Weight: 800 Attack: 190 MagicAttack: 210 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"EM_CONFLAGRATION",5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/4); - Id: 540014 AegisName: Poenitentia_Codex Name: Poenitentia Codex Type: Weapon SubType: Book Weight: 1600 Attack: 150 MagicAttack: 215 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"EM_DIAMOND_STORM",10; bonus2 bSkillAtk,"EM_TERRA_DRIVE",10; bonus2 bSkillAtk,"SO_DIAMONDDUST",3*(.@r/2); bonus2 bSkillAtk,"SO_EARTHGRAVE",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"SO_DIAMONDDUST",25; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; if (.@r>=11) { bonus2 bSkillCooldown,"SO_DIAMONDDUST",-2000; bonus2 bSkillCooldown,"SO_EARTHGRAVE",-2000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",5; bonus2 bSkillAtk,"EM_TERRA_DRIVE",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"EM_DIAMOND_STORM",8; bonus2 bSkillAtk,"EM_TERRA_DRIVE",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"EM_DIAMOND_STORM",12; bonus2 bSkillAtk,"EM_TERRA_DRIVE",12; } } } - Id: 540015 AegisName: Poenitentia_Liber Name: Poenitentia Liber Type: Weapon SubType: Book Weight: 1000 Attack: 230 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bAtkRate,5; bonus bMatk,215; bonus2 bSkillAtk,"CD_PETITIO",10; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",3*(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",3*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",30; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",30; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"CD_PETITIO",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"CD_PETITIO",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"CD_PETITIO",12; } } } - Id: 540018 AegisName: Military_Law_Book Name: Military Law Book Type: Weapon SubType: Book Buy: 20 Weight: 800 Attack: 120 MagicAttack: 140 Range: 1 Slots: 1 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAllStats,10; bonus bReduceDamageReturn,10*.@r; - Id: 540019 AegisName: Adulter_F_M_Book Name: Adulter Fides Magic Book Type: Weapon SubType: Book Weight: 1200 Attack: 170 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20; if (.@r>=9) { bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; if (.@r>=11) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } - Id: 540020 AegisName: Adulter_F_P_Book Name: Adulter Fides Poison Book Type: Weapon SubType: Book Weight: 1300 Attack: 170 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SO_POISON_BUSTER",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SO_POISON_BUSTER",20; if (.@r>=9) { bonus2 bSkillCooldown,"SO_POISON_BUSTER",-1000; if (.@r>=11) { bonus2 bSkillAtk,"SO_POISON_BUSTER",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Poison,15; } } } } - Id: 540021 AegisName: Adulter_F_Bible Name: Adulter Fides Bible Type: Weapon SubType: Book Weight: 1800 Attack: 210 MagicAttack: 210 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15; bonus bMatk,12*(.@r/3); bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",40; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",40; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 540022 AegisName: Adulter_F_Moon_B Name: Adulter Fides Moon Book Type: Weapon SubType: Book Weight: 1100 Attack: 230 Range: 1 Slots: 2 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SJ_FULLMOONKICK",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SJ_FULLMOONKICK",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 540023 AegisName: Adulter_F_Star_B Name: Adulter Fides Stardust Book Type: Weapon SubType: Book Weight: 1000 Attack: 240 Range: 1 Slots: 2 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",10; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",20; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",25; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 540024 AegisName: Vivatus_F_M_Book Name: Vivatus Fides Magic Book Type: Weapon SubType: Book Weight: 1200 Attack: 170 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20; if (.@r>=9) { bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; if (.@r>=11) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 540025 AegisName: Vivatus_F_P_Book Name: Vivatus Fides Poison Book Type: Weapon SubType: Book Weight: 1300 Attack: 170 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SO_POISON_BUSTER",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SO_POISON_BUSTER",20; if (.@r>=9) { bonus2 bSkillCooldown,"SO_POISON_BUSTER",-1000; if (.@r>=11) { bonus2 bSkillAtk,"SO_POISON_BUSTER",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Poison,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SO_POISON_BUSTER",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 540026 AegisName: Vivatus_F_Bible Name: Vivatus Fides Bible Type: Weapon SubType: Book Weight: 1800 Attack: 210 MagicAttack: 210 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15; bonus bMatk,12*(.@r/3); bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",40; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",40; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 540027 AegisName: 2Para_Book1_SA Name: Paradise Sage Magic Book Type: Weapon SubType: Book Attack: 100 MagicAttack: 160 Range: 1 Jobs: Sage: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) bonus2 bSkillAtk,"WZ_HEAVENDRIVE",10; if (BaseLevel>=90) bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15; - Id: 540028 AegisName: 2Para_Book2_SA Name: Paradise Sage Spellbook Type: Weapon SubType: Book Attack: 100 MagicAttack: 160 Range: 1 Jobs: Sage: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) { bonus2 bSkillAtk,"MG_FIREBOLT",20; bonus2 bSkillAtk,"MG_COLDBOLT",20; } if (BaseLevel>=90) { bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20; bonus2 bSkillAtk,"WZ_EARTHSPIKE",20; } - Id: 540029 AegisName: 2Para_Book1_SG Name: Paradise Taekwon Martial Arts Book Type: Weapon SubType: Book Attack: 160 Range: 1 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bShortAtkRate,10; if (BaseLevel>=75) { bonus2 bSkillAtk,"TK_STORMKICK",10; bonus2 bSkillAtk,"TK_TURNKICK",10; } if (BaseLevel>=90) { bonus2 bSkillAtk,"TK_STORMKICK",15; bonus2 bSkillAtk,"TK_TURNKICK",15; } - Id: 540030 AegisName: 2Para_Book2_SG Name: Paradise Taekwon Power Book Type: Weapon SubType: Book Attack: 160 Range: 1 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bShortAtkRate,10; if (BaseLevel>=75) { bonus2 bSkillAtk,"TK_DOWNKICK",10; bonus2 bSkillAtk,"TK_COUNTER",10; } if (BaseLevel>=90) { bonus2 bSkillAtk,"TK_DOWNKICK",15; bonus2 bSkillAtk,"TK_COUNTER",15; } - Id: 540031 AegisName: 3Para_Book1_SO Name: Paradise Sorcerer Magic Book Type: Weapon SubType: Book Attack: 150 Range: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("SA_LANDPROTECTOR"); bonus bMatk,180; bonus bMatkRate,5; bonus bVariableCastrate,-2*.@a; if (.@l>=105) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",25; if (.@l>=110) { bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } } } - Id: 540032 AegisName: 3Para_Book2_SO Name: Paradise Sorcerer Spell Book Type: Weapon SubType: Book Attack: 150 Range: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("SA_AUTOSPELL"); bonus bMatk,180; bonus bMatkRate,5; bonus bAspdRate,.@a; if (.@l>=105) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25; bonus2 bSkillAtk,"WZ_EARTHSPIKE",25; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",25; if (.@l>=110) { bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"MG_FIREBOLT",15; bonus2 bSkillAtk,"MG_COLDBOLT",15; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15; bonus2 bSkillAtk,"WZ_EARTHSPIKE",15; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15; } } } - Id: 540033 AegisName: 3Para_Book1_SJ Name: Paradise Star Emperor Book of the Sun Type: Weapon SubType: Book Attack: 180 Range: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("TK_HPTIME"); bonus bShortAtkRate,.@a; bonus bAtkRate,5; if (.@l>=105) { bonus bAtkRate,10; bonus2 bSkillAtk,"SJ_PROMINENCEKICK",25; bonus2 bSkillAtk,"SJ_SOLARBURST",25; if (.@l>=110) { bonus bShortAtkRate,10; bonus2 bAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; bonus2 bSkillAtk,"SJ_SOLARBURST",15; } } } - Id: 540034 AegisName: 3Para_Book2_SJ Name: Paradise Star Emperor Book of the Moon Type: Weapon SubType: Book Attack: 180 Range: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("TK_HPTIME"); bonus bShortAtkRate,.@a; bonus bAtkRate,5; if (.@l>=105) { bonus bAtkRate,10; bonus2 bSkillAtk,"SJ_NEWMOONKICK",25; bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; if (.@l>=110) { bonus bShortAtkRate,10; bonus2 bAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; } } } - Id: 540035 AegisName: Demon_Hunting_Bible_LT Name: Exorcist's Bible-LT Type: Weapon SubType: Book Weight: 700 Attack: 220 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,190; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",45; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",45; bonus2 bSkillAtk,"AB_JUDEX",45; if (.@r>=11) { bonus5 bAutoSpell,"AB_JUDEX",max(5,getskilllv("AB_JUDEX")),100,BF_SHORT|BF_WEAPON,1; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25*(.@r/3); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25*(.@r/3); bonus2 bSkillAtk,"AB_JUDEX",25*(.@r/3); - Id: 540038 AegisName: Melon_Book Name: Melon Book Type: Weapon SubType: Book Buy: 20 Weight: 800 Attack: 120 MagicAttack: 140 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus bHealPower,6*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 540039 AegisName: ML_B_Book Name: Moon Starlight Booster Book Type: Weapon SubType: Book Attack: 230 Range: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bShortAtkRate,getskilllv("TK_POWER"); if (.@r>=9) { bonus bShortAtkRate,10; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",25; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",25; bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; bonus2 bSkillAtk,"SJ_NEWMOONKICK",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bAtkRate,10; if (.@r>=13) { bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",15; bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; bonus2 bSkillAtk,"SJ_NEWMOONKICK",15; } } } } - Id: 540040 AegisName: SS_B_Book Name: Sunshine Booster Book Type: Weapon SubType: Book Attack: 230 Range: 1 Jobs: StarGladiator: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bShortAtkRate,getskilllv("TK_POWER"); if (.@r>=9) { bonus bShortAtkRate,10; bonus2 bSkillAtk,"SJ_SOLARBURST",25; bonus2 bSkillAtk,"SJ_PROMINENCEKICK",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bAtkRate,10; if (.@r>=13) { bonus2 bSkillAtk,"SJ_SOLARBURST",15; bonus2 bSkillAtk,"SJ_PROMINENCEKICK",15; } } } } - Id: 540041 AegisName: Solid_Manual Name: Solid Manual Type: Weapon SubType: Book Weight: 900 Attack: 180 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"EM_CONFLAGRATION",6*(.@r/2); bonus2 bSkillAtk,"EM_LIGHTNING_LAND",6*(.@r/2); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15*(.@r/3); bonus2 bMagicAtkEle,Ele_All,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bSpl,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"EM_CONFLAGRATION",10; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",10; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; } } } - Id: 540042 AegisName: Wicked_Book Name: Wicked Book Type: Weapon SubType: Book Weight: 1500 Attack: 220 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SKE_NOON_BLAST",6*(.@r/2); bonus2 bSkillAtk,"SKE_RISING_SUN",8*(.@r/3); bonus bShortAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 540043 AegisName: Fourth_1h_Manual Name: Relapse Book Type: Weapon SubType: Book Weight: 1300 Attack: 190 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bShortAtkRate,3*(.@r/4); bonus2 bSkillAtk,"SKE_NOON_BLAST",5*(.@r/2); - Id: 540044 AegisName: Poenitentia_Radius Name: Poenitentia Radius Type: Weapon SubType: Book Weight: 900 Attack: 260 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,10; bonus2 bSkillAtk,"SKE_SUNSET_BLAST",10; bonus2 bSkillAtk,"SKE_DAWN_BREAK",10; bonus2 bSkillAtk,"SJ_SOLARBURST",3*(.@r/2); bonus2 bSkillAtk,"SJ_FULLMOONKICK",3*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SJ_SOLARBURST",25; bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SKE_SUNSET_BLAST",5; bonus2 bSkillAtk,"SKE_DAWN_BREAK",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"SKE_SUNSET_BLAST",3; bonus2 bSkillAtk,"SKE_DAWN_BREAK",3; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"SKE_SUNSET_BLAST",5; bonus2 bSkillAtk,"SKE_DAWN_BREAK",5; } } } - Id: 540045 AegisName: Vivatus_F_Star_B Name: Vivatus Fides Stardust Book Type: Weapon SubType: Book Weight: 1000 Attack: 240 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",10; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",20; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",25; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK",15; bonus2 bSkillAtk,"SJ_FALLINGSTAR_ATK2",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 540046 AegisName: Vivatus_F_Moon_B Name: Vivatus Fides Moon Book Type: Weapon SubType: Book Weight: 1100 Attack: 230 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SJ_FULLMOONKICK",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SJ_FULLMOONKICK",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SJ_FULLMOONKICK",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SJ_FULLMOONKICK",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 540048 AegisName: OneSkyOneSun_LT Name: One Sky One Sun-LT Type: Weapon SubType: Book Weight: 1100 Attack: 200 Range: 1 Slots: 2 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillAtk,"SJ_SOLARBURST",20; bonus2 bSkillAtk,"SJ_PROMINENCEKICK",20; if (.@r>=9) { bonus2 bSkillAtk,"SJ_SOLARBURST",25; bonus2 bSkillAtk,"SJ_PROMINENCEKICK",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bShortAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bShortAtkRate,4*(.@r/3); - Id: 540049 AegisName: Glacier_Book Name: Glacier Book Type: Weapon SubType: Book Weight: 1200 Attack: 210 MagicAttack: 210 Range: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 540051 AegisName: Circuit_Board_AD Name: Circuit Board-OSAD Type: Weapon SubType: Book Weight: 1200 Attack: 180 Range: 1 Slots: 2 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bAddSize,Size_Small,30; bonus2 bMagicAddSize,Size_Small,30; bonus2 bAddSize,Size_Medium,30; bonus2 bMagicAddSize,Size_Medium,30; if (.@r>=11) { bonus bCritAtkRate,20; bonus bShortAtkRate,10; } } } - Id: 540053 AegisName: Sealed_Bible Name: Sealed Bible Type: Weapon SubType: Book Weight: 1000 Attack: 210 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"CD_PETITIO",5; if (.@r>=5) { bonus2 bSkillAtk,"CD_PETITIO",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"CD_PETITIO",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus bCritAtkRate,20; bonus2 bSkillAtk,"CD_PETITIO",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 540054 AegisName: Darkness_Tablet Name: Darkness Tablet Type: Weapon SubType: Book Weight: 1000 Attack: 200 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; if (.@r>=5) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SKE_DAWN_BREAK",15; bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 540055 AegisName: Orign_Of_Life Name: Origin of Life Type: Weapon SubType: Book Weight: 1000 Attack: 200 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"SKE_NOON_BLAST",5; if (.@r>=5) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SKE_SUNSET_BLAST",15; bonus2 bSkillAtk,"SKE_NOON_BLAST",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 540056 AegisName: D_Glacier_Book Name: Dim Glacier Book Type: Weapon SubType: Book Weight: 1200 Attack: 210 MagicAttack: 210 Range: 1 Slots: 1 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 540057 AegisName: aegis_540057 Name: Book of Thoth Type: Weapon SubType: Book Weight: 800 Attack: 120 MagicAttack: 200 Range: 3 Slots: 1 Jobs: Sage: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; skill "TF_DOUBLE",10; bonus2 bSkillFixedCast,"MG_FIREBOLT",10000; bonus2 bSkillFixedCast,"MG_COLDBOLT",10000; bonus2 bSkillFixedCast,"MG_LIGHTNINGBOLT",10000; bonus2 bSkillAtk,"MG_FIREBOLT",25*.@r; bonus2 bSkillAtk,"MG_COLDBOLT",25*.@r; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25*.@r; bonus2 bSkillAtk,"WZ_EARTHSPIKE",25*.@r; - Id: 540058 AegisName: F_Ein_1HBOOK Name: Flush Safety Manual Type: Weapon SubType: Book Weight: 700 Attack: 220 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus bAtkRate,10; bonus2 bSkillAtk,"SKE_NOON_BLAST",20; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,70; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus bCritAtkRate,15; bonus2 bSkillAtk,"SKE_NOON_BLAST",10; bonus2 bSkillUseSP,"SKE_NOON_BLAST",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus bCritical,10; bonus2 bSkillAtk,"SKE_NOON_BLAST",10; bonus2 bSkillUseSP,"SKE_NOON_BLAST",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; } } } } - Id: 540059 AegisName: Doom_Bible Name: Doom Bible Type: Weapon SubType: Book Weight: 1100 Attack: 120 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"EM_VENOM_SWAMP",5; if (.@r>=5) { bonus2 bSkillAtk,"EM_VENOM_SWAMP",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Poison,5; bonus2 bMagicAtkEle,Ele_Fire,5; if (.@r>=9) { bonus2 bSkillAtk,"EM_VENOM_SWAMP",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"EM_CONFLAGRATION",15; bonus2 bSkillAtk,"EM_VENOM_SWAMP",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Poison,10; bonus2 bMagicAtkEle,Ele_Fire,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 540060 AegisName: Blessed_Bible Name: Blessed Bible Type: Weapon SubType: Book Weight: 800 Attack: 60 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"EM_DIAMOND_STORM",5; if (.@r>=5) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,5; bonus2 bMagicAtkEle,Ele_Water,5; if (.@r>=9) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"EM_TERRA_DRIVE",15; bonus2 bSkillAtk,"EM_DIAMOND_STORM",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 540061 AegisName: aegis_540061 Name: Herosria Elemental Book Type: Weapon SubType: Book Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Sage: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Wind,-5; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,-5; bonus bDelayrate,5; bonus bVariableCastrate,-15; - Id: 540062 AegisName: aegis_540062 Name: Herosria Sorceric Book Type: Weapon SubType: Book Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Sage: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Water,-5; bonus2 bMagicAtkEle,Ele_Fire,-5; bonus2 bMagicAtkEle,Ele_Earth,10; bonus bVariableCastrate,5; bonus bMatkRate,5; - Id: 540063 AegisName: aegis_540063 Name: Herosria Demonic Book Type: Weapon SubType: Book Weight: 1500 Attack: 130 Range: 1 Jobs: Priest: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-5; bonus bShortAtkRate,10; bonus bAspdRate,10; bonus bCritical,-5; - Id: 540064 AegisName: aegis_540064 Name: Herosria Star Book Type: Weapon SubType: Book Weight: 1500 Attack: 130 Range: 1 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bShortAtkRate,10; bonus bLongAtkDef,-5; bonus bDelayrate,5; bonus bAspdRate,10; - Id: 540065 AegisName: aegis_540065 Name: Herosria Gladiator Book Type: Weapon SubType: Book Weight: 1500 Attack: 130 Range: 1 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,-5; bonus2 bSubRace,RC_Player_Doram,-5; bonus bShortAtkRate,10; bonus bVariableCastrate,-10; bonus bHit,-15; - Id: 540066 AegisName: aegis_540066 Name: Herosria Martial Arts Book Type: Weapon SubType: Book Weight: 1500 Attack: 130 Range: 1 Jobs: StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bShortAtkRate,10; bonus bLongAtkDef,-5; bonus bAspdRate,-5; bonus bHit,30; - Id: 540068 AegisName: aegis_540068 Name: 1Lv Book Type: Weapon SubType: Book Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 540069 AegisName: aegis_540069 Name: 2Lv Book Type: Weapon SubType: Book Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 540071 AegisName: aegis_540071 Name: 3Lv Book Type: Weapon SubType: Book Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 540072 AegisName: aegis_540072 Name: 4Lv Book Type: Weapon SubType: Book Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 540073 AegisName: aegis_540073 Name: Level 5 Book # !todo check english name Type: Weapon SubType: Book Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Priest: true Sage: true StarGladiator: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 540074 AegisName: Mocadas_Spellbooks Name: Muqaddas Kitab Type: Weapon SubType: Book Weight: 800 Attack: 60 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus2 bSkillAtk,"EM_DIAMOND_STORM",10; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; if (.@r>=9) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",10; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",10; if (.@r>=11) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",10; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,5; } } } } - Id: 540075 AegisName: Mocadas_Book Name: Muqaddas Kajuza Type: Weapon SubType: Book Weight: 1200 Attack: 210 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; bonus2 bSkillAtk,"SKE_DAWN_BREAK",10; if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; bonus2 bSkillAtk,"SKE_DAWN_BREAK",10; if (.@r>=11) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; bonus2 bSkillAtk,"SKE_DAWN_BREAK",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 540079 AegisName: Dimen_EM_M_Book Name: Dimensions Elemental Magic Book Type: Weapon SubType: Book Weight: 1800 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"EM_DIAMOND_STORM",15+5*(.@r/3); bonus2 bSkillAtk,"EM_CONFLAGRATION",15+5*(.@r/3); bonus bMatk,25*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Water,25; bonus2 bMagicAtkEle,Ele_Fire,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",15; bonus2 bSkillAtk,"EM_CONFLAGRATION",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"EM_DIAMOND_STORM",15; bonus2 bSkillAtk,"EM_CONFLAGRATION",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Fire,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 540080 AegisName: Dimen_EM_S_Book Name: Dimensions Elemental Spell Book Type: Weapon SubType: Book Weight: 1800 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"EM_LIGHTNING_LAND",15+5*(.@r/3); bonus2 bSkillAtk,"EM_TERRA_DRIVE",15+5*(.@r/3); bonus bMatk,25*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,25; bonus2 bMagicAtkEle,Ele_Wind,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"EM_LIGHTNING_LAND",15; bonus2 bSkillAtk,"EM_TERRA_DRIVE",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"EM_LIGHTNING_LAND",15; bonus2 bSkillAtk,"EM_TERRA_DRIVE",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 540081 AegisName: Dimen_CD_Bible Name: Dimensions Saint Bible Type: Weapon SubType: Book Weight: 1800 Attack: 230 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"CD_PETITIO",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"CD_PETITIO",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"CD_PETITIO",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 540082 AegisName: Dimen_SKE_M_Book Name: Dimensions Emperor Moon Book Type: Weapon SubType: Book Weight: 1800 Attack: 240 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"SKE_DAWN_BREAK",15+5*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"SKE_DAWN_BREAK",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SKE_DAWN_BREAK",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 540083 AegisName: Dimen_SKE_S_Book Name: Dimensions Emperor Sun Book Type: Weapon SubType: Book Weight: 2200 Attack: 230 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"SKE_SUNSET_BLAST",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"SKE_SUNSET_BLAST",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SKE_SUNSET_BLAST",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 540086 AegisName: SaintBook_Furious Name: Furious Saint Book Type: Weapon SubType: Book Weight: 1200 Attack: 175 MagicAttack: 145 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"CD_PETITIO",5; if (BaseLevel>=210) { bonus bAtkRate,4; bonus bBaseAtk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"CD_PETITIO",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } if (.@r>=7) { bonus bCritAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"CD_PETITIO",10; if (.@r>=10) { if (.@r>=11) { bonus2 bSkillAtk,"CD_PETITIO",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bCritAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"CD_PETITIO",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"CD_PETITIO",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); bonus bAtkRate,3*(.@r/2); } } } } - Id: 540087 AegisName: SunBook_Furious Name: Furious Sun Book Type: Weapon SubType: Book Weight: 1400 Attack: 175 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SKE_NOON_BLAST",5; if (BaseLevel>=210) { bonus bAtkRate,4; bonus bBaseAtk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"SKE_NOON_BLAST",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bCritAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bCritAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SKE_NOON_BLAST",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"SKE_NOON_BLAST",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); bonus bAtkRate,3*(.@r/2); } } } } - Id: 540088 AegisName: MoonBook_Furious Name: Furious Moon Word Type: Weapon SubType: Book Weight: 1200 Attack: 175 Range: 1 Slots: 2 Jobs: StarGladiator: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; if (BaseLevel>=210) { bonus bAtkRate,4; bonus bBaseAtk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"SKE_MIDNIGHT_KICK",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); bonus bAtkRate,3*(.@r/2); } } } } - Id: 550001 AegisName: Boost_Soul_Rod Name: Booster Rod Type: Weapon SubType: Staff Weight: 700 Attack: 120 MagicAttack: 170 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Dark,3; .@r = getrefine(); bonus bMatk,.@r*3; bonus bMatk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Dark,getskilllv("TK_RUN"); } if (.@r>=9) { bonus2 bMagicAddSize,Size_All,10; } - Id: 550002 AegisName: Boost_Foxtail Name: Booster Foxtail Type: Weapon SubType: Staff Weight: 700 Attack: 250 MagicAttack: 260 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r*2; bonus bMatk,.@r*2; .@i = min(BaseLevel,180)/15*3; bonus bBaseAtk,.@i; bonus bMatk,.@i; bonus bAtkRate,5; bonus bMatkRate,5; if (.@r>=7) { bonus bVariableCastrate,getskilllv("SU_NYANGGRASS")*-2; bonus bLongAtkRate,getskilllv("SU_SVG_SPIRIT")*2; } if (.@r>=9) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 550004 AegisName: Woe_Healstaff2_Z Name: Intermediate Guild Member's Healing Staff Type: Weapon SubType: Staff Weight: 500 Attack: 70 MagicAttack: 145 Range: 1 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bHealPower,10+.@r; bonus bDelayrate,-5; bonus2 bSkillUseSPrate,"AL_INCAGI",2+.@r; bonus2 bSkillUseSPrate,"AL_BLESSING",2+.@r; if (.@r>=7) bonus bHealPower,5; if (.@r>=9) bonus bHealPower,10; if (.@r>=10) autobonus3 "{ .@r = getrefine(); bonus bHealPower,25+(.@r-10); }",100,20000,"AL_HEAL"; - Id: 550005 AegisName: Woe_Wand2_Z Name: Intermediate Guild Member's Arc Wand Type: Weapon SubType: Staff Weight: 500 Attack: 60 MagicAttack: 140 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: 70 Refineable: true Script: | .@r = getrefine(); bonus bMatk,5*(.@r/2); bonus2 bMagicAddRace,RC_Player_Human,15+.@r; bonus2 bMagicAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; } if (.@r>=10) { bonus2 bVariableCastrate,"SA_LANDPROTECTOR",-30; autobonus3 "{ bonus bNoGemStone; }",1000,10000,"SA_DELUGE"; autobonus3 "{ bonus bNoGemStone; }",1000,10000,"SA_VIOLENTGALE"; autobonus3 "{ bonus bNoGemStone; }",1000,10000,"SA_VOLCANO"; } - Id: 550006 AegisName: Ein_1H_Foxtail Name: Safety Foxtail Type: Weapon SubType: Staff Weight: 1500 Attack: 300 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bMatk,350; bonus bUnbreakableWeapon; bonus bMatkRate,7; bonus bAtkRate,7; bonus2 bSkillAtk,"SU_CN_METEOR",15; bonus2 bSkillAtk,"SU_PICKYPECK",15; if (.@r>=7) { bonus bAspdRate,10; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_PICKYPECK",20; autobonus "{ bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; }",1,10000,BF_MAGIC; } if (.@r>=11) { bonus bDelayrate,-20; } - Id: 550007 AegisName: Freezing_Rod Name: Chilling Cane Type: Weapon SubType: Staff Weight: 500 Attack: 40 MagicAttack: 150 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*8; if (.@r>=9) { bonus2 bMagicAddEle,Ele_Undead,10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,7; } - Id: 550008 AegisName: Ep172_1h_Wand Name: Greed Wand Type: Weapon SubType: Staff Weight: 800 Attack: 130 MagicAttack: 200 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SP_SPA",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SP_SPA",15; } if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bSkillAtk,"SP_SWHOO",25; } - Id: 550009 AegisName: Ep172_1h_Foxtail Name: Addiction Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 280 MagicAttack: 330 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; autobonus "{ bonus2 bSubClass,Class_Normal,15; bonus2 bSPRegenRate,300,1000; }",1,5000,BF_MAGIC; bonus bVariableCastrate,-3*(.@r/3); bonus bMatk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } if (.@r>=9) { bonus2 bSkillCooldown,"SU_CN_METEOR",-1500; } if (.@r>=11) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",20; bonus2 bSkillAtk,"SU_CN_METEOR",20; } - Id: 550010 AegisName: ES_B_Stick Name: Elemental Spell Booster Stick Type: Weapon SubType: Staff Attack: 150 MagicAttack: 160 Range: 1 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,(3*.@r)+3*(min(BaseLevel,195)/15); if (.@r>=7) { .@val = getskilllv("SA_LANDPROTECTOR"); bonus2 bMagicAtkEle,Ele_Neutral,.@val; bonus2 bMagicAtkEle,Ele_Earth,.@val; bonus2 bMagicAtkEle,Ele_Water,.@val; bonus2 bMagicAtkEle,Ele_Wind,.@val; bonus2 bMagicAtkEle,Ele_Poison,.@val; } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"SO_DIAMONDDUST",25; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",25; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus2 bSkillAtk,"SO_EARTHGRAVE",25; bonus2 bSkillAtk,"SO_POISON_BUSTER",25; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Poison,15; } if (.@r>=13) { bonus2 bSkillAtk,"SO_DIAMONDDUST",15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"SO_EARTHGRAVE",15; bonus2 bSkillAtk,"SO_POISON_BUSTER",15; } - Id: 550011 AegisName: AN_B_Wand Name: Adonus Booster Wand Type: Weapon SubType: Staff Attack: 150 MagicAttack: 160 Range: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,(3*.@r)+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,getskilllv("HP_MEDITATIO"); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"PR_MAGNUS",25; bonus2 bSkillAtk,"AB_ADORAMUS",25; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=13) { bonus2 bSkillAtk,"PR_MAGNUS",15; bonus2 bSkillAtk,"AB_ADORAMUS",15; } - Id: 550012 AegisName: Up_Shadow_Staff_K Name: Patent Shadow Staff Type: Weapon SubType: Staff Buy: 20 Weight: 750 Attack: 40 MagicAttack: 195 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=9) { bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; bonus bVariableCastrate,-7; } if (.@r>=11) { bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } - Id: 550013 AegisName: Up_Freezing_Rod Name: Patent Chilling Cane Type: Weapon SubType: Staff Weight: 750 Attack: 40 MagicAttack: 195 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"SO_DIAMONDDUST",.@r/3*12; if (.@r>=7) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; } if (.@r>=9) { bonus2 bSkillAtk,"SO_VARETYR_SPEAR",20; bonus bVariableCastrate,-7; } if (.@r>=11) { bonus bVariableCastrate,-8; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } - Id: 550014 AegisName: Up_MeawFoxtail Name: Patent Meowmeow Foxtail Type: Weapon SubType: Staff Buy: 20 Weight: 1200 Attack: 350 MagicAttack: 350 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; } if (.@r>=9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; } - Id: 550015 AegisName: Up_SoulWeight Name: Patent Spirit Pendulum Type: Weapon SubType: Staff Weight: 1200 Attack: 70 MagicAttack: 190 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SP_SPA",15; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillAtk,"SP_SWHOO",25; } if (.@r>=11) { autobonus "{ bonus2 bSPRegenRate,230,10000; }",70,10000,BF_MAGIC; } - Id: 550017 AegisName: WhiteknightFox Name: White Knight's Foxtail Type: Weapon SubType: Staff Buy: 20 Weight: 400 Attack: 360 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bDelayrate,-20; bonus bAspdRate,2*.@r; - Id: 550018 AegisName: Phoenix_Foxtail Name: Phoenix Foxtail Type: Weapon SubType: Staff Buy: 20 Weight: 400 Attack: 110 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubEle,Ele_Fire,5; bonus bBaseAtk,10*.@r; bonus bMatk,10*.@r; bonus bAspdRate,.@r; - Id: 550019 AegisName: Poenitentia_Scipio Name: Poenitentia Scipio Type: Weapon SubType: Staff Weight: 1600 Attack: 150 MagicAttack: 215 Range: 1 Slots: 2 Jobs: Sage: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"EM_CONFLAGRATION",10; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",10; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",3*(.@r/2); bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"SO_VARETYR_SPEAR",25; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",25; if (.@r>=11) { bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1500; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"EM_CONFLAGRATION",5; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"EM_CONFLAGRATION",8; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"EM_CONFLAGRATION",12; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",12; } } } - Id: 550020 AegisName: Poenitentia_Crystallum Name: Poenitentia Crystallum Type: Weapon SubType: Staff Weight: 1000 Attack: 150 MagicAttack: 250 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"CD_FRAMEN",10; bonus2 bSkillAtk,"AB_ADORAMUS",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"AB_ADORAMUS",30; if (.@r>=11) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"CD_FRAMEN",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"CD_FRAMEN",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"CD_FRAMEN",12; } } } - Id: 550021 AegisName: Deus_Ex_Machina_JP Name: Deus Ex Machina Type: Weapon SubType: Staff Buy: 20 Weight: 2000 Attack: 280 MagicAttack: 180 Range: 1 Slots: 3 Jobs: Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; skill "AL_BLESSING",1; bonus bMaxHPrate,2*.@r; bonus bMaxSPrate,2*.@r; bonus bDelayrate,-.@r; bonus bMatkRate,6*.@r; if (.@r>=5) bonus bLongAtkDef,5; if (.@r>=7) skill "AL_BLESSING",min(10,.@r); if (.@r>=9) bonus bLongAtkDef,5; if (.@r>=10) bonus bFixedCastrate,-70; - Id: 550022 AegisName: Local04_Wand Name: Commander Type: Weapon SubType: Staff Weight: 800 Attack: 40 MagicAttack: 130 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SuperNovice: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddRace,RC_Plant,5; bonus2 bMagicAddEle,Ele_Wind,5; if (.@r>=7) { bonus2 bMagicAddRace,RC_Plant,5; bonus2 bMagicAddEle,Ele_Wind,5; } if (.@r>=9) { bonus2 bMagicAddRace,RC_Plant,10; bonus2 bMagicAddEle,Ele_Wind,10; } - Id: 550023 AegisName: Thanos_Staff_AD Name: Thanos Staff-AD Type: Weapon SubType: Staff Weight: 1400 Attack: 100 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; autobonus "{ bonus2 bHPRegenRate,1000,1000; bonus2 bSPRegenRate,100,1000; }",10,4000,BF_MAGIC; bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"SO_VARETYR_SPEAR",10*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; if (.@r>=9) { bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2500; bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,2; bonus2 bSkillAtk,"EM_LIGHTNING_LAND",10; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"EM_LIGHTNING_LAND",10; } } } - Id: 550024 AegisName: Adulter_F_Wand Name: Adulter Fides Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 160 MagicAttack: 210 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"AB_ADORAMUS",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } } - Id: 550025 AegisName: Adulter_F_S_Stick Name: Adulter Fides Soul Stick Type: Weapon SubType: Staff Weight: 1900 Attack: 160 MagicAttack: 205 Range: 1 Slots: 2 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SP_SWHOO",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SP_SWHOO",20; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SP_SWHOO",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Dark,15; } } } } - Id: 550026 AegisName: Adulter_F_D_Wand Name: Adulter Fides Dark Wand Type: Weapon SubType: Staff Weight: 1600 Attack: 160 MagicAttack: 220 Range: 1 Slots: 2 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SP_CURSEEXPLOSION",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SP_CURSEEXPLOSION",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Dark,15; } } } } - Id: 550027 AegisName: Adulter_F_F_Wand Name: Adulter Fides Foxtail Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 200 MagicAttack: 350 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SU_CN_METEOR",20; if (.@r>=9) { bonus2 bSkillCooldown,"SU_CN_METEOR",-2000; if (.@r>=11) { bonus2 bSkillAtk,"SU_CN_METEOR",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } - Id: 550028 AegisName: Adulter_F_F_model Name: Adulter Fides Foxtail Model Type: Weapon SubType: Staff Weight: 1800 Attack: 320 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SU_PICKYPECK",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SU_PICKYPECK",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SU_PICKYPECK",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 550029 AegisName: Vivatus_F_Wand Name: Vivatus Fides Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 160 MagicAttack: 210 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"AB_ADORAMUS",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Holy,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"AB_ADORAMUS",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 550030 AegisName: Thorn_Staff_IL Name: Illusion Thorn Staff of Darkness Type: Weapon SubType: Staff Weight: 1200 Attack: 60 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Dark; bonus bUnbreakableWeapon; bonus bInt,3; bonus bDex,3; bonus2 bIgnoreMdefRaceRate,RC_All,3*.@r; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,-3*.@r; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,-3*.@r; bonus bDelayrate,-3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-7; bonus bMatkRate,7; if (.@r>=9) { bonus2 bMagicAddRace,RC_Angel,20; bonus2 bMagicAddEle,Ele_Holy,20; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Undead,15; bonus2 bMagicAtkEle,Ele_Poison,15; bonus2 bMagicAtkEle,Ele_Dark,15; } } } - Id: 550031 AegisName: Dea_Staff_IL Name: Illusion Dea Staff Type: Weapon SubType: Staff Weight: 1000 Attack: 50 MagicAttack: 190 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Holy; bonus bUnbreakableWeapon; bonus bVit,2; bonus bInt,6; autobonus "{ bonus2 bSPRegenRate,150,1000; }",1,4000,BF_MAGIC; bonus2 bSkillAtk,"AB_JUDEX",20*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,15; if (.@r>=9) { bonus bDelayrate,-15; bonus2 bSkillAtk,"AB_JUDEX",30; if (.@r>=11) { autobonus3 "{ bonus2 bMagicAddSize,Size_All,20; }",1000,15000,"PR_MAGNUS"; } } } - Id: 550032 AegisName: 1Para_Rod Name: Paradise Staff Type: Weapon SubType: Staff Attack: 60 MagicAttack: 100 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; if (BaseLevel>=20) bonus bMatk,15; if (BaseLevel>=30) bonus bMatk,20; if (BaseLevel>=45) bonus bMatk,25; - Id: 550033 AegisName: 1Para_Foxtail Name: Paradise Foxtail Type: Weapon SubType: Staff Attack: 100 MagicAttack: 100 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bUnbreakableWeapon; if (BaseLevel>=20) { bonus bBaseAtk,15; bonus bMatk,15; if (BaseLevel>=30) { bonus bBaseAtk,20; bonus bMatk,20; if (BaseLevel>=45) { bonus bBaseAtk,25; bonus bMatk,25; } } } - Id: 550034 AegisName: 2Para_Staff_WZ Name: Paradise Wizard Staff Type: Weapon SubType: Staff Attack: 100 MagicAttack: 160 Range: 1 Jobs: Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) { bonus2 bSkillAtk,"WZ_STORMGUST",20; bonus2 bSkillAtk,"WZ_METEOR",20; } if (BaseLevel>=90) { bonus2 bSkillAtk,"WZ_VERMILION",20; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20; } - Id: 550035 AegisName: 2Para_Wand_WZ Name: Paradise Wizard Wand Type: Weapon SubType: Staff Attack: 100 MagicAttack: 160 Range: 1 Jobs: Wizard: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) bonus2 bSkillAtk,"WZ_JUPITEL",10; if (BaseLevel>=90) bonus2 bSkillAtk,"WZ_JUPITEL",15; - Id: 550036 AegisName: 2Para_Rod_PR Name: Paradise Priest Staff Type: Weapon SubType: Staff Attack: 100 MagicAttack: 160 Range: 1 Jobs: Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) bonus2 bSkillAtk,"PR_MAGNUS",10; if (BaseLevel>=90) bonus2 bSkillAtk,"PR_MAGNUS",15; - Id: 550037 AegisName: 2Para_Rod_SL Name: Paradise Soul Linker Staff Type: Weapon SubType: Staff Attack: 100 MagicAttack: 160 Range: 1 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) bonus2 bSkillAtk,"SL_SMA",10; if (BaseLevel>=90) bonus2 bSkillAtk,"SL_SMA",15; - Id: 550038 AegisName: 2Para_Foxtail1_SU Name: Paradise Doram Foxtail Type: Weapon SubType: Staff Attack: 160 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"SU_PICKYPECK",10; if (BaseLevel>=90) bonus2 bSkillAtk,"SU_PICKYPECK",15; - Id: 550039 AegisName: 2Para_Foxtail2_SU Name: Paradise Doram Foxtail Model Type: Weapon SubType: Staff Attack: 100 MagicAttack: 160 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) bonus2 bSkillAtk,"SU_CN_METEOR",10; if (BaseLevel>=90) bonus2 bSkillAtk,"SU_CN_METEOR",15; - Id: 550040 AegisName: 2Para_Rod_NV Name: Paradise Super Novice Staff Type: Weapon SubType: Staff Attack: 100 MagicAttack: 160 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) { bonus2 bSkillAtk,"MG_FIREBOLT",20; bonus2 bSkillAtk,"MG_COLDBOLT",20; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20; } if (BaseLevel>=90) { bonus2 bSkillAtk,"MG_FIREBOLT",20; bonus2 bSkillAtk,"MG_COLDBOLT",20; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",20; } - Id: 550041 AegisName: 3Para_Rod_AB Name: Paradise Arch Bishop Staff Type: Weapon SubType: Staff Attack: 150 MagicAttack: 180 Range: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("HP_MEDITATIO"); bonus bMatkRate,5; bonus bUnbreakableWeapon; bonus bVariableCastrate,-1*.@a; if (.@l>=105) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bSkillAtk,"AB_ADORAMUS",25; if (.@l>=110) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bMagicAddSize,Size_All,15; if (.@l>=115) bonus2 bSkillAtk,"AB_ADORAMUS",15; } } - Id: 550042 AegisName: 3Para_Foxtail1_SU Name: Paradise Summoner Foxtail Type: Weapon SubType: Staff Attack: 300 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("SU_PICKYPECK"); bonus bAtkRate,5; bonus bUnbreakableWeapon; bonus bLongAtkRate,2*.@a; if (.@l>=105) { bonus bAspdRate,10; bonus2 bSkillAtk,"SU_PICKYPECK",25; bonus2 bSkillAtk,"SU_SVG_SPIRIT",25; if (.@l>=110) { bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_SVG_SPIRIT",15; } } } - Id: 550043 AegisName: 3Para_Foxtail2_SU Name: Paradise Summoner Foxtail Model Type: Weapon SubType: Staff Attack: 150 MagicAttack: 300 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("SU_SV_STEMSPEAR"); bonus bMatkRate,5; bonus bUnbreakableWeapon; bonus bVariableCastrate,-2*.@a; if (.@l>=105) { bonus2 bSkillCooldown,"SU_CN_METEOR",-1500; bonus2 bSkillAtk,"SU_CN_METEOR",25; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; if (.@l>=110) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; if (.@l>=115) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } } - Id: 550044 AegisName: 3Para_Wand_NV Name: Paradise Super Novice Wand Type: Weapon SubType: Staff Attack: 100 MagicAttack: 180 Range: 1 Jobs: SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@l = BaseLevel; .@a = getskilllv("MG_SRECOVERY"); bonus bMatkRate,5; bonus bUnbreakableWeapon; bonus bVariableCastrate,-1*.@a; if (.@l>=105) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bSkillAtk,"MG_COLDBOLT",25; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25; bonus2 bSkillAtk,"MG_FIREBALL",25; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",25; if (.@l>=110) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAddSize,Size_All,15; if (.@l>=115) { bonus2 bSkillAtk,"MG_FIREBOLT",15; bonus2 bSkillAtk,"MG_COLDBOLT",15; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15; bonus2 bSkillAtk,"MG_FIREBALL",15; bonus2 bSkillAtk,"WZ_HEAVENDRIVE",15; } } } - Id: 550045 AegisName: Shadow_Staff_K_LT Name: Shadow Staff-LT Type: Weapon SubType: Staff Weight: 750 Attack: 40 MagicAttack: 195 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Poison,15; bonus2 bMagicAtkEle,Ele_Earth,15; if (.@r>=9) { bonus bVariableCastrate,-15; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",35; bonus2 bSkillAtk,"SO_POISON_BUSTER",35; if (.@r>=11) { bonus2 bSkillCooldown,"SO_PSYCHIC_WAVE",-1000; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",15; bonus2 bSkillAtk,"SO_POISON_BUSTER",15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Poison,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"SO_EARTHGRAVE",12*(.@r/3); - Id: 550046 AegisName: Freezing_Rod_LT Name: Chilling Cane-LT Type: Weapon SubType: Staff Weight: 750 Attack: 40 MagicAttack: 195 Range: 1 Slots: 2 Jobs: Sage: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",15; if (.@r>=9) { bonus bVariableCastrate,-15; bonus2 bSkillAtk,"SO_VARETYR_SPEAR",30; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bSkillCooldown,"SO_VARETYR_SPEAR",-2000; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"SO_DIAMONDDUST",12*(.@r/3); - Id: 550048 AegisName: Melon_Wand Name: Melon Wand Type: Weapon SubType: Staff Buy: 20 Weight: 300 Attack: 60 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus bHealPower,6*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 550049 AegisName: Melon_Foxtail Name: Melon Foxtail Type: Weapon SubType: Staff Buy: 20 Weight: 400 Attack: 150 MagicAttack: 180 Range: 9 Slots: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus bHealPower,6*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 550050 AegisName: SP_B_Fox Name: Lunatic Picky Booster Foxtail Type: Weapon SubType: Staff Attack: 280 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,2*getskilllv("SU_PICKYPECK"); if (.@r>=9) { bonus bLongAtkRate,10; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",25; bonus2 bSkillAtk,"SU_PICKYPECK",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bLongAtkRate,10; if (.@r>=13) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_PICKYPECK",15; } } } } - Id: 550051 AegisName: GB_B_Fox Name: Catnip Booster Foxtail Model Type: Weapon SubType: Staff Attack: 120 MagicAttack: 280 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatkRate,2; bonus bMatk,3*.@r; bonus2 bSkillCooldown,"SU_CN_METEOR",-1500; bonus bMatk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bMatkRate,2*getskilllv("SU_SV_STEMSPEAR"); if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",25; bonus2 bSkillAtk,"SU_CN_METEOR",25; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus bVariableCastrate,-10; if (.@r>=13) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } } } - Id: 550052 AegisName: ES_B_Staff Name: Es Booster Staff Type: Weapon SubType: Staff Attack: 110 MagicAttack: 175 Range: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,3*.@r; bonus bMatk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bVariableCastrate,-getskilllv("TK_SPTIME"); if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus2 bSkillAtk,"SP_SPA",25; bonus2 bSkillAtk,"SP_SWHOO",25; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus bVariableCastrate,-10; if (.@r>=13) { bonus2 bSkillAtk,"SP_SPA",15; bonus2 bSkillAtk,"SP_SWHOO",15; } } } } - Id: 550053 AegisName: EC_B_Staff Name: Evil Curse Booster Staff Type: Weapon SubType: Staff Attack: 110 MagicAttack: 175 Range: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,3*.@r; bonus bMatk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bVariableCastrate,-getskilllv("TK_SPTIME"); if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",25; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillCooldown,"SP_SOULCURSE",-2000; if (.@r>=13) { bonus2 bMagicAtkEle,Ele_Dark,25; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; } } } } - Id: 550054 AegisName: Solid_Wand Name: Solid Wand Type: Weapon SubType: Staff Weight: 1400 Attack: 190 MagicAttack: 240 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",6*(.@r/2); bonus2 bSkillAtk,"SOA_TALISMAN_OF_SOUL_STEALING",8*(.@r/3); bonus2 bMagicAtkEle,Ele_All,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bSpl,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",10; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; } } } - Id: 550055 AegisName: Solid_Rod Name: Solid Rod Type: Weapon SubType: Staff Weight: 1000 Attack: 130 MagicAttack: 230 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",6*(.@r/2); bonus2 bSkillAtk,"HN_JUPITEL_THUNDER_STORM",6*(.@r/2); bonus2 bSkillAtk,"HN_NAPALM_VULCAN_STRIKE",10*(.@r/3); bonus2 bMagicAtkEle,Ele_All,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bSpl,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",10; bonus2 bSkillAtk,"HN_JUPITEL_THUNDER_STORM",10; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; } } } - Id: 550056 AegisName: Wicked_Plant Name: Wicked Plant Type: Weapon SubType: Staff Weight: 1800 Attack: 210 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",6*(.@r/2); bonus2 bSkillAtk,"SH_HOWLING_OF_CHUL_HO",6*(.@r/2); bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",7*(.@r/3); bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",7*(.@r/3); bonus2 bMagicAtkEle,Ele_All,4*(.@r/4); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,1; bonus bSpl,1; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",10; bonus2 bSkillAtk,"SH_HOWLING_OF_CHUL_HO",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,1; bonus bSMatk,1; } } } - Id: 550057 AegisName: Fourth_1h_Rod Name: Fortified Rod Type: Weapon SubType: Staff Weight: 900 Attack: 120 MagicAttack: 200 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",5*(.@r/2); bonus2 bSkillAtk,"HN_JUPITEL_THUNDER_STORM",5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); - Id: 550058 AegisName: Fourth_1h_Plant Name: Relapse Plant Type: Weapon SubType: Staff Weight: 1600 Attack: 190 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",5*(.@r/2); bonus2 bSkillAtk,"SH_HOWLING_OF_CHUL_HO",5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); bonus bLongAtkRate,3*(.@r/4); - Id: 550059 AegisName: Fourth_1h_Wand Name: Fortified Wand Type: Weapon SubType: Staff Weight: 1200 Attack: 170 MagicAttack: 210 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); - Id: 550060 AegisName: Poenitentia_Ramus Name: Poenitentia Planta Type: Weapon SubType: Staff Weight: 1300 Attack: 170 MagicAttack: 250 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",10; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; bonus2 bSkillAtk,"SU_CN_METEOR",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"SU_CN_METEOR",30; if (.@r>=11) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; bonus2 bSkillCooldown,"SU_CN_METEOR",-2000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",5; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",8; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",12; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",12; } } } - Id: 550061 AegisName: Poenitentia_Planta Name: Poenitentia Ramus Type: Weapon SubType: Staff Weight: 1400 Attack: 220 MagicAttack: 250 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",10; bonus2 bSkillAtk,"SOA_TALISMAN_OF_SOUL_STEALING",10; bonus2 bSkillAtk,"SP_SPA",3*(.@r/2); bonus2 bSkillAtk,"SP_SWHOO",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"SP_SPA",30; bonus2 bSkillAtk,"SP_SWHOO",30; if (.@r>=11) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",5; bonus2 bSkillAtk,"SOA_TALISMAN_OF_SOUL_STEALING",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",8; bonus2 bSkillAtk,"SOA_TALISMAN_OF_SOUL_STEALING",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",12; bonus2 bSkillAtk,"SOA_TALISMAN_OF_SOUL_STEALING",12; } } } - Id: 550062 AegisName: Poenitentia_Ferrum Name: Poenitentia Ferrum Type: Weapon SubType: Staff Weight: 1300 Attack: 160 MagicAttack: 250 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",10; bonus2 bSkillAtk,"HN_JACK_FROST_NOVA",10; bonus2 bSkillAtk,"WZ_METEOR",3*(.@r/2); bonus2 bSkillAtk,"MG_FROSTDIVER",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"WZ_METEOR",30; bonus2 bSkillAtk,"MG_FROSTDIVER",30; if (.@r>=11) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",5; bonus2 bSkillAtk,"HN_JACK_FROST_NOVA",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",8; bonus2 bSkillAtk,"HN_JACK_FROST_NOVA",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",12; bonus2 bSkillAtk,"HN_JACK_FROST_NOVA",12; } } } - Id: 550063 AegisName: Vivatus_F_D_Wand Name: Vivatus Fides Dark Wand Type: Weapon SubType: Staff Weight: 1600 Attack: 160 MagicAttack: 220 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SP_CURSEEXPLOSION",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SP_CURSEEXPLOSION",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Dark,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 550064 AegisName: Vivatus_F_S_Stick Name: Vivatus Fides Soul Stick Type: Weapon SubType: Staff Weight: 1900 Attack: 160 MagicAttack: 205 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SP_SWHOO",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SP_SWHOO",20; if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SP_SWHOO",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Dark,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SP_SWHOO",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 550065 AegisName: Vivatus_F_F_Wand Name: Vivatus Fides Foxtail Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 200 MagicAttack: 350 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SU_CN_METEOR",20; if (.@r>=9) { bonus2 bSkillCooldown,"SU_CN_METEOR",-2000; if (.@r>=11) { bonus2 bSkillAtk,"SU_CN_METEOR",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SU_CN_METEOR",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 550066 AegisName: Vivatus_F_F_model Name: Vivatus Fides Foxtail Model Type: Weapon SubType: Staff Weight: 1800 Attack: 320 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SU_PICKYPECK",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SU_PICKYPECK",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"SU_PICKYPECK",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SU_PICKYPECK",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 550067 AegisName: MeawFoxtail_LT Name: Meow Meow Foxtail-LT Type: Weapon SubType: Staff Weight: 1200 Attack: 350 MagicAttack: 350 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; if (BaseLevel>=210) { bonus bPAtk,1; bonus bSMatk,1; bonus bPow,2; bonus bSpl,2; } if (.@r>=7) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",40; bonus2 bSkillAtk,"SU_PICKYPECK",40; if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillCooldown,"SU_CN_METEOR",-2000; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",50; bonus2 bSkillAtk,"SU_CN_METEOR",50; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,15; bonus bLongAtkRate,15; bonus bPAtk,1; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bSMatk,2; bonus bPow,3; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus bBaseAtk,15*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus bMatkRate,2*(.@r/3); - Id: 550068 AegisName: SoulWeight_LT Name: Spirit Pendulum-LT Type: Weapon SubType: Staff Weight: 1200 Attack: 70 MagicAttack: 190 Range: 1 Slots: 2 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"SP_SPA",25; if (.@r>=9) { bonus2 bSkillAtk,"SP_SWHOO",45; bonus2 bSkillAtk,"SP_SPA",15; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSPRegenRate,230,5000; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bMagicAtkEle,Ele_All,3*(.@r/3); - Id: 550069 AegisName: Glacier_Wand Name: Glacier Wand Type: Weapon SubType: Staff Weight: 1300 Attack: 150 MagicAttack: 230 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 550070 AegisName: Glacier_Foxtail Name: Glacier Foxtail Staff Type: Weapon SubType: Staff Weight: 2000 Attack: 400 MagicAttack: 400 Range: 1 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 550075 AegisName: Rutilus_Stick_AD Name: Rutilus Stick-OSAD Type: Weapon SubType: Staff Weight: 900 Attack: 80 MagicAttack: 175 Range: 1 Slots: 2 Jobs: Acolyte: true Mage: true Monk: true Novice: true SuperNovice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAddEle,Ele_Neutral,10; bonus2 bMagicAddEle,Ele_Earth,10; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,30; bonus2 bMagicAtkEle,Ele_Neutral,30; if (.@r>=11) { bonus bDelayrate,-15; } } } - Id: 550076 AegisName: ElectricFox_AD Name: Electric Fox-OSAD Type: Weapon SubType: Staff Weight: 1200 Attack: 250 MagicAttack: 350 Range: 1 Slots: 2 Jobs: Summoner: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,7; if (.@r>=7) { bonus2 bSkillAtk,"SU_SV_STEMSPEAR",30; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Water,20; bonus2 bMagicAtkEle,Ele_Wind,20; bonus2 bMagicAtkEle,Ele_Ghost,20; bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SU_CN_METEOR",45; } } } - Id: 550077 AegisName: Comp_MeawFoxtail Name: "[Not For Sale] Meowmeow Foxtail" Type: Weapon SubType: Staff Weight: 1100 Attack: 300 MagicAttack: 300 Range: 1 Slots: 2 Jobs: Summoner: true Spirit_Handler: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus bAtkRate,2*(.@r/3); bonus bMatkRate,2*(.@r/3); if (.@r >= 7) { bonus2 bSkillAtk,"SU_LUNATICCARROTBEAT",15; bonus2 bSkillAtk,"SU_SV_STEMSPEAR",15; if (.@r >= 9) { bonus bVariableCastrate,-10; bonus bAspdRate,10; if (.@r >= 11) { bonus2 bSkillAtk,"SU_PICKYPECK",15; bonus2 bSkillAtk,"SU_CN_METEOR",15; } } } - Id: 550079 AegisName: SN_B_Wand Name: Super Novice Booster Wand Type: Weapon SubType: Staff Attack: 130 MagicAttack: 200 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,3*.@r; bonus bMatk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bVariableCastrate,-getskilllv("MG_SRECOVERY"); if (.@r>=9) { bonus2 bMagicAtkEle,Ele_All,10; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",15; bonus2 bSkillAtk,"MG_FIREBOLT",15; bonus2 bSkillAtk,"MG_COLDBOLT",15; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus bMatkRate,10; if (.@r>=13) { bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",25; bonus2 bSkillAtk,"MG_FIREBOLT",25; bonus2 bSkillAtk,"MG_COLDBOLT",25; } } } } - Id: 550080 AegisName: Freedom_Stick Name: Freedom Stick Type: Weapon SubType: Staff Weight: 1000 Attack: 70 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",20*(.@r/3); if (.@r>=9) { bonus bVariableCastrate,-10; if (.@r>=11) { skill "SO_PSYCHIC_WAVE",3; } } - Id: 550081 AegisName: Up_Freedom_Stick Name: Patent Freedom Stick Type: Weapon SubType: Staff Weight: 1000 Attack: 90 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30*(.@r/3); if (.@r>=7) { skill "SO_PSYCHIC_WAVE",5; bonus2 bMagicAddEle,Ele_All,15; if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",10; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus bVariableCastrate,-5; } } } - Id: 550082 AegisName: Freedom_Stick_LT Name: Freedom Stick-LT Type: Weapon SubType: Staff Weight: 1000 Attack: 100 Range: 1 Slots: 2 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,210; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { skill "SO_PSYCHIC_WAVE",5; bonus2 bMagicAddEle,Ele_All,15; if (.@r>=9) { bonus bVariableCastrate,-15; bonus2 bSkillAtk,"SO_PSYCHIC_WAVE",20; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Earth,20; bonus bVariableCastrate,-5; } } } if (.@g>=ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus bSMatk,1; if (.@g>=ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"WZ_HEAVENDRIVE",30*(.@r/3); - Id: 550088 AegisName: Saint_Bringer Name: Saint Bringer Type: Weapon SubType: Staff Weight: 1000 Attack: 60 MagicAttack: 220 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"CD_FRAMEN",5; if (.@r>=5) { bonus2 bSkillAtk,"CD_FRAMEN",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,5; if (.@r>=9) { bonus2 bSkillAtk,"CD_FRAMEN",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"CD_ARBITRIUM",15; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",15; bonus2 bSkillAtk,"CD_FRAMEN",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Holy,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 550089 AegisName: D_Glacier_Wand Name: Dim Glacier Wand Type: Weapon SubType: Staff Weight: 1300 Attack: 150 MagicAttack: 230 Range: 1 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true SuperNovice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 550090 AegisName: D_Glacier_Foxtail Name: Dim Glacier Foxtail Type: Weapon SubType: Staff Weight: 2000 Attack: 400 MagicAttack: 400 Range: 1 Slots: 1 Jobs: Summoner: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 550091 AegisName: F_Ein_1H_Foxtail Name: Flush Safety Foxtail Type: Weapon SubType: Staff Weight: 1250 Attack: 320 MagicAttack: 370 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus bAtkRate,10; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",20; bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",20; bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_PICKYPECK",20; if (.@r>=7) { bonus bAspdRate,10; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",10; bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",10; bonus2 bSkillAtk,"SU_CN_METEOR",20; bonus2 bSkillAtk,"SU_PICKYPECK",20; bonus2 bSkillUseSP,"SH_HYUN_ROKS_BREEZE",-25; bonus2 bSkillUseSP,"SH_HOGOGONG_STRIKE",-25; bonus2 bSkillUseSP,"SU_CN_METEOR",-25; bonus2 bSkillUseSP,"SU_PICKYPECK",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",10; bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",10; bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus2 bSkillAtk,"SU_PICKYPECK",10; bonus2 bSkillUseSP,"SH_HYUN_ROKS_BREEZE",-25; bonus2 bSkillUseSP,"SH_HOGOGONG_STRIKE",-25; bonus2 bSkillUseSP,"SU_CN_METEOR",-25; bonus2 bSkillUseSP,"SU_PICKYPECK",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; bonus bSMatk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",10; bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",10; bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus2 bSkillAtk,"SU_PICKYPECK",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddEle,Ele_All,10; bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",10; bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",10; bonus2 bSkillAtk,"SU_CN_METEOR",10; bonus2 bSkillAtk,"SU_PICKYPECK",10; } } } } - Id: 550092 AegisName: F_Ein_1HWAND Name: Flush Welding Wand Type: Weapon SubType: Staff Weight: 1200 Attack: 160 MagicAttack: 220 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bMagicAtkEle,Ele_All,10; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",20; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bMatk,70; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_All,15; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",10; bonus2 bSkillUseSP,"SOA_EXORCISM_OF_MALICIOUS_SOUL",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",10; bonus2 bSkillUseSP,"SOA_EXORCISM_OF_MALICIOUS_SOUL",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",10; } } } } - Id: 550093 AegisName: Soul_Harvest Name: Soul Harvest Type: Weapon SubType: Staff Weight: 900 Attack: 100 MagicAttack: 220 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",5; if (.@r>=5) { bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; if (.@r>=9) { bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_SOUL_STEALING",15; bonus2 bSkillAtk,"SOA_EXORCISM_OF_MALICIOUS_SOUL",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 550094 AegisName: Soul_Liberator Name: Soul Liberator Type: Weapon SubType: Staff Weight: 1100 Attack: 70 MagicAttack: 220 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",5; if (.@r>=5) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; if (.@r>=9) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",15; bonus2 bSkillAtk,"SOA_TALISMAN_OF_FOUR_BEARING_GOD",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 550095 AegisName: aegis_550095 Name: Ancient Royal Scepter Type: Weapon SubType: Mace Weight: 100 Attack: 150 MagicAttack: 110 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSubRace,RC_DemiHuman,10; bonus2 bSubRace,RC_Player_Doram,10; bonus bMaxHP,1000*.@r; bonus bFlee2,.@r; if (.@r>=5) { bonus bDef,150; bonus bMdef,15; } if (.@r>=7) { bonus bDef,150; bonus bMdef,15; } - Id: 550096 AegisName: aegis_550096 Name: Herosria Wizardry Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Wizard: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Ghost,-5; bonus2 bMagicAtkEle,Ele_Undead,10; bonus2 bMagicAtkEle,Ele_Neutral,-5; bonus2 bMagicAtkEle,Ele_Dark,10; bonus bAspdRate,-5; bonus bMatkRate,5; - Id: 550097 AegisName: aegis_550097 Name: Herosria Spell Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 110 Range: 1 Jobs: Sage: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bMagicAtkEle,Ele_All,-5; bonus bDelayrate,-10; bonus bVariableCastrate,5; - Id: 550098 AegisName: Hs_Pr_Holy_Wand Name: Herosria Holy Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 110 Range: 1 Jobs: Priest: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_All,-5; bonus bHealPower,10; bonus bDelayrate,-10; bonus bMatkRate,-3; - Id: 550099 AegisName: Hs_Pr_Wand Name: Herosria Arc Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Priest: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,-5; bonus2 bSubRace,RC_Player_Doram,-5; bonus2 bMagicAtkEle,Ele_Holy,10; bonus bDelayrate,5; bonus bVariableCastrate,-10; - Id: 550100 AegisName: aegis_550100 Name: Herosria Soul Stick Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bLongAtkDef,-5; bonus2 bMagicAtkEle,Ele_Dark,10; bonus bDelayrate,5; bonus bVariableCastrate,-10; - Id: 550101 AegisName: aegis_550101 Name: Herosria Link Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 110 Range: 1 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bNearAtkDef,-5; bonus bHealPower,10; bonus bDelayrate,-10; bonus bVariableCastrate,5; - Id: 550102 AegisName: aegis_550102 Name: Herosria Soul Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: SoulLinker: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bLongAtkDef,-5; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bVariableCastrate,-10; bonus bUseSPrate,5; - Id: 550103 AegisName: aegis_550103 Name: Herosria Summoner Foxtail Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 110 Range: 1 Jobs: Summoner: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,-5; bonus2 bSubRace,RC_Player_Doram,-5; bonus bHealPower,10; bonus bDelayrate,-10; bonus bUseSPrate,5; - Id: 550104 AegisName: aegis_550104 Name: Herosria Foxtail Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Summoner: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bNearAtkDef,-5; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bDelayrate,5; bonus bMatkRate,5; - Id: 550105 AegisName: aegis_550105 Name: Herosria Foxtail Model Type: Weapon SubType: Staff Weight: 1500 Attack: 130 Range: 1 Jobs: Summoner: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bCritAtkRate,-5; bonus bLongAtkRate,10; bonus bCritical,-5; bonus bHit,30; - Id: 550106 AegisName: aegis_550106 Name: Herosria Basic Rod Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,-5; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Earth,-5; bonus bDelayrate,-10; bonus bVariableCastrate,5; - Id: 550107 AegisName: aegis_550107 Name: Herosria Basic Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: Novice: true SuperNovice: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Water,-5; bonus2 bMagicAtkEle,Ele_Fire,-5; bonus2 bMagicAtkEle,Ele_Earth,10; bonus bVariableCastrate,-10; bonus bUseSPrate,5; - Id: 550108 AegisName: aegis_550108 Name: 1Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Mage: true Monk: true Novice: true SuperNovice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 550110 AegisName: aegis_550110 Name: 2Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Mage: true Monk: true Novice: true SuperNovice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 550111 AegisName: aegis_550111 Name: 3Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Mage: true Monk: true Novice: true SuperNovice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 550112 AegisName: aegis_550112 Name: 4Lv One-handed Staff Type: Weapon SubType: Staff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Mage: true Monk: true Novice: true SuperNovice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 550113 AegisName: aegis_550113 Name: Level 5 Staff # !todo check english name Type: Weapon SubType: Staff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Mage: true Monk: true Novice: true SuperNovice: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 550115 AegisName: Darkness_Foxtail_Model Name: Darkness Foxtail Model Type: Weapon SubType: Staff Weight: 1400 Attack: 150 MagicAttack: 330 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; if (.@r>=5) { bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; if (.@r>=9) { bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",15; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 550116 AegisName: Lightforce_Foxtail_Wand Name: Lightforce Foxtail Wand Type: Weapon SubType: Staff Weight: 1500 Attack: 330 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; if (.@r>=5) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",15; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 550117 AegisName: Mocadas_Rod Name: Muqaddas Baru Type: Weapon SubType: Staff Weight: 1250 Attack: 70 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus2 bSkillAtk,"CD_FRAMEN",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,10; if (.@r>=9) { bonus2 bSkillAtk,"CD_FRAMEN",10; if (.@r>=11) { bonus2 bSkillAtk,"CD_FRAMEN",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,5; } } } } - Id: 550118 AegisName: Mocadas_Foxtail Name: Muqaddas Sharman Type: Weapon SubType: Staff Weight: 1250 Attack: 290 MagicAttack: 340 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bMatkRate,5; bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; if (.@r>=11) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; bonus bSMatk,5; } } } } - Id: 550119 AegisName: Mocadas_Wand Name: Muqaddas Kharawasu Type: Weapon SubType: Staff Weight: 1100 Attack: 90 MagicAttack: 230 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",10; bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=9) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",10; bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",10; if (.@r>=11) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",10; bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,5; } } } } - Id: 550130 AegisName: Dimen_CD_Rod Name: Dimensions Saint Rod Type: Weapon SubType: Staff Weight: 2000 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,25*(.@r/2); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"CD_ARBITRIUM",15+5*(.@r/3); bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",15+5*(.@r/3); bonus2 bSkillAtk,"AB_ADORAMUS",25+7*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,25; bonus2 bMagicAtkEle,Ele_Neutral,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"CD_ARBITRIUM",15; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",15; bonus2 bSkillAtk,"AB_ADORAMUS",45; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"CD_ARBITRIUM",15; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Neutral,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 550131 AegisName: Dimen_SOA_Stick Name: Dimensions Soul Stick Type: Weapon SubType: Staff Weight: 1800 Attack: 120 MagicAttack: 240 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,25*(.@r/2); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLUE_DRAGON",15+5*(.@r/3); bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",15+5*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLUE_DRAGON",15; bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLUE_DRAGON",15; bonus2 bSkillAtk,"SOA_TALISMAN_OF_RED_PHOENIX",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 550132 AegisName: Dimen_SOA_Rod Name: Dimensions Soul Rod Type: Weapon SubType: Staff Weight: 1800 Attack: 120 MagicAttack: 240 Range: 1 Slots: 2 Jobs: SoulLinker: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,25*(.@r/2); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"SOA_TALISMAN_OF_WHITE_TIGER",15+5*(.@r/3); bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",15+5*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_WHITE_TIGER",15; bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SOA_TALISMAN_OF_WHITE_TIGER",15; bonus2 bSkillAtk,"SOA_TALISMAN_OF_BLACK_TORTOISE",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 550133 AegisName: Dimen_HN_Rod Name: Dimensions Hyper Rod Type: Weapon SubType: Staff Weight: 1800 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,25*(.@r/2); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",15+5*(.@r/3); bonus2 bSkillAtk,"HN_HELLS_DRIVE",15+5*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,25; bonus2 bMagicAtkEle,Ele_Fire,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",15; bonus2 bSkillAtk,"HN_HELLS_DRIVE",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"HN_METEOR_STORM_BUSTER",15; bonus2 bSkillAtk,"HN_HELLS_DRIVE",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Fire,20; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 550134 AegisName: Dimen_SH_Foxtail Name: Dimensions Spirit Foxtail Type: Weapon SubType: Staff Weight: 2100 Attack: 430 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SH_HOGOGONG_STRIKE",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; /* note: 15 according to description */ if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 550135 AegisName: Dimen_SH_F_Model Name: Dimensions Spirit Foxtail Model Type: Weapon SubType: Staff Weight: 1800 Attack: 100 MagicAttack: 430 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,25*(.@r/2); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",15+5*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SH_HYUN_ROKS_BREEZE",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 550141 AegisName: SaintWand_Furious Name: Furious Saint Wand Type: Weapon SubType: Staff Weight: 1400 Attack: 100 MagicAttack: 180 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"CD_FRAMEN",5; if (BaseLevel>=210) { bonus bMatkRate,4; bonus bMatk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"CD_FRAMEN",5; } if (BaseLevel>=230) { bonus2 bMagicAddSize,Size_All,10; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,10; if (.@r>=9) { bonus2 bSkillAtk,"CD_FRAMEN",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"CD_FRAMEN",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Holy,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"CD_FRAMEN",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"CD_FRAMEN",10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); bonus bMatkRate,3*(.@r/2); } } } } - Id: 550143 AegisName: Foxtail_Furious Name: Furious Foxtail Type: Weapon SubType: Staff Weight: 1600 Attack: 380 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; if (BaseLevel>=210) { bonus bAtkRate,4; bonus bBaseAtk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bCritAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bCritAtkRate,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"SH_CHUL_HO_SONIC_CLAW",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); bonus bAtkRate,3*(.@r/2); } } } } - Id: 550144 AegisName: Setaria_Furious Name: Furious Foxtail Model Type: Weapon SubType: Staff Weight: 1600 Attack: 180 MagicAttack: 380 Range: 1 Slots: 2 Jobs: Summoner: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; if (BaseLevel>=210) { bonus bMatkRate,4; bonus bMatk,40; } if (BaseLevel>=220) { bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; } if (BaseLevel>=230) { bonus2 bMagicAddSize,Size_All,10; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Dark,10; if (.@r>=9) { bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; if (.@r>=10) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Dark,10; if (.@r>=11) { bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Dark,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"SH_HYUN_ROK_CANNON",10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); bonus bMatkRate,3*(.@r/2); } } } } - Id: 560000 AegisName: Boost_Knuckle Name: Booster Knuckles Type: Weapon SubType: Knuckle Attack: 150 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bMaxHPrate,3; bonus2 bAddClass,Class_All,3; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bBaseAtk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus bMaxHPrate,getskilllv("MO_EXPLOSIONSPIRITS")*2; } if (.@r>=9) { bonus2 bAddSize,Size_All,10; } - Id: 560002 AegisName: Ray_Knuckle Name: Ray Knuckle Type: Weapon SubType: Knuckle Weight: 700 Attack: 185 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"SR_TIGERCANNON",.@r/3*4; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; } if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } - Id: 560003 AegisName: Woe_Pist2_Z Name: Intermediate Guild Member's Fist Type: Weapon SubType: Knuckle Weight: 300 Attack: 80 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus2 bFixedCastrate,"MO_EXTREMITYFIST",-30; autobonus3 "{ .@r = getrefine(); bonus bBaseAtk,30+(.@r-10); }",1000,20000,"MO_EXPLOSIONSPIRITS"; } - Id: 560004 AegisName: Ep172_Bh_Knuck Name: Ira Fist Type: Weapon SubType: Knuckle Weight: 800 Attack: 200 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",15; } if (.@r>=9) { bonus2 bSkillCooldown,"SR_HOWLINGOFLION",-2000; } if (.@r>=11) { bonus2 bSkillAtk,"SR_HOWLINGOFLION",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } - Id: 560006 AegisName: PS_B_Knuckle Name: Rampage Arrow Booster Knuckle Type: Weapon SubType: Knuckle Attack: 190 Range: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,(3*.@r)+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,2*getskilllv("MO_CALLSPIRITS"); } if (.@r>=9) { bonus bMaxSPrate,10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",25; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bDelayrate,-10; } if (.@r>=13) { bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; } - Id: 560007 AegisName: CP_B_Knuckle Name: Sky Cannon Booster Knuckle Type: Weapon SubType: Knuckle Attack: 190 Range: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2+(min(BaseLevel,195)/15); bonus bMaxHP,250*.@r; bonus bMaxSP,20*.@r; if (.@r>=7) { bonus bMaxHPrate,2*getskilllv("MO_CHAINCOMBO"); } if (.@r>=9) { bonus bAtkRate,5; bonus2 bSkillAtk,"SR_SKYNETBLOW",25; bonus2 bSkillAtk,"SR_TIGERCANNON",25; } if (.@r>=11) { bonus bShortAtkRate,15; bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=13) { bonus2 bSkillAtk,"SR_SKYNETBLOW",15; bonus2 bSkillAtk,"SR_TIGERCANNON",15; } - Id: 560008 AegisName: Up_Iron_Nail_K Name: Patent Iron Nail Type: Weapon SubType: Knuckle Weight: 1200 Attack: 205 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",10; } if (.@r>=9) { bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; } if (.@r>=11) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",15; bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",15; } - Id: 560009 AegisName: Up_Ray_Knuckle Name: Patent Ray Knuckle Type: Weapon SubType: Knuckle Weight: 800 Attack: 205 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; bonus2 bSkillAtk,"SR_GATEOFHELL",20; } if (.@r>=9) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } if (.@r>=11) { bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_GATEOFHELL",15; } - Id: 560011 AegisName: Fourth_1h_Knuckle Name: Scrap Fist Type: Weapon SubType: Knuckle Weight: 1300 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"IQ_SECOND_FAITH",5*(.@r/2); bonus2 bSkillAtk,"IQ_SECOND_JUDGEMENT",5*(.@r/2); bonus bShortAtkRate,2*(.@r/4); - Id: 560012 AegisName: Poenitentia_Caestus Name: Poenitentia Caestus Type: Weapon SubType: Knuckle Weight: 1500 Attack: 230 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"IQ_SECOND_FAITH",10; bonus2 bSkillAtk,"SR_TIGERCANNON",3*(.@r/2); if (.@r>=7) { bonus bMaxHPrate,10; if (.@r>=9) { bonus2 bSkillAtk,"SR_TIGERCANNON",30; if (.@r>=11) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"IQ_SECOND_FAITH",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"IQ_SECOND_FAITH",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"IQ_SECOND_FAITH",12; } } } - Id: 560013 AegisName: Poenitentia_Ungula Name: Poenitentia Ungula Type: Weapon SubType: Knuckle Weight: 1500 Attack: 230 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",10; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",3*(.@r/2); if (.@r>=7) { bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",15; if (.@r>=9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",30; if (.@r>=11) { bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",12; } } } - Id: 560017 AegisName: Thanos_Knuckle_AD Name: Thanos Knuckle-AD Type: Weapon SubType: Knuckle Weight: 1200 Attack: 200 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",5*(.@r/3); if (.@r>=7) { bonus bMaxHPrate,5; bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; if (.@r>=9) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",25; bonus2 bSkillAtk,"SR_TIGERCANNON",15; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bShortAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",10; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",10; } } } - Id: 560018 AegisName: Adulter_F_Knuckle Name: Adulter Fides Knuckle Type: Weapon SubType: Knuckle Weight: 1000 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SR_TIGERCANNON",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SR_TIGERCANNON",20; if (.@r>=9) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-500; if (.@r>=11) { bonus2 bSkillAtk,"SR_TIGERCANNON",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 560019 AegisName: Adulter_F_Claw Name: Adulter Fides Claw Type: Weapon SubType: Knuckle Weight: 900 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20; if (.@r>=9) { bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; if (.@r>=11) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 560020 AegisName: Vivatus_F_Knuckle Name: Vivatus Fides Knuckle Type: Weapon SubType: Knuckle Weight: 1000 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SR_TIGERCANNON",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SR_TIGERCANNON",20; if (.@r>=9) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-500; if (.@r>=11) { bonus2 bSkillAtk,"SR_TIGERCANNON",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SR_TIGERCANNON",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 560021 AegisName: Vivatus_F_Claw Name: Vivatus Fides Claw Type: Weapon SubType: Knuckle Weight: 900 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20; if (.@r>=9) { bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; if (.@r>=11) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 560022 AegisName: 2Para_Knuckle_MO Name: Paradise Monk Knuckles Type: Weapon SubType: Knuckle Attack: 160 Range: 1 Jobs: Monk: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"MO_CHAINCOMBO",20; if (BaseLevel>=90) bonus2 bSkillAtk,"MO_COMBOFINISH",20; - Id: 560023 AegisName: 2Para_Claw_MO Name: Paradise Monk Claws Type: Weapon SubType: Knuckle Attack: 160 Range: 1 Jobs: Monk: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",10; if (BaseLevel>=90) bonus2 bSkillAtk,"MO_FINGEROFFENSIVE",15; - Id: 560024 AegisName: 3Para_Knuckle_SR Name: Paradise Sura Knuckle Type: Weapon SubType: Knuckle Attack: 180 Range: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("MO_CHAINCOMBO"); bonus bAtkRate,5; bonus bMaxHPrate,2*.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; bonus2 bSkillAtk,"SR_FALLENEMPIRE",25; bonus2 bSkillAtk,"SR_TIGERCANNON",25; if (BaseLevel>=110) { bonus bShortAtkRate,15; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"SR_FALLENEMPIRE",15; bonus2 bSkillAtk,"SR_TIGERCANNON",15; } } } - Id: 560025 AegisName: 3Para_Claw_SR Name: Paradise Sura Claw Type: Weapon SubType: Knuckle Attack: 180 Range: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("MO_CALLSPIRITS"); bonus bAtkRate,5; bonus bLongAtkRate,2*.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",25; bonus2 bSkillAtk,"SR_KNUCKLEARROW",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",15; bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; } } } - Id: 560026 AegisName: Iron_Nail_K_LT Name: Iron Nail-LT Type: Weapon SubType: Knuckle Weight: 1200 Attack: 205 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",20; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",20; if (.@r>=9) { bonus2 bSkillUseSPrate,"SR_RAMPAGEBLASTER",15; bonus2 bSkillCooldown,"SR_RAMPAGEBLASTER",-1000; bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; if (.@r>=11) { bonus2 bAddEle,Ele_All,15; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",25; bonus2 bSkillAtk,"SR_RIDEINLIGHTNING",25; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 560027 AegisName: Ray_Knuckle_LT Name: Ray Knuckle-LT Type: Weapon SubType: Knuckle Weight: 800 Attack: 205 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillAtk,"SR_GATEOFHELL",30; bonus2 bSkillAtk,"SR_TIGERCANNON",25; if (.@r>=9) { bonus bLongAtkRate,10; bonus bShortAtkRate,10; bonus2 bSkillCooldown,"SR_TIGERCANNON",-1000; if (.@r>=11) { bonus bMaxHPrate,10; bonus2 bSkillAtk,"SR_GATEOFHELL",15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"SR_TIGERCANNON",4*(.@r/3); - Id: 560029 AegisName: Melon_Claw Name: Melon Claw Type: Weapon SubType: Knuckle Buy: 20 Weight: 400 Attack: 140 MagicAttack: 100 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 560030 AegisName: Precision_Fist Name: Precision Fist Type: Weapon SubType: Knuckle Weight: 1400 Attack: 230 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"IQ_SECOND_FAITH",7*(.@r/2); bonus2 bSkillAtk,"IQ_SECOND_JUDGEMENT",7*(.@r/2); bonus2 bSkillAtk,"IQ_THIRD_PUNISH",8*(.@r/3); bonus2 bSkillAtk,"IQ_THIRD_CONSECRATION",8*(.@r/3); bonus bShortAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"IQ_SECOND_FAITH",10; bonus2 bSkillAtk,"IQ_SECOND_JUDGEMENT",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 560032 AegisName: Glacier_Knuckle Name: Glacier Knuckle Type: Weapon SubType: Knuckle Weight: 1500 Attack: 240 MagicAttack: 220 Range: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 560034 AegisName: Burning_Knuckle_AD Name: Burning Knuckle-OSAD Type: Weapon SubType: Knuckle Weight: 900 Attack: 175 Range: 1 Slots: 2 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; if (.@r>=7) { bonus2 bSkillCooldown,"SR_EARTHSHAKER",-1000; if (.@r>=9) { bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",30; if (.@r>=11) { bonus2 bAddSize,Size_Medium,20; bonus2 bAddSize,Size_Large,20; bonus2 bSkillAtk,"SR_RAMPAGEBLASTER",45; } } } - Id: 560036 AegisName: Demonic_Claw Name: Demonic Claw Type: Weapon SubType: Knuckle Weight: 1500 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",5; if (.@r>=5) { bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"IQ_OLEUM_SANCTUM",15; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 560037 AegisName: D_Glacier_Knuckle Name: Dim Glacier Knuckle Type: Weapon SubType: Knuckle Weight: 1500 Attack: 240 MagicAttack: 220 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 560038 AegisName: F_Ein_1HKNUCK Name: Flush Safety Knuckle Type: Weapon SubType: Knuckle Weight: 1800 Attack: 240 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",20; bonus2 bSkillAtk,"SR_KNUCKLEARROW",20; if (.@r>=7) { bonus bAspdRate,10; bonus bBaseAtk,70; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",15; bonus2 bSkillUseSP,"IQ_EXPOSION_BLASTER",-25; bonus2 bSkillUseSP,"SR_KNUCKLEARROW",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; bonus2 bSkillUseSP,"IQ_EXPOSION_BLASTER",-25; bonus2 bSkillUseSP,"SR_KNUCKLEARROW",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",10; bonus2 bSkillAtk,"SR_KNUCKLEARROW",10; } } } } - Id: 560039 AegisName: Hs_Mo_Knuckle Name: Herosria Knuckle Type: Weapon SubType: Knuckle Weight: 1500 Attack: 130 Range: 1 Jobs: Monk: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bShortAtkRate,10; bonus bLongAtkRate,-5; bonus bMaxHPrate,-5; bonus bHit,30; - Id: 560040 AegisName: aegis_560040 Name: Herosria Claw Type: Weapon SubType: Knuckle Weight: 1500 Attack: 130 Range: 1 Jobs: Monk: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-5; bonus bLongAtkRate,10; bonus bAspdRate,10; bonus bCritical,-5; - Id: 560043 AegisName: aegis_560043 Name: 1Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 560044 AegisName: aegis_560044 Name: 2Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 560045 AegisName: aegis_560045 Name: 3Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 560046 AegisName: aegis_560046 Name: 4Lv Knuckle Type: Weapon SubType: Knuckle Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 560047 AegisName: aegis_560047 Name: Level 5 Knuckle # !todo check english name Type: Weapon SubType: Knuckle Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Monk: true Priest: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 560048 AegisName: Mocadas_Knuckle Name: Muqaddas Mashts Type: Weapon SubType: Knuckle Weight: 2000 Attack: 220 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,10; bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",10; if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",10; if (.@r>=11) { bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 560050 AegisName: aegis_560050 Name: Opened Illusion Combo Battle Glove Type: Weapon SubType: Knuckle Buy: 20 Weight: 700 Attack: 382 Range: 1 Slots: 1 Jobs: Monk: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHit,3*.@r; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) { bonus bAtkRate,5; if (BaseLevel>=150) { bonus bBaseAtk,(min(BaseLevel,170)*3); } } - Id: 560060 AegisName: Dimen_IQ_Knuckle Name: Dimensions Judgment Knuckle Type: Weapon SubType: Knuckle Weight: 2300 Attack: 240 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,5; bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,25; if (.@r>=9) { bonus bUseSPrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"IQ_THIRD_FLAME_BOMB",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 560061 AegisName: Dimen_IQ_Claw Name: Dimensions Judgment Claw Type: Weapon SubType: Knuckle Weight: 2500 Attack: 240 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"IQ_EXPOSION_BLASTER",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 570000 AegisName: Boost_Guitar Name: Booster Guitar Type: Weapon SubType: Musical Attack: 150 MagicAttack: 160 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Neutral,3; bonus bAtkRate,3; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; .@i = min(BaseLevel,180)/15*3; bonus bBaseAtk,.@i; bonus bMatk,.@i; if (.@r>=7) { bonus bVariableCastrate,getskilllv("BA_MUSICALLESSON")*-1; } if (.@r>=9) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 570002 AegisName: Trumpet_Shell_K Name: Trumpet Shell Type: Weapon SubType: Musical Weight: 700 Attack: 160 MagicAttack: 190 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bMatk,.@r/2*10; } if (.@r>=3) { bonus2 bMagicAtkEle,Ele_Neutral,.@r/3*4; } if (.@r>=9) { bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=11) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } - Id: 570003 AegisName: Woe_Instrument2_Z Name: Intermediate Guild Member's Guitar Type: Weapon SubType: Musical Weight: 400 Attack: 90 Range: 1 Slots: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,15+.@r; bonus2 bAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,20+(.@r-10); bonus bVariableCastrate,-30; autobonus3 "{ .@r = getrefine(); bonus2 bSkillAtk,\"BA_MUSICALSTRIKE\",30+(.@r-10); }",1000,60000,"BD_ADAPTATION"; } - Id: 570004 AegisName: Gemini_Violin_J Name: Gemini Violin Type: Weapon SubType: Musical Buy: 20 Weight: 500 Attack: 10 MagicAttack: 10 Range: 1 Slots: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,40+BaseLevel; bonus bMatk,40+BaseLevel; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Bard) { bonus bAtkRate,50; bonus bMatkRate,25; bonus2 bSkillAtk,"CG_ARROWVULCAN",200; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; } } - Id: 570005 AegisName: Ep172_1h_Inst Name: Pigritia Wave Type: Weapon SubType: Musical Weight: 700 Attack: 150 MagicAttack: 210 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; bonus bMatk,8*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } if (.@r>=11) { bonus2 bSkillUseSPrate,"WM_REVERBERATION",20; bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; } - Id: 570008 AegisName: Electronic_Guitar_IL Name: Illusion Electric Guitar Type: Weapon SubType: Musical Weight: 1800 Attack: 170 MagicAttack: 180 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bMatk,6*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10; } if (.@r>=9) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } if (.@r>=11) { bonus2 bMagicAddEle,Ele_Water,10; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; } - Id: 570009 AegisName: Up_Trumpet_Shell_K Name: Patent Trumpet Shell Type: Weapon SubType: Musical Weight: 1000 Attack: 160 MagicAttack: 230 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7) { bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9) { bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11) { bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } - Id: 570010 AegisName: MV_B_Violin Name: Metallic Vibration Booster Violin Type: Weapon SubType: Musical Attack: 150 Range: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatkRate,2+(min(BaseLevel,195)/15); bonus bMatk,180+(3*.@r); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,2*getskilllv("BA_MUSICALLESSON"); } if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; bonus2 bSkillAtk,"WM_METALICSOUND",25; bonus2 bSkillAtk,"WM_REVERBERATION",25; } if (.@r>=11) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=13) { bonus2 bSkillAtk,"WM_METALICSOUND",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } - Id: 570012 AegisName: Fourth_Bh_Lute Name: Scrap Lute Type: Weapon SubType: Musical Weight: 1250 Attack: 205 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"TR_ROSEBLOSSOM",5*(.@r/2); bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",5*(.@r/2); bonus bLongAtkRate,2*(.@r/4); - Id: 570013 AegisName: Poenitentia_Chorda Name: Poenitentia Chorda Type: Weapon SubType: Musical Weight: 1100 Attack: 220 MagicAttack: 250 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,10; bonus2 bSkillAtk,"TR_METALIC_FURY",10; bonus2 bSkillAtk,"WM_REVERBERATION",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"WM_REVERBERATION",30; if (.@r>=11) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"TR_METALIC_FURY",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"TR_METALIC_FURY",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"TR_METALIC_FURY",12; } } } - Id: 570016 AegisName: Thanos_Violin_AD Name: Thanos Violin-AD Type: Weapon SubType: Musical Weight: 1000 Attack: 220 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bLongAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; } } } - Id: 570017 AegisName: Adulter_F_Violin Name: Adulter Fides Violin Type: Weapon SubType: Musical Weight: 1200 Attack: 170 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500; if (.@r>=11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 570018 AegisName: Adulter_F_Harp Name: Adulter Fides Harp Type: Weapon SubType: Musical Weight: 1000 Attack: 100 MagicAttack: 210 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_METALICSOUND",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_METALICSOUND",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; if (.@r>=11) { bonus2 bSkillAtk,"WM_METALICSOUND",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } - Id: 570019 AegisName: Vivatus_F_Violin Name: Vivatus Fides Violin Type: Weapon SubType: Musical Weight: 1200 Attack: 170 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500; if (.@r>=11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 570020 AegisName: Vivatus_F_Harp Name: Vivatus Fides Harp Type: Weapon SubType: Musical Weight: 1000 Attack: 100 MagicAttack: 210 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"WM_METALICSOUND",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_METALICSOUND",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; if (.@r>=11) { bonus2 bSkillAtk,"WM_METALICSOUND",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"WM_METALICSOUND",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 570021 AegisName: 2Para_Violin_BA Name: Paradise Bard Violin Type: Weapon SubType: Musical Attack: 160 Range: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"BA_MUSICALSTRIKE",10; if (BaseLevel>=90) bonus2 bSkillAtk,"BA_MUSICALSTRIKE",15; - Id: 570022 AegisName: 3Para_Violin_MI Name: Paradise Minstrel Violin Type: Weapon SubType: Musical Attack: 180 Range: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("BA_MUSICALLESSON"); bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (BaseLevel>=110) { bonus bLongAtkRate,15; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } } - Id: 570023 AegisName: 3Para_Harp_MI Name: Paradise Minstrel Harp Type: Weapon SubType: Musical Attack: 150 MagicAttack: 180 Range: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("BA_MUSICALLESSON"); bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_All,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; bonus2 bSkillAtk,"WM_METALICSOUND",25; bonus2 bSkillAtk,"WM_REVERBERATION",25; if (BaseLevel>=110) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"WM_METALICSOUND",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } } } - Id: 570024 AegisName: RS_B_Violin Name: Rainstorm Booster Violin Type: Weapon SubType: Musical Attack: 150 Range: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,2*getskilllv("BA_MUSICALLESSON"); if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=13) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } } } } - Id: 570026 AegisName: Melon_Viollin Name: Melon Viollin Type: Weapon SubType: Musical Buy: 20 Weight: 250 Attack: 180 MagicAttack: 120 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 570027 AegisName: Trumpet_Shell_K_LT Name: Trumpet Shell-LT Type: Weapon SubType: Musical Weight: 1000 Attack: 160 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bMatk,230; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bSkillAtk,"WM_METALICSOUND",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; if (.@r>=9) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"WM_METALICSOUND",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bMagicAtkEle,Ele_All,4*(.@r/3); - Id: 570028 AegisName: Precision_Lute Name: Precision Lute Type: Weapon SubType: Musical Weight: 1400 Attack: 220 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"TR_ROSEBLOSSOM",7*(.@r/2); bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",7*(.@r/2); bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",7*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 570029 AegisName: Glacier_Violin Name: Glacier Violin Type: Weapon SubType: Musical Weight: 1500 Attack: 210 MagicAttack: 210 Range: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 570032 AegisName: D_Glacier_Violin Name: Dim Glacier Violin Type: Weapon SubType: Musical Weight: 1500 Attack: 210 MagicAttack: 210 Range: 1 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 570033 AegisName: F_Ein_1HLUTE Name: Flush Safety Lute Type: Weapon SubType: Musical Weight: 1400 Attack: 200 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bLongAtkRate,10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM",20; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,70; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; bonus2 bSkillUseSP,"TR_ROSEBLOSSOM",-25; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM_MELEE",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillUseSP,"TR_ROSEBLOSSOM",-25; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM_MELEE",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; } } } } - Id: 570034 AegisName: aegis_570034 Name: Herosria Violin Type: Weapon SubType: Musical Weight: 1500 Attack: 110 Range: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Player_Human,-5; bonus2 bAddRace,RC_Player_Doram,-5; bonus bDelayrate,5; bonus bVariableCastrate,-10; - Id: 570035 AegisName: Hs_Ba_Guitar Name: Herosria Guitar Type: Weapon SubType: Musical Weight: 1500 Attack: 100 MagicAttack: 130 Range: 1 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bLongAtkRate,-5; bonus bShortAtkRate,-5; bonus bDelayrate,-10; bonus bVariableCastrate,5; - Id: 570036 AegisName: Crime_Violine Name: Crime Violin Type: Weapon SubType: Musical Weight: 1100 Attack: 120 MagicAttack: 220 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"TR_METALIC_FURY",5; if (.@r>=5) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; if (.@r>=9) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"TR_SOUNDBLEND",15; bonus2 bSkillAtk,"TR_METALIC_FURY",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 570037 AegisName: Light_Power_Harp Name: Light Power Harp Type: Weapon SubType: Musical Weight: 2000 Attack: 200 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",5; if (.@r>=5) { bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 570040 AegisName: aegis_570040 Name: 1Lv Instrument Type: Weapon SubType: Musical Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 570041 AegisName: aegis_570041 Name: 2Lv Instrument Type: Weapon SubType: Musical Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 570042 AegisName: aegis_570042 Name: 3Lv Instrument Type: Weapon SubType: Musical Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 570043 AegisName: aegis_570043 Name: 4Lv Instrument Type: Weapon SubType: Musical Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 570044 AegisName: aegis_570044 Name: Level 5 Instrument # !todo check english name Type: Weapon SubType: Musical Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: BardDancer: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 570045 AegisName: Mocadas_Instrument Name: Muqaddas Saz Type: Weapon SubType: Musical Weight: 1100 Attack: 120 MagicAttack: 230 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=9) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=11) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,5; } } } } - Id: 570062 AegisName: Dimen_TR_Vilolin Name: Dimensions Musical Violin Type: Weapon SubType: Musical Weight: 1800 Attack: 100 MagicAttack: 240 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"TR_METALIC_FURY",15+5*(.@r/3); bonus2 bSkillAtk,"WM_REVERBERATION",25+7*(.@r/3); bonus bMatk,25*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"TR_METALIC_FURY",15; bonus2 bSkillAtk,"WM_REVERBERATION",45; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_METALIC_FURY",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 570063 AegisName: Dimen_TR_Harp Name: Dimensions Musical Harp Type: Weapon SubType: Musical Weight: 1800 Attack: 230 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Male Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15+5*(.@r/3); bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15+5*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,25; if (.@r>=9) { bonus bDelayrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 580000 AegisName: Boost_Whip Name: Booster Whip Type: Weapon SubType: Whip Attack: 150 MagicAttack: 160 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Neutral,3; bonus bAtkRate,3; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bMatk,.@r*3; .@i = min(BaseLevel,180)/15*3; bonus bBaseAtk,.@i; bonus bMatk,.@i; if (.@r>=7) { bonus bVariableCastrate,getskilllv("DC_DANCINGLESSON")*-1; } if (.@r>=9) { bonus bAtkRate,10; bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 580002 AegisName: Barb_Wire_K Name: Barbed Wire Whip Type: Weapon SubType: Whip Weight: 700 Attack: 160 MagicAttack: 190 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bMatk,.@r/2*10; } if (.@r>=3) { bonus2 bMagicAtkEle,Ele_Neutral,.@r/3*4; } if (.@r>=9) { bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=11) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } - Id: 580003 AegisName: Woe_Whip2_Z Name: Intermediate Guild Member's Lariat Type: Weapon SubType: Whip Weight: 400 Attack: 90 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,15+.@r; bonus2 bAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,20+(.@r-10); bonus bVariableCastrate,-30; autobonus3 "{ .@r = getrefine(); bonus2 bSkillAtk,\"DC_THROWARROW\",30+(.@r-10); }",1000,60000,"BD_ADAPTATION"; } - Id: 580004 AegisName: Gemini_Rope_J Name: Gemini Rope Type: Weapon SubType: Whip Buy: 20 Weight: 500 Attack: 10 MagicAttack: 10 Range: 2 Slots: 1 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,40+BaseLevel; bonus bMatk,40+BaseLevel; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Dancer) { bonus bAtkRate,50; bonus bMatkRate,25; bonus2 bSkillAtk,"CG_ARROWVULCAN",200; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; } } - Id: 580005 AegisName: Ep172_1h_Whip Name: Pigritia Spark Type: Weapon SubType: Whip Weight: 700 Attack: 150 MagicAttack: 210 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; bonus bMatk,8*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } if (.@r>=11) { bonus2 bSkillUseSPrate,"WM_REVERBERATION",20; bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; } - Id: 580008 AegisName: Electric_Eel_IL Name: Illusion Electric Eel Type: Weapon SubType: Whip Weight: 1800 Attack: 170 MagicAttack: 180 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bMatk,6*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Neutral,10; bonus2 bSkillUseSPrate,"WM_SEVERE_RAINSTORM",10; } if (.@r>=9) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } if (.@r>=11) { bonus2 bMagicAddEle,Ele_Water,10; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; } - Id: 580009 AegisName: Up_Barb_Wire_K Name: Patent Barbed Wire Whip Type: Weapon SubType: Whip Weight: 1000 Attack: 160 MagicAttack: 230 Range: 1 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bMagicAtkEle,Ele_All,.@r/3*4; if (.@r>=7) { bonus2 bSkillAtk,"WM_REVERBERATION",10; bonus2 bSkillAtk,"WM_METALICSOUND",10; } if (.@r>=9) { bonus2 bSkillFixedCast,WM_REVERBERATION,-500; } if (.@r>=11) { bonus bMatkRate,7; bonus2 bSkillAtk,"WM_REVERBERATION",15; bonus2 bSkillAtk,"WM_METALICSOUND",15; } - Id: 580010 AegisName: MV_B_Whip Name: Metallic Vibration Booster Whip Type: Weapon SubType: Whip Attack: 150 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bMatkRate,2+(min(BaseLevel,195)/15); bonus bMatk,180+(3*.@r); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,2*getskilllv("DC_DANCINGLESSON"); } if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; bonus2 bSkillAtk,"WM_METALICSOUND",25; bonus2 bSkillAtk,"WM_REVERBERATION",25; } if (.@r>=11) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; bonus2 bMagicAtkEle,Ele_All,15; } if (.@r>=13) { bonus2 bSkillAtk,"WM_METALICSOUND",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } - Id: 580012 AegisName: Fourth_1h_Whip Name: Scrap Whip Type: Weapon SubType: Whip Weight: 1250 Attack: 205 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"TR_ROSEBLOSSOM",5*(.@r/2); bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",5*(.@r/2); bonus bLongAtkRate,2*(.@r/4); - Id: 580013 AegisName: Poenitentia_Flagellum Name: Poenitentia Flagellum Type: Weapon SubType: Whip Weight: 1100 Attack: 220 MagicAttack: 250 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,10; bonus2 bSkillAtk,"TR_METALIC_FURY",10; bonus2 bSkillAtk,"WM_REVERBERATION",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"WM_REVERBERATION",30; if (.@r>=11) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"TR_METALIC_FURY",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"TR_METALIC_FURY",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,1; bonus2 bSkillAtk,"TR_METALIC_FURY",12; } } } - Id: 580016 AegisName: Thanos_Whip_AD Name: Thanatos Whip-AD Type: Weapon SubType: Whip Weight: 1000 Attack: 220 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10*(.@r/3); if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bLongAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; } } } - Id: 580017 AegisName: Adulter_F_C_Rope Name: Adulter Fides Chain Rope Type: Weapon SubType: Whip Weight: 1200 Attack: 170 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500; if (.@r>=11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 580018 AegisName: Adulter_F_Ribbon Name: Adulter Fides Ribbon Type: Weapon SubType: Whip Weight: 1000 Attack: 100 MagicAttack: 210 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_METALICSOUND",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_METALICSOUND",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; if (.@r>=11) { bonus2 bSkillAtk,"WM_METALICSOUND",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } - Id: 580019 AegisName: Vivatus_F_C_Rope Name: Vivatus Fides Chain Rope Type: Weapon SubType: Whip Weight: 1200 Attack: 170 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500; if (.@r>=11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 580020 AegisName: Vivatus_F_Ribbon Name: Vivatus Fides Ribbon Type: Weapon SubType: Whip Weight: 1000 Attack: 100 MagicAttack: 210 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"WM_METALICSOUND",10; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_METALICSOUND",20; if (.@r>=9) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; if (.@r>=11) { bonus2 bSkillAtk,"WM_METALICSOUND",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"WM_METALICSOUND",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 580021 AegisName: 2Para_Rope_DC Name: Paradise Dancer Rope Type: Weapon SubType: Whip Attack: 160 Range: 2 Jobs: BardDancer: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"DC_THROWARROW",10; if (BaseLevel>=90) bonus2 bSkillAtk,"DC_THROWARROW",15; - Id: 580022 AegisName: 3Para_Whip_WA Name: Paradise Wanderer Whip Type: Weapon SubType: Whip Attack: 180 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("DC_DANCINGLESSON"); bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (BaseLevel>=110) { bonus bLongAtkRate,15; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } } - Id: 580023 AegisName: 3Para_Rope_WA Name: Paradise Wanderer Rope Type: Weapon SubType: Whip Attack: 150 MagicAttack: 180 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("DC_DANCINGLESSON"); bonus bMatkRate,5; bonus2 bMagicAtkEle,Ele_All,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; bonus2 bSkillAtk,"WM_METALICSOUND",25; bonus2 bSkillAtk,"WM_REVERBERATION",25; if (BaseLevel>=110) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"WM_METALICSOUND",15; bonus2 bSkillAtk,"WM_REVERBERATION",15; } } } - Id: 580024 AegisName: RS_B_Whip Name: Rainstorm Booster Whip Type: Weapon SubType: Whip Attack: 150 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,2*getskilllv("DC_DANCINGLESSON"); if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; if (.@r>=13) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } } } } - Id: 580026 AegisName: Melon_Whip Name: Melon Whip Type: Weapon SubType: Whip Buy: 20 Weight: 500 Attack: 150 MagicAttack: 120 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 580027 AegisName: Barb_Wire_K_LT Name: Barbed Wire Whip-LT Type: Weapon SubType: Whip Weight: 1000 Attack: 160 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bMatk,230; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bSkillAtk,"WM_METALICSOUND",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; if (.@r>=9) { bonus2 bSkillFixedCast,"WM_REVERBERATION",-500; bonus2 bSkillCooldown,"WM_METALICSOUND",-2000; if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; bonus2 bSkillAtk,"WM_METALICSOUND",20; bonus2 bSkillAtk,"WM_REVERBERATION",20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_All,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bMagicAtkEle,Ele_All,4*(.@r/3); - Id: 580028 AegisName: Precision_Whip Name: Precision Whip Type: Weapon SubType: Whip Weight: 1400 Attack: 220 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"TR_ROSEBLOSSOM",7*(.@r/2); bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",7*(.@r/2); bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",7*(.@r/2); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 580030 AegisName: Glacier_Whip Name: Glacier Whip Type: Weapon SubType: Whip Weight: 1500 Attack: 210 MagicAttack: 210 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 580033 AegisName: D_Glacier_Whip Name: Dim Glacier Whip Type: Weapon SubType: Whip Weight: 1500 Attack: 210 MagicAttack: 210 Range: 2 Slots: 1 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 580034 AegisName: F_Ein_1HWHIP Name: Flush Safety Whip Type: Weapon SubType: Whip Weight: 1400 Attack: 200 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bLongAtkRate,10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM",20; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",20; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; if (.@r>=7) { bonus bVariableCastrate,-10; bonus bBaseAtk,70; if (.@r>=9) { bonus2 bAddSize,Size_All,15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; bonus2 bSkillUseSP,"TR_ROSEBLOSSOM",-25; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM_MELEE",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillUseSP,"TR_ROSEBLOSSOM",-25; bonus2 bSkillUseSP,"WM_SEVERE_RAINSTORM_MELEE",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",10; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; } } } } - Id: 580035 AegisName: Hs_Dc_Rope Name: Herosria Rope Type: Weapon SubType: Whip Weight: 1500 Attack: 110 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus2 bAddRace,RC_Player_Human,-5; bonus2 bAddRace,RC_Player_Doram,-5; bonus bDelayrate,5; bonus bVariableCastrate,-10; - Id: 580036 AegisName: aegis_580036 Name: Herosria Whip Type: Weapon SubType: Whip Weight: 1500 Attack: 100 MagicAttack: 130 Range: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bMagicAtkEle,Ele_Neutral,10; bonus bLongAtkRate,-5; bonus bShortAtkRate,-5; bonus bDelayrate,-10; bonus bVariableCastrate,5; - Id: 580037 AegisName: Crime_Whip Name: Crime Whip Type: Weapon SubType: Whip Weight: 1100 Attack: 120 MagicAttack: 220 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"TR_METALIC_FURY",5; if (.@r>=5) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,5; if (.@r>=9) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"TR_SOUNDBLEND",15; bonus2 bSkillAtk,"TR_METALIC_FURY",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 580038 AegisName: Light_Power_Spark Name: Light Power Spark Type: Weapon SubType: Whip Weight: 2000 Attack: 200 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",5; if (.@r>=5) { bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 580041 AegisName: aegis_580041 Name: 1Lv Whip Type: Weapon SubType: Whip Attack: 10 MagicAttack: 10 Range: 2 Slots: 4 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 580042 AegisName: aegis_580042 Name: 2Lv Whip Type: Weapon SubType: Whip Attack: 10 MagicAttack: 10 Range: 2 Slots: 4 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 580043 AegisName: aegis_580043 Name: 3Lv Whip Type: Weapon SubType: Whip Attack: 10 MagicAttack: 10 Range: 2 Slots: 4 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 580044 AegisName: aegis_580044 Name: 4Lv Whip Type: Weapon SubType: Whip Attack: 10 MagicAttack: 10 Range: 2 Slots: 4 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 580045 AegisName: aegis_580045 Name: Level 5 Whip # !todo check english name Type: Weapon SubType: Whip Attack: 10 MagicAttack: 10 Range: 2 Slots: 4 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 580046 AegisName: Mocadas_Whip Name: Muqaddas Syaraq Type: Weapon SubType: Whip Weight: 1100 Attack: 100 MagicAttack: 230 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,5; bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,10; if (.@r>=9) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; if (.@r>=11) { bonus2 bSkillAtk,"TR_METALIC_FURY",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,5; } } } } - Id: 580061 AegisName: Dimen_TR_Ribbon Name: Dimensions Musical Ribbon Type: Weapon SubType: Whip Weight: 1800 Attack: 100 MagicAttack: 240 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"TR_METALIC_FURY",15+5*(.@r/3); bonus2 bSkillAtk,"WM_REVERBERATION",25+7*(.@r/3); bonus bMatk,25*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_All,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"TR_METALIC_FURY",15; bonus2 bSkillAtk,"WM_REVERBERATION",45; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_METALIC_FURY",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 580062 AegisName: Dimen_TR_Rope Name: Dimensions Musical Rope Type: Weapon SubType: Whip Weight: 1800 Attack: 230 Range: 2 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Gender: Female Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15+5*(.@r/3); bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15+5*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,25; if (.@r>=9) { bonus bDelayrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"TR_ROSEBLOSSOM",15; bonus2 bSkillAtk,"TR_ROSEBLOSSOM_ATK",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 590000 AegisName: Boost_Hall Name: Booster Mace Type: Weapon SubType: Mace Attack: 160 MagicAttack: 160 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bMatk,160; bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Holy,3; bonus bAtkRate,3; bonus bMatk,2*.@r; bonus bBaseAtk,2*.@r; bonus bMatk,3*(min(BaseLevel,180)/15); bonus bBaseAtk,3*(min(BaseLevel,180)/15); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,getskilllv("HP_MEDITATIO"); } if (.@r>=9) { bonus2 bAddSize,Size_All,10; bonus2 bMagicAddSize,Size_All,10; } - Id: 590002 AegisName: Meteor_Striker Name: Meteor Striker Type: Weapon SubType: Mace Weight: 3000 Attack: 300 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bBaseAtk,.@r/2*10; } if (.@r>=3) { bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10; } if (.@r>=9) { bonus2 bSkillAtk,"NC_VULCANARM",10; bonus2 bSkillAtk,"NC_ARMSCANNON",10; } if (.@r>=11) { bonus bVariableCastrate,-15; } - Id: 590003 AegisName: Saint_Hall Name: Saint Mace Type: Weapon SubType: Mace Weight: 800 Attack: 170 MagicAttack: 165 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=9) { bonus bVariableCastrate,-10; } if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,10; } - Id: 590004 AegisName: Woe_Club_2_Z Name: Intermediate Guild Member's Morning Star Type: Weapon SubType: Mace Weight: 900 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: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus2 bAddEff,Eff_Stun,200*getskilllv("PR_MACEMASTERY"); bonus bAspdRate,10; } - Id: 590006 AegisName: Ep172_1h_Hammer Name: Envy Blunt Type: Weapon SubType: Mace Weight: 1500 Attack: 180 MagicAttack: 210 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15; bonus bMatk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",20; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",20; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillFixedCast,"AB_DUPLELIGHT",-500; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",35; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",35; } - Id: 590008 AegisName: AK_B_Mace Name: Arm Knuckle Booster Mace Type: Weapon SubType: Mace Attack: 400 Range: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,2; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,2*getskilllv("NC_MADOLICENCE"); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",25; bonus2 bSkillAtk,"NC_ARMSCANNON",25; bonus2 bSkillAtk,"NC_VULCANARM",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,20; bonus bDelayrate,-10; } if (.@r>=13) { bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; bonus2 bSkillAtk,"NC_ARMSCANNON",15; bonus2 bSkillAtk,"NC_VULCANARM",15; } - Id: 590009 AegisName: AC_B_Club Name: Acid Cannon Booster Club Type: Weapon SubType: Mace Attack: 190 Range: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,2; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,2*getskilllv("AM_LEARNINGPOTION"); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",25; bonus2 bSkillAtk,"GN_CARTCANNON",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,20; bonus bDelayrate,-10; } if (.@r>=13) { bonus2 bSkillAtk,"CR_ACIDDEMONSTRATION",15; bonus2 bSkillAtk,"GN_CARTCANNON",15; } - Id: 590010 AegisName: DD_B_Mace Name: Dupledex Booster Mace Type: Weapon SubType: Mace Attack: 190 Range: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bAtkRate,2; bonus bMatk,160+(3*.@r)+3*(min(BaseLevel,195)/15); bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,getskilllv("HP_MEDITATIO"); bonus bShortAtkRate,getskilllv("HP_MEDITATIO"); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus bDelayrate,-10; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25; bonus2 bSkillAtk,"AB_JUDEX",25; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Holy,15; } if (.@r>=13) { bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15; bonus2 bSkillAtk,"AB_JUDEX",15; } - Id: 590011 AegisName: Up_Meteor_Striker Name: Patent Meteor Striker Type: Weapon SubType: Mace Weight: 3500 Attack: 320 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_VULCANARM",.@r/3*10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",.@r/3*10; if (.@r>=7) { bonus2 bSkillAtk,"NC_VULCANARM",15; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; } if (.@r>=9) { bonus2 bSkillAtk,"NC_ARMSCANNON",25; } if (.@r>=11) { bonus bLongAtkRate,15; bonus bVariableCastrate,-15; } - Id: 590012 AegisName: Up_Saint_Hall Name: Patent Saint Mace Type: Weapon SubType: Mace Weight: 1000 Attack: 170 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bMatkRate,3; .@r = getrefine(); bonus2 bMagicAtkEle,Ele_Holy,.@r/2; bonus2 bSkillAtk,"AB_ADORAMUS",.@r/3*5; if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Holy,10; } if (.@r>=9) { bonus2 bMagicAddRace,RC_All,15; } if (.@r>=11) { bonus2 bSkillAtk,"AB_ADORAMUS",15; } - Id: 590014 AegisName: Meer_Sceptre Name: Sceptre of Exiled Kingdom Type: Weapon SubType: Mace Buy: 20 Weight: 2900 Attack: 200 MagicAttack: 360 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); bonus bInt,3; bonus bDex,5; skill "CR_GRANDCROSS",1; bonus2 bMagicAtkEle,Ele_Holy,10*.@r; if (.@r>=5) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkDef,5; } if (.@r>=7) skill "CR_GRANDCROSS",min(10,.@r); if (.@r>=9) { bonus bMaxHPrate,10; bonus bMaxSPrate,10; bonus bLongAtkDef,5; } if (.@r>=10) skill "BS_ADRENALINE",5; - Id: 590015 AegisName: Fourth_1h_Mace Name: Relapse Cross Type: Weapon SubType: Mace Weight: 1300 Attack: 190 MagicAttack: 210 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus2 bSkillAtk,"CD_FRAMEN",5*(.@r/2); bonus bHealPower,5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/4); - Id: 590016 AegisName: Poenitentia_Clava Name: Poenitentia Clava Type: Weapon SubType: Mace Weight: 1800 Attack: 205 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,10; bonus2 bSkillAtk,"MT_AXE_STOMP",10; bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",(.@r/2)*5; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"NC_VULCANARM",25; if (.@r>=11) { bonus2 bSkillAtk,"NC_ARMSCANNON",25; } } } if (.@g >= ENCHANTGRADE_D) { bonus bLongAtkRate,2; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,1; bonus2 bSkillAtk,"NC_ARMSCANNON",10; } } } - Id: 590017 AegisName: Poenitentia_Pendulus Name: Poenitentia Pendulus Type: Weapon SubType: Mace Weight: 1650 Attack: 195 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",10; bonus2 bSkillAtk,"GN_CART_TORNADO",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"GN_CART_TORNADO",25; if (.@r>=11) { bonus bShortAtkRate,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",5; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",8; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,2; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WIND",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_FIRE",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_WATER",10; bonus2 bSkillAtk,"BO_ACIDIFIED_ZONE_GROUND",10; } } } - Id: 590020 AegisName: Thanos_Hammer_AD Name: Thanos Hammer-AD Type: Weapon SubType: Mace Weight: 1000 Attack: 200 MagicAttack: 190 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bMatk,10*(.@r/2); bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",18*(.@r/3); bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",18*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus bAspdRate,10; if (.@r>=9) { bonus bMatkRate,5; bonus bAtkRate,5; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",30; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",30; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; bonus bShortAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; bonus2 bSkillAtk,"CD_PETITIO",10; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"CD_PETITIO",10; } } } - Id: 590021 AegisName: Adulter_F_Mace Name: Adulter Fides Mace Type: Weapon SubType: Mace Weight: 4000 Attack: 340 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NC_VULCANARM",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"NC_VULCANARM",20; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"NC_VULCANARM",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 590022 AegisName: Adulter_F_Hall Name: Adulter Fides Hall Type: Weapon SubType: Mace Weight: 3000 Attack: 230 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"GN_CART_TORNADO",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GN_CART_TORNADO",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GN_CART_TORNADO",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 590023 AegisName: Vivatus_F_Mace Name: Vivatus Fides Mace Type: Weapon SubType: Mace Weight: 4000 Attack: 340 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"NC_VULCANARM",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"NC_VULCANARM",20; if (.@r>=9) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"NC_VULCANARM",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"NC_VULCANARM",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 590024 AegisName: Vivatus_F_Hall Name: Vivatus Fides Scepter Type: Weapon SubType: Mace Weight: 3000 Attack: 230 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"GN_CART_TORNADO",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GN_CART_TORNADO",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GN_CART_TORNADO",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"GN_CART_TORNADO",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 590025 AegisName: 1Para_Mace Name: Paradise Mace Type: Weapon SubType: Mace Attack: 100 Range: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Acolyte: true Priest: true Monk: true Locations: Right_Hand: true WeaponLevel: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseLevel>=20) bonus bBaseAtk,15; if (BaseLevel>=30) bonus bBaseAtk,20; if (BaseLevel>=45) bonus bBaseAtk,25; - Id: 590026 AegisName: 2Para_Mace_AM Name: Paradise Alchemist Mace Type: Weapon SubType: Mace Attack: 160 Range: 1 Jobs: Alchemist: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) bonus2 bSkillAtk,"AM_ACIDTERROR",10; if (BaseLevel>=90) bonus2 bSkillAtk,"AM_ACIDTERROR",15; - Id: 590027 AegisName: 2Para_Mace_PR Name: Paradise Priest Mace Type: Weapon SubType: Mace Attack: 160 Range: 1 Jobs: Priest: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,10; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) bonus bCritAtkRate,5; if (BaseLevel>=90) bonus bCritAtkRate,10; - Id: 590028 AegisName: 3Para_Mace_GN Name: Paradise Genetic Mace Type: Weapon SubType: Mace Attack: 180 Range: 1 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("AM_LEARNINGPOTION"); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"GN_CARTCANNON",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) bonus2 bSkillAtk,"GN_CARTCANNON",15; } } - Id: 590029 AegisName: 3Para_Mace_AB Name: Paradise Arch Bishop Mace Type: Weapon SubType: Mace Attack: 180 MagicAttack: 180 Range: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("HP_MEDITATIO"); bonus bMatkRate,3; bonus bCritical,15; bonus bAspdRate,.@a; if (BaseLevel>=105) { bonus bVariableCastrate,-10; bonus bDelayrate,-10; bonus2 bSkillAtk,"PR_MAGNUS",25; bonus2 bSkillAtk,"AB_JUDEX",25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",25; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",25; if (BaseLevel>=110) { bonus2 bMagicAtkEle,Ele_Neutral,20; bonus2 bMagicAtkEle,Ele_Holy,20; bonus2 bAddSize,Size_All,15; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"PR_MAGNUS",15; bonus2 bSkillAtk,"AB_JUDEX",15; bonus2 bSkillAtk,"AB_DUPLELIGHT_MELEE",15; bonus2 bSkillAtk,"AB_DUPLELIGHT_MAGIC",15; } } } - Id: 590030 AegisName: Saint_Hall_LT Name: Saint Mace-LT Type: Weapon SubType: Mace Weight: 1000 Attack: 190 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,210; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAddRace,RC_All,15; bonus2 bMagicAddRace,RC_Player_Human,-15; bonus2 bMagicAddRace,RC_Player_Doram,-15; if (.@r>=11) { bonus2 bSkillAtk,"AB_ADORAMUS",30; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus2 bMagicAtkEle,Ele_Holy,(.@r/2); bonus2 bSkillAtk,"AB_ADORAMUS",5*(.@r/3); - Id: 590033 AegisName: Melon_Mace Name: Melon Mace Type: Weapon SubType: Mace Buy: 20 Weight: 1500 Attack: 150 MagicAttack: 110 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Monk: true Priest: true SuperNovice: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 590034 AegisName: Meteor_Striker_LT Name: Meteor Striker-LT Type: Weapon SubType: Mace Weight: 3500 Attack: 320 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",15; bonus2 bSkillAtk,"NC_VULCANARM",15; if (.@r>=9) { bonus bVariableCastrate,-15; bonus2 bSkillAtk,"NC_ARMSCANNON",25; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NC_ARMSCANNON",20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"NC_BOOSTKNUCKLE",10*(.@r/3); bonus2 bSkillAtk,"NC_VULCANARM",10*(.@r/3); - Id: 590036 AegisName: Wicked_Cross Name: Wicked Cross Type: Weapon SubType: Mace Weight: 1400 Attack: 150 MagicAttack: 230 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"CD_FRAMEN",7*(.@r/3); bonus2 bSkillAtk,"CD_ARBITRIUM",7*(.@r/3); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bSpl,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"CD_FRAMEN",10; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; } } } - Id: 590038 AegisName: Glacier_Mace Name: Glacier Mace Type: Weapon SubType: Mace Weight: 1800 Attack: 210 MagicAttack: 210 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: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 590039 AegisName: Glacier_M_Mace Name: Glacier Mechanic Mace Type: Weapon SubType: Mace Weight: 4000 Attack: 400 MagicAttack: 160 Range: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 590043 AegisName: Saphir_Hall_AD Name: Saphir Mace-OSAD Type: Weapon SubType: Mace Weight: 800 Attack: 185 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"GN_CARTCANNON",25; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"GN_CARTCANNON",20; } } } - Id: 590044 AegisName: Ultio_Spes_AD Name: Ultio-OSAD Type: Weapon SubType: Mace Weight: 1200 Attack: 150 MagicAttack: 170 Range: 1 Slots: 2 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"AB_JUDEX",25; bonus2 bSkillAtk,"AB_ADORAMUS",30; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Holy,15; bonus bDelayrate,-15; } } } - Id: 590045 AegisName: Punish_Hall Name: Punish Scepter Type: Weapon SubType: Mace Weight: 1500 Attack: 210 Range: 1 Slots: 2 Jobs: Monk: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"IQ_THIRD_PUNISH",5; if (.@r>=5) { bonus2 bSkillAtk,"IQ_THIRD_PUNISH",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"IQ_THIRD_PUNISH",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"IQ_FIRST_BRAND",15; bonus2 bSkillAtk,"IQ_THIRD_PUNISH",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 590046 AegisName: Evt_20th_Hall Name: Hall of Fame # !todo check english name Type: Weapon SubType: Mace Weight: 500 Attack: 50 MagicAttack: 50 Range: 1 Jobs: Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Monk: true Novice: true SuperNovice: true Priest: true Swordman: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 590047 AegisName: D_Glacier_Mace Name: Dim Glacier Mace Type: Weapon SubType: Mace Weight: 1800 Attack: 210 MagicAttack: 210 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: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 590048 AegisName: D_Glacier_M_Mace Name: Dim Glacier Mechanic Mace Type: Weapon SubType: Mace Weight: 4000 Attack: 400 MagicAttack: 160 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 590049 AegisName: F_Ein_1HHAMMER Name: Flush Rubber Hammer Type: Weapon SubType: Mace Weight: 1900 Attack: 170 Range: 1 Slots: 2 Jobs: Priest: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,210; bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus bHealPower,15; bonus2 bSkillAtk,"CD_ARBITRIUM",20; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",20; bonus2 bSkillAtk,"AB_ADORAMUS",20; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Holy,10; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"CD_ARBITRIUM",10; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",10; bonus2 bSkillAtk,"AB_ADORAMUS",15; bonus2 bSkillUseSP,"CD_ARBITRIUM",-25; bonus2 bSkillUseSP,"AB_ADORAMUS",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"CD_ARBITRIUM",10; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; bonus2 bSkillUseSP,"CD_ARBITRIUM",-25; bonus2 bSkillUseSP,"AB_ADORAMUS",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"CD_ARBITRIUM",10; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"CD_ARBITRIUM",10; bonus2 bSkillAtk,"CD_ARBITRIUM_ATK",10; bonus2 bSkillAtk,"AB_ADORAMUS",10; } } } } - Id: 590050 AegisName: Hs_Bs_Mace Name: Herosria Smith Mace Type: Weapon SubType: Mace Weight: 1500 Attack: 130 Range: 1 Jobs: Blacksmith: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus bShortAtkRate,-5; bonus bDelayrate,5; bonus bVariableCastrate,-10; - Id: 590051 AegisName: aegis_590051 Name: Herosria Alchemic Mace Type: Weapon SubType: Mace Weight: 1500 Attack: 130 Range: 1 Jobs: Alchemist: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bLongAtkRate,10; bonus bShortAtkRate,-5; bonus bAspdRate,-5; bonus bVariableCastrate,-10; - Id: 590052 AegisName: aegis_590052 Name: Herosria Monk Mace Type: Weapon SubType: Mace Weight: 1500 Attack: 110 Range: 1 Jobs: Monk: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bSubRace,RC_Player_Human,10; bonus2 bSubRace,RC_Player_Doram,10; bonus bLongAtkRate,-5; bonus bShortAtkRate,-5; bonus bDelayrate,5; bonus bVariableCastrate,-10; - Id: 590056 AegisName: aegis_590056 Name: 1Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Monk: true Novice: true SuperNovice: true Priest: true Swordman: true Locations: Right_Hand: true WeaponLevel: 1 Refineable: true - Id: 590057 AegisName: aegis_590057 Name: 2Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Monk: true Novice: true SuperNovice: true Priest: true Swordman: true Locations: Right_Hand: true WeaponLevel: 2 Refineable: true - Id: 590058 AegisName: aegis_590058 Name: 3Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Monk: true Novice: true SuperNovice: true Priest: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 Refineable: true - Id: 590059 AegisName: aegis_590059 Name: 4Lv One-handed Macee Type: Weapon SubType: Mace Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Monk: true Novice: true SuperNovice: true Priest: true Swordman: true Locations: Right_Hand: true WeaponLevel: 4 Refineable: true - Id: 590060 AegisName: aegis_590060 Name: Blunt weapon level 5 # !todo check english name Type: Weapon SubType: Mace Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Acolyte: true Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Monk: true Novice: true SuperNovice: true Priest: true Swordman: true Locations: Right_Hand: true WeaponLevel: 5 Refineable: true - Id: 590062 AegisName: Mocadas_Judgement Name: Muqaddas Daablunta Type: Weapon SubType: Mace Weight: 1200 Attack: 220 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",10; if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",10; if (.@r>=11) { bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 590063 AegisName: Mocadas_Hall Name: Muqaddas Ayyasy Type: Weapon SubType: Mace Weight: 1500 Attack: 220 Range: 1 Slots: 2 Jobs: SuperNovice: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",10; if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",10; if (.@r>=11) { bonus2 bSkillAtk,"HN_MEGA_SONIC_BLOW",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 590066 AegisName: aegis_590066 Name: Opened Illusion Iron Driver Type: Weapon SubType: Mace Weight: 1200 Attack: 255 MagicAttack: 255 Range: 1 Slots: 1 Jobs: Priest: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bVariableCastrate,-3*(.@r/2); bonus bAspdRate,3*(.@r/2); if (BaseLevel>=150) { bonus bBaseAtk,(min(BaseLevel,170)*3); bonus bMatk,(min(BaseLevel,170)*3); } if (.@r>=7) { bonus bVariableCastrate,-5; bonus bAspdRate,5; } if (.@r>=9) { bonus bAtkRate,5; bonus bMatkRate,5; } - Id: 590079 AegisName: Dimen_MT_Mace Name: Dimensions Mechanical Mace Type: Weapon SubType: Mace Weight: 2500 Attack: 320 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; bonus2 bSkillAtk,"MT_TRIPLE_LASER",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"MT_TRIPLE_LASER",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"MT_TRIPLE_LASER",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 590080 AegisName: Dimen_BO_Hall Name: Dimensions Biological Scepter Type: Weapon SubType: Mace Weight: 2500 Attack: 240 Range: 1 Slots: 2 Jobs: Alchemist: true Classes: Fourth: true Locations: Right_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",15+5*(.@r/3); bonus2 bSkillAtk,"GN_CART_TORNADO",25+7*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,25; if (.@r>=9) { bonus bDelayrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",15; bonus2 bSkillAtk,"GN_CART_TORNADO",45; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"BO_EXPLOSIVE_POWDER",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 600000 AegisName: IDTest_bothhand Name: IDTest bothhand Type: Weapon SubType: 2hSword Weight: 10 Attack: 100 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 1 # Flags: # BuyingStore: true Script: | bonus3 bAutoSpell,"MG_COLDBOLT",1,1; - Id: 600001 AegisName: Boost_TH_Sword Name: Booster Two-handed Sword Type: Weapon SubType: 2hSword Attack: 250 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bCritical,10; bonus bMaxHPrate,3; .@r = getrefine(); bonus bBaseAtk,.@r; bonus bBaseAtk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus bAspdRate,getskilllv("KN_TWOHANDQUICKEN"); } if (.@r>=9) { bonus bCritAtkRate,10; } - Id: 600004 AegisName: Dragonic_Slayer Name: Dragonic Slayer Type: Weapon SubType: 2hSword Weight: 1000 Attack: 180 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); if (.@r>=2) { bonus bMaxHPrate,.@r/2*3; bonus bMaxSPrate,.@r/2*3; } if (.@r>=3) { bonus2 bSkillAtk,"RK_DRAGONBREATH",.@r/3*5; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",.@r/3*5; } if (.@r>=9) { bonus bDelayrate,-10; } if (.@r>=11) { bonus bLongAtkRate,10; } - Id: 600005 AegisName: Woe_Twohand_Sword2_Z Name: Intermediate Guild Member's Craymore Type: Weapon SubType: 2hSword Weight: 1300 Attack: 175 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus "{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,10+(.@r-10); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10+(.@r-10); }",100,7000,BF_WEAPON; - Id: 600008 AegisName: Ep172_Bh_Sword Name: Hypocrisy Edge Type: Weapon SubType: 2hSword Weight: 3000 Attack: 280 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"RK_WINDCUTTER",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RK_WINDCUTTER",10; } if (.@r>=9) { bonus bDelayrate,-10; } if (.@r>=11) { bonus2 bSkillAtk,"RK_WINDCUTTER",15; } - Id: 600009 AegisName: Up_Oriental_Sword Name: Patent Oriental Sword Type: Weapon SubType: 2hSword Weight: 2000 Attack: 240 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); .@i = max(2,getskilllv("RK_SONICWAVE")); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RK_SONICWAVE",.@r/3*10; if (.@r>=7) { bonus bUnbreakableWeapon; bonus bAspdRate,10; } if (.@r>=9) { bonus5 bAutoSpell,"RK_SONICWAVE",.@i,20,BF_SHORT,1; } if (.@r>=11) { bonus bCritical,15; bonus bCritAtkRate,15; } - Id: 600011 AegisName: Death_Guidance_IL Name: Illusion Death Guidance Type: Weapon SubType: 2hSword Weight: 2000 Attack: 240 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Classes: Upper: true All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; if (.@r>=7) { bonus2 bSkillAtk,"RK_STORMBLAST",20; } if (.@r>=9) { autobonus "{ bonus2 bHPRegenRate,getrefine()*50,1000; }",30,4000,BF_WEAPON; } if (.@r>=11) { bonus bCritAtkRate,15; bonus bCritical,15; } - Id: 600012 AegisName: IW_B_T_Sword Name: Ignition Wave Booster Two-handed Sword Type: Weapon SubType: 2hSword Attack: 250 Range: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bCritical,15; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bAspdRate,getskilllv("KN_TWOHANDQUICKEN"); } if (.@r>=9) { bonus bCritAtkRate,10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",25; bonus2 bSkillAtk,"RK_SONICWAVE",25; bonus2 bSkillAtk,"RK_WINDCUTTER",25; bonus3 bAutoSpell,"RK_SONICWAVE",getskilllv("RK_SONICWAVE"),1; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bCritical,15; } if (.@r>=13) { bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; bonus2 bSkillAtk,"RK_SONICWAVE",15; bonus2 bSkillAtk,"RK_WINDCUTTER",15; } - Id: 600013 AegisName: Fourth_Bh_Sword Name: Fortified Claymore Type: Weapon SubType: 2hSword Weight: 2300 Attack: 250 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"DK_STORMSLASH",5*(.@r/2); bonus bShortAtkRate,2*(.@r/4); - Id: 600014 AegisName: Poenitentia_Ensis Name: Poenitentia Ensis Type: Weapon SubType: 2hSword Weight: 2200 Attack: 315 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"DK_STORMSLASH",10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"RK_IGNITIONBREAK",25; if (.@r>=11) { bonus2 bSkillCooldown,"RK_IGNITIONBREAK",-700; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"DK_STORMSLASH",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"DK_STORMSLASH",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,2; bonus2 bSkillAtk,"DK_STORMSLASH",12; } } } - Id: 600016 AegisName: Thanos_TSword_AD Name: Thanatos Great Sword-AD Type: Weapon SubType: 2hSword Weight: 2500 Attack: 240 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"RK_WINDCUTTER",10*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillAtk,"RK_WINDCUTTER",20; if (.@r>=9) { bonus bAtkRate,5; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bShortAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; } } } - Id: 600017 AegisName: Adulter_F_T_Sword Name: Adulter Fides Two-Handed Sword Type: Weapon SubType: 2hSword Weight: 4000 Attack: 300 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RK_WINDCUTTER",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RK_WINDCUTTER",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"RK_WINDCUTTER",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 600018 AegisName: Vivatus_F_T_Sword Name: Vivatus Fides Two-handed Sword Type: Weapon SubType: 2hSword Weight: 4000 Attack: 300 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"RK_WINDCUTTER",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RK_WINDCUTTER",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"RK_WINDCUTTER",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RK_WINDCUTTER",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 600020 AegisName: 2Para_T_Sword_KN Name: Paradise Knight Two-Handed Sword Type: Weapon SubType: 2hSword Attack: 180 Range: 1 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,10; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"KN_BOWLINGBASH",10; if (BaseLevel>=90) bonus2 bSkillAtk,"KN_BOWLINGBASH",15; - Id: 600021 AegisName: 3Para_T_Sword_RK Name: Paradise Rune Knight Two-Handed Sword Type: Weapon SubType: 2hSword Attack: 200 Range: 1 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("KN_TWOHANDQUICKEN"); bonus bCritical,15; bonus bAspdRate,.@a; if (BaseLevel>=105) { bonus bCritAtkRate,10; bonus2 bSkillAtk,"RK_IGNITIONBREAK",25; bonus2 bSkillAtk,"RK_SONICWAVE",25; if (BaseLevel>=110) { bonus bCritical,15; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"RK_IGNITIONBREAK",15; bonus2 bSkillAtk,"RK_SONICWAVE",15; } } } - Id: 600022 AegisName: Melon_Claymore Name: Melon Claymore Type: Weapon SubType: 2hSword Buy: 20 Weight: 3400 Attack: 280 MagicAttack: 230 Range: 1 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",50,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",30,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 600023 AegisName: Oriental_Sword_LT Name: Oriental Sword-LT Type: Weapon SubType: 2hSword Weight: 2000 Attack: 240 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillAtk,"RK_STORMBLAST",20; bonus2 bSkillAtk,"RK_SONICWAVE",20; if (.@r>=9) { bonus2 bSkillAtk,"RK_STORMBLAST",20; bonus2 bSkillAtk,"RK_SONICWAVE",20; if (.@r>=11) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; bonus bCritical,25; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bCritAtkRate,5*(.@r/3); - Id: 600024 AegisName: Dragonic_Slayer_LT Name: Dragonic Slayer-LT Type: Weapon SubType: 2hSword Weight: 2000 Attack: 200 Range: 1 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,5; if (BaseLevel>=210) { bonus bMaxHPrate,5; bonus bMaxSPrate,5; } if (.@r>=7) { bonus bDelayrate,-10; bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSubSize,Size_All,15; bonus bLongAtkRate,15; if (.@r>=11) { bonus bDelayrate,-7; bonus bMaxSPrate,5; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMaxHPrate,3; bonus bMaxSPrate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bMRes,30; bonus bRes,30; if (.@g >= ENCHANTGRADE_B) { bonus2 bSubEle,Ele_All,15; } } } bonus bMaxHPrate,5*(.@r/2); bonus bMaxSPrate,5*(.@r/2); bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",7*(.@r/3); bonus2 bSkillAtk,"RK_DRAGONBREATH",7*(.@r/3); - Id: 600025 AegisName: FullForce_ Name: Awakened Full Force Type: Weapon SubType: 2hSword Buy: 2000000 Weight: 2200 Attack: 300 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 99 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bSpeedRate,25; bonus2 bSubClass,Class_Boss,40; bonus bBaseAtk,pow(getrefine(),2)*4; - Id: 600027 AegisName: Glacier_T_Sword Name: Glacier Two-Handed Sword Type: Weapon SubType: 2hSword Weight: 4000 Attack: 300 MagicAttack: 270 Range: 1 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 600028 AegisName: Beam_Claymore_AD Name: Beam Claymore-OSAD Type: Weapon SubType: 2hSword Weight: 1800 Attack: 250 Range: 1 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,10; if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus bCritAtkRate,20; bonus2 bSkillAtk,"RK_STORMBLAST",25; if (.@r>=11) { bonus2 bAddSize,Size_Small,25; bonus2 bMagicAddSize,Size_Small,25; bonus2 bAddSize,Size_Medium,25; bonus2 bMagicAddSize,Size_Medium,25; } } } - Id: 600030 AegisName: D_Glacier_T_Sword Name: Dim Glacier Two-handed Sword Type: Weapon SubType: 2hSword Weight: 4000 Attack: 300 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 600031 AegisName: F_Ein_BHSWORD Name: Flush Claw Sword Type: Weapon SubType: 2hSword Weight: 3500 Attack: 320 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,10; bonus bAtkRate,15; bonus2 bSkillAtk,"DK_STORMSLASH",20; if (.@r>=7) { bonus bCritAtkRate,25; bonus bAspdRate,15; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus bCritAtkRate,15; bonus2 bSkillAtk,"DK_STORMSLASH",10; bonus2 bSkillUseSP,"DK_STORMSLASH",-15; if (.@r>=11) { bonus bDelayrate,-15; bonus bCritical,10; bonus2 bSkillAtk,"DK_STORMSLASH",10; bonus2 bSkillUseSP,"DK_STORMSLASH",-15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"DK_STORMSLASH",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"DK_STORMSLASH",10; } } } } - Id: 600032 AegisName: Hs_Kn_Zweihander Name: Herosria Zweihander Type: Weapon SubType: 2hSword Weight: 3000 Attack: 200 Range: 1 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,15; bonus bShortAtkRate,-7; bonus bAspdRate,15; bonus bMdef,-80; - Id: 600035 AegisName: aegis_600035 Name: 1Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 600036 AegisName: aegis_600036 Name: 2Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 600037 AegisName: aegis_600037 Name: 3Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 600038 AegisName: aegis_600038 Name: 4Lv Two-handed Swords Type: Weapon SubType: 2hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 600039 AegisName: aegis_600039 Name: Level 5 Two-Handed Sword # !todo check english name Type: Weapon SubType: 2hSword Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 600041 AegisName: Execution_Great_Sword Name: Execution Great Sword Type: Weapon SubType: 2hSword Weight: 4200 Attack: 280 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"DK_HACKANDSLASHER",5; if (.@r>=5) { bonus2 bSkillAtk,"DK_HACKANDSLASHER",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"DK_HACKANDSLASHER",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"DK_STORMSLASH",15; bonus2 bSkillAtk,"DK_HACKANDSLASHER",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 600054 AegisName: Dimen_DK_T_Sword Name: Dimensions Dragon Sword Type: Weapon SubType: 2hSword Weight: 3500 Attack: 350 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"DK_HACKANDSLASHER",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"DK_HACKANDSLASHER",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"DK_HACKANDSLASHER",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 600059 AegisName: Slayer_Furious Name: Furious Slayer Type: Weapon SubType: 2hSword Weight: 3500 Attack: 260 Range: 1 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; if (BaseLevel>=210) { bonus bAtkRate,7; bonus bBaseAtk,70; } if (BaseLevel>=220) { bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bCritAtkRate,10; if (.@r>=9) { bonus bAspdRate,15; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bCritAtkRate,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"DK_SERVANTWEAPON_ATK",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,4*(.@r/2); bonus bAtkRate,4*(.@r/2); } } } } - Id: 610000 AegisName: Boost_Katar Name: Booster Katar Type: Weapon SubType: Katar Attack: 150 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bAtkRate,2; bonus bCritAtkRate,3; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bBaseAtk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus bCritAtkRate,getskilllv("AS_KATAR"); } if (.@r>=9) { bonus bAtkRate,10; } - Id: 610003 AegisName: Blade_Katar Name: Blade Katar Type: Weapon SubType: Katar Weight: 1000 Attack: 185 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bAspdRate,.@r/3*2; if (.@r>=9) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; } if (.@r>=11) { bonus bDelayrate,-7; } - Id: 610004 AegisName: Woe_Katar2_Z Name: Intermediate Guild Member's Jamadhar Type: Weapon SubType: Katar Weight: 600 Attack: 145 Range: 1 Slots: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus "{ .@r = getrefine(); bonus bCritAtkRate,20+((.@r-10)*2); }",100,7000,BF_WEAPON; - Id: 610006 AegisName: Ep172_Bh_Katar Name: Avaritia Metal Type: Weapon SubType: Katar Weight: 1800 Attack: 220 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",10; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",15; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; } - Id: 610008 AegisName: Up_Shiver_Katar_K Name: Patent Shiver Katar Type: Weapon SubType: Katar Weight: 1400 Attack: 255 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"GC_CROSSIMPACT",.@r/3*10; if (.@r>=7) { bonus bCritAtkRate,15; bonus bAspdRate,10; } if (.@r>=9) { bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bAddRace,RC_Player_Human,25; bonus2 bAddRace,RC_Player_Doram,25; } if (.@r>=11) { bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; } - Id: 610009 AegisName: Up_Blade_Katar Name: Patent Blade Katar Type: Weapon SubType: Katar Weight: 1400 Attack: 275 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bAspdRate,(.@r*2/3); if (.@r>=7) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; } if (.@r>=9) { bonus bDelayrate,-12; } if (.@r>=11) { bonus bShortAtkRate,10; bonus bLongAtkRate,10; } - Id: 610012 AegisName: KatarOfCold_Icicle_IL Name: Illusion Katar of Frozen Icicle Type: Weapon SubType: Katar Weight: 1200 Attack: 220 Range: 1 Slots: 2 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,5*.@r; if (.@r>=7) { bonus2 bSkillAtk,"GC_CROSSIMPACT",20; } if (.@r>=9) { bonus bAspdRate,10; } if (.@r>=11) { bonus2 bAddRace,RC_Insect,10; bonus2 bAddEle,Ele_Fire,10; bonus bCritical,15; } - Id: 610013 AegisName: RC_B_Katar Name: Rolling Cross Booster Katar Type: Weapon SubType: Katar Attack: 200 Range: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bCritical,15; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bShortAtkRate,getskilllv("ASC_KATAR")*2; } if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"GC_CROSSIMPACT",25; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bDelayrate,-10; } if (.@r>=13) { bonus2 bSkillAtk,"GC_CROSSIMPACT",15; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; } - Id: 610015 AegisName: Fourth_Bh_Katar Name: Relapse Katar Type: Weapon SubType: Katar Weight: 1800 Attack: 260 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SHC_IMPACT_CRATER",5*(.@r/2); bonus bShortAtkRate,2*(.@r/4); - Id: 610016 AegisName: Poenitentia_Manus Name: Poenitentia Manus Type: Weapon SubType: Katar Weight: 1900 Attack: 280 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",3*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",30; if (.@r>=11) { bonus bDelayrate,-12; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"SHC_IMPACT_CRATER",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,1; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",12; } } } - Id: 610019 AegisName: Thanos_Katar_AD Name: Thanatos Katar-AD Type: Weapon SubType: Katar Weight: 2000 Attack: 250 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"GC_COUNTERSLASH",7*(.@r/3); if (.@r>=7) { bonus bDelayrate,-10; bonus2 bSkillAtk,"GC_COUNTERSLASH",15; if (.@r>=9) { bonus bAtkRate,5; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bShortAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; if (.@g >= ENCHANTGRADE_C) { bonus bDelayrate,-5; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; } } } - Id: 610020 AegisName: Adulter_F_Cakram Name: Adulter Fides Chakram Type: Weapon SubType: Katar Weight: 2000 Attack: 250 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 610021 AegisName: Adulter_F_Katar Name: Adulter Fides Katar Type: Weapon SubType: Katar Weight: 1700 Attack: 230 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"GC_COUNTERSLASH",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GC_COUNTERSLASH",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GC_COUNTERSLASH",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } - Id: 610022 AegisName: Vivatus_F_Cakram Name: Vivatus Fides Chakram Type: Weapon SubType: Katar Weight: 2000 Attack: 250 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 610023 AegisName: Vivatus_F_Katar Name: Vivatus Fides Katar Type: Weapon SubType: Katar Weight: 1700 Attack: 230 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"GC_COUNTERSLASH",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"GC_COUNTERSLASH",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"GC_COUNTERSLASH",25; if (.@r>=12) { bonus bShortAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"GC_COUNTERSLASH",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 610024 AegisName: 2Para_Katar1_AS Name: Paradise Assassin Chakram Type: Weapon SubType: Katar Attack: 180 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,5; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) bonus bCritAtkRate,5; if (BaseLevel>=90) bonus bCritAtkRate,10; - Id: 610025 AegisName: 2Para_Katar2_AS Name: Paradise Assassin Katar Type: Weapon SubType: Katar Attack: 180 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bHit,15; if (BaseLevel>=75) bonus2 bSkillAtk,"AS_SONICBLOW",10; if (BaseLevel>=90) bonus2 bSkillAtk,"AS_SONICBLOW",15; - Id: 610026 AegisName: 3Para_Katar1_GC Name: Paradise Guillotine Cross Chakram Type: Weapon SubType: Katar Attack: 200 Range: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("AS_KATAR"); bonus bCritical,10; bonus bShortAtkRate,.@a; if (BaseLevel>=105) { bonus bDelayrate,-5; bonus2 bSkillAtk,"GC_CROSSIMPACT",25; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"GC_CROSSIMPACT",15; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; } } } - Id: 610027 AegisName: 3Para_Katar2_GC Name: Paradise Guillotine Cross Katar Type: Weapon SubType: Katar Attack: 200 Range: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("AS_KATAR"); bonus bAtkRate,5; bonus bDelayrate,-1*.@a; if (BaseLevel>=105) { bonus bShortAtkRate,10; bonus2 bSkillAtk,"GC_COUNTERSLASH",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) bonus2 bSkillAtk,"GC_COUNTERSLASH",15; } } - Id: 610028 AegisName: CA_B_Katar Name: Counter Assault Booster Katar Type: Weapon SubType: Katar Attack: 240 Range: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bDelayrate,-(getskilllv("AS_KATAR")/2); if (.@r>=9) { bonus bShortAtkRate,10; bonus2 bSkillAtk,"ASC_METEORASSAULT",25; bonus2 bSkillAtk,"GC_COUNTERSLASH",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bDelayrate,-10; if (.@r>=13) { bonus2 bSkillAtk,"ASC_METEORASSAULT",15; bonus2 bSkillAtk,"GC_COUNTERSLASH",15; } } } } - Id: 610029 AegisName: Kings_Double_Edge_A Name: Awakened Old King's Double Edge Type: Weapon SubType: Katar Buy: 20 Weight: 1200 Attack: 240 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 130 Refineable: true Script: | .@r = getrefine(); .@b = BaseLevel; if (.@r>=9) .@b *= 3; else if (.@r>=7) .@b *= 2; bonus2 bSubRace,RC_Player_Human,30; bonus2 bSkillAtk,"GC_CROSSIMPACT",.@b; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",.@b; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",.@b; if (.@r>=10) { bonus bDefRatioAtkClass,Class_All; bonus2 bSkillCooldown,"GC_ROLLINGCUTTER",-200; } - Id: 610032 AegisName: Melon_Katar Name: Melon Katar Type: Weapon SubType: Katar Buy: 20 Weight: 2800 Attack: 150 MagicAttack: 250 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 610033 AegisName: Shiver_Katar_K_LT Name: Shiver Katar-LT Type: Weapon SubType: Katar Weight: 1400 Attack: 255 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillAtk,"GC_CROSSIMPACT",20; if (.@r>=9) { bonus2 bAddRace,RC_Brute,25; bonus2 bAddRace,RC_Dragon,25; bonus2 bAddRace,RC_DemiHuman,25; bonus2 bSkillAtk,"GC_CROSSIMPACT",25; if (.@r>=11) { bonus bCritical,15; bonus2 bSkillCooldown,"GC_DARKCROW",-10000; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bCritAtkRate,5*(.@r/3); - Id: 610034 AegisName: Blade_Katar_LT Name: Blade Katar-LT Type: Weapon SubType: Katar Weight: 1400 Attack: 275 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bAspdRate,10; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",25; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",25; if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",20; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; if (.@r>=11) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; bonus2 bSkillAtk,"GC_COUNTERSLASH",30; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bDelayrate,-2*(.@r/3); - Id: 610035 AegisName: Wicked_Katar Name: Wicked Katar Type: Weapon SubType: Katar Weight: 1900 Attack: 280 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SHC_IMPACT_CRATER",6*(.@r/2); bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",7*(.@r/3); bonus bShortAtkRate,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 610037 AegisName: Glacier_Katar Name: Glacier Katar Type: Weapon SubType: Katar Weight: 1200 Attack: 240 MagicAttack: 220 Range: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 610039 AegisName: Meuchler_AD Name: Meuchler-OSAD Type: Weapon SubType: Katar Weight: 1300 Attack: 190 Range: 1 Slots: 2 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; if (.@r>=7) { bonus bLongAtkRate,10; bonus bAspdRate,7; if (.@r>=9) { bonus bDelayrate,-15; bonus2 bSkillAtk,"GC_CROSSRIPPERSLASHER",45; if (.@r>=11) { bonus2 bAddSize,Size_Small,20; bonus2 bAddSize,Size_Medium,20; } } } - Id: 610041 AegisName: D_Glacier_Katar Name: Dim Glacier Katar Type: Weapon SubType: Katar Weight: 1200 Attack: 240 MagicAttack: 220 Range: 1 Slots: 1 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 610042 AegisName: F_Ein_BHKATAR Name: Flush Bolt Crusher Type: Weapon SubType: Katar Weight: 2000 Attack: 340 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,15; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",20; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",20; if (.@r>=7) { bonus bAspdRate,15; bonus bBaseAtk,90; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",15; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; bonus2 bSkillUseSP,"GC_ROLLINGCUTTER",-2; bonus2 bSkillUseSP,"SHC_IMPACT_CRATER",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; bonus2 bSkillUseSP,"GC_ROLLINGCUTTER",-2; bonus2 bSkillUseSP,"SHC_IMPACT_CRATER",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; bonus2 bSkillAtk,"GC_ROLLINGCUTTER",10; } } } } - Id: 610043 AegisName: aegis_610043 Name: Herosria Katar Type: Weapon SubType: Katar Weight: 3000 Attack: 200 Range: 1 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,15; bonus bShortAtkRate,-7; bonus bDelayrate,7; bonus bAspdRate,15; - Id: 610044 AegisName: The_Reaper Name: The Ripper Type: Weapon SubType: Katar Weight: 1100 Attack: 290 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",5; if (.@r>=5) { bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"SHC_IMPACT_CRATER",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus bShortAtkRate,15; bonus2 bSkillAtk,"SHC_IMPACT_CRATER",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 610045 AegisName: Shining_Light_Katar Name: Shining Light Katar Type: Weapon SubType: Katar Weight: 1000 Attack: 290 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",5; if (.@r>=5) { bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",15; bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 610047 AegisName: aegis_610047 Name: 1Lv Katar Type: Weapon SubType: Katar Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 610049 AegisName: aegis_610049 Name: 2Lv Katar Type: Weapon SubType: Katar Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 610050 AegisName: aegis_610050 Name: 3Lv Katar Type: Weapon SubType: Katar Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 610051 AegisName: aegis_610051 Name: 4Lv Katar Type: Weapon SubType: Katar Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 610052 AegisName: aegis_610052 Name: Level 5 Katar # !todo check english name Type: Weapon SubType: Katar Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Assassin: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 610054 AegisName: Mocadas_Katar Name: Muqaddas Dayats Type: Weapon SubType: Katar Weight: 1250 Attack: 300 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",10; if (.@r>=7) { bonus bShortAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",10; if (.@r>=11) { bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 610055 AegisName: aegis_610055 Name: Open Illusion Infiltrator Type: Weapon SubType: Katar Weight: 1200 Attack: 327 Range: 1 Slots: 2 Jobs: Assassin: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHit,3*(.@r/2); bonus bCritical,3*(.@r/2); if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) { bonus bAtkRate,5; if (BaseLevel>=150) { bonus bBaseAtk,(min(BaseLevel,170)*3); } } - Id: 610064 AegisName: Dimen_SHC_Katar Name: Dimensions Shadow Katar Type: Weapon SubType: Katar Weight: 2200 Attack: 320 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SHC_SAVAGE_IMPACT",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 610065 AegisName: Dimen_SHC_Cakram Name: Dimensions Shadow Chakram Type: Weapon SubType: Katar Weight: 2200 Attack: 320 Range: 1 Slots: 2 Jobs: Assassin: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SHC_ETERNAL_SLASH",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 620001 AegisName: Woe_Twohand_Axe2_Z Name: Intermediate Guild Member's Two-Handed Axe Type: Weapon SubType: 2hAxe Weight: 1500 Attack: 195 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Merchant: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100; bonus bAspdRate,10; } if (.@r>=10) autobonus3 "{ bonus bBreakWeaponRate,10000; }",10+(.@r-10),20000,"BS_OVERTHRUST"; - Id: 620003 AegisName: PT_B_Axe Name: Power Swing Booster Axe Type: Weapon SubType: 2hAxe Attack: 300 Range: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,2; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bShortAtkRate,getskilllv("BS_WEAPONRESEARCH"); } if (.@r>=9) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillAtk,"NC_AXETORNADO",25; bonus2 bSkillAtk,"NC_POWERSWING",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,20; bonus bDelayrate,-10; } if (.@r>=13) { bonus2 bSkillAtk,"NC_AXETORNADO",15; bonus2 bSkillAtk,"NC_POWERSWING",15; } - Id: 620004 AegisName: Up_Avenger Name: Patent Avenger Type: Weapon SubType: 2hAxe Weight: 7000 Attack: 290 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; } if (.@r>=9) { bonus2 bAddSize,Size_All,15; } if (.@r>=11) { bonus2 bSubEle,Ele_All,20; } - Id: 620005 AegisName: Fourth_Bh_Axe Name: Relapse Axe Type: Weapon SubType: 2hAxe Weight: 3000 Attack: 280 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"MT_AXE_STOMP",5*(.@r/2); bonus bShortAtkRate,2*(.@r/4); - Id: 620006 AegisName: Poenitentia_Ascia Name: Poenitentia Ascia Type: Weapon SubType: 2hAxe Weight: 3200 Attack: 325 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,10; bonus2 bSkillAtk,"MT_AXE_STOMP",10; bonus2 bSkillAtk,"NC_AXETORNADO",3*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"NC_AXETORNADO",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"MT_AXE_STOMP",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"MT_AXE_STOMP",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,2; bonus2 bSkillAtk,"MT_AXE_STOMP",12; } } } - Id: 620009 AegisName: Thanos_Axe_AD Name: Thanatos Axe-AD Type: Weapon SubType: 2hAxe Weight: 6000 Attack: 320 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"NC_AXETORNADO",7*(.@r/3); if (.@r>=7) { bonus bDelayrate,-10; bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; if (.@r>=9) { bonus2 bSkillAtk,"NC_AXEBOOMERANG",45; bonus2 bSkillAtk,"NC_AXETORNADO",15; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bShortAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,2; bonus2 bSkillAtk,"MT_AXE_STOMP",10; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"MT_AXE_STOMP",10; } } } - Id: 620010 AegisName: Doom_Slayer_IL Name: Illusion Doom Slayer Type: Weapon SubType: 2hAxe Weight: 7000 Attack: 250 Range: 1 Slots: 2 Jobs: Alchemist: true Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; if (readparam(bStr)>=100) { bonus bBaseAtk,75; } if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus bLongAtkRate,15; bonus bShortAtkRate,15; if (.@r>=11) { bonus bDelayrate,-10; } } } bonus bVariableCastrate,-5; - Id: 620011 AegisName: 2Para_T_Axe_BS Name: Paradise Blacksmith Two-Handed Axe Type: Weapon SubType: 2hAxe Attack: 180 Range: 1 Jobs: Blacksmith: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bCritical,10; if (BaseLevel>=60) bonus bShortAtkRate,10; if (BaseLevel>=75) bonus bCritAtkRate,5; if (BaseLevel>=90) bonus bCritAtkRate,10; - Id: 620012 AegisName: 3Para_T_Axe_NC Name: Paradise Mechanic Two-Handed Axe Type: Weapon SubType: 2hAxe Attack: 250 Range: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("BS_WEAPONRESEARCH"); bonus bAtkRate,5; bonus bShortAtkRate,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillAtk,"NC_AXETORNADO",25; bonus2 bSkillAtk,"NC_POWERSWING",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"NC_AXETORNADO",15; bonus2 bSkillAtk,"NC_POWERSWING",15; } } } - Id: 620014 AegisName: Melon_T_Axe Name: Melon Two-Handed Axe Type: Weapon SubType: 2hAxe Buy: 20 Weight: 4000 Attack: 320 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",50,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",30,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 620015 AegisName: Avenger_LT Name: Avenger-LT Type: Weapon SubType: 2hAxe Weight: 7000 Attack: 290 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillCooldown,"NC_AXETORNADO",-1000; bonus2 bSkillAtk,"NC_AXEBOOMERANG",40; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus bLongAtkRate,15; bonus bShortAtkRate,15; if (.@r>=11) { bonus2 bSubEle,Ele_All,20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bShortAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus2 bSkillAtk,"NC_AXETORNADO",10*(.@r/3); - Id: 620016 AegisName: Wicked_Axe Name: Wicked Axe Type: Weapon SubType: 2hAxe Weight: 3200 Attack: 300 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"MT_AXE_STOMP",7*(.@r/2); bonus2 bSkillAtk,"NC_AXETORNADO",8*(.@r/3); bonus bShortAtkRate,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"MT_AXE_STOMP",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 620017 AegisName: Glacier_T_Axe Name: Glacier Two-Handed Axe Type: Weapon SubType: 2hAxe Weight: 7000 Attack: 350 MagicAttack: 180 Range: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 620018 AegisName: Blasti_AD Name: Blasti-OSAD Type: Weapon SubType: 2hAxe Weight: 4500 Attack: 400 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; if (.@r>=7) { bonus2 bSubSize,Size_Medium,15; bonus2 bSubSize,Size_Large,15; bonus bAtkRate,5; if (.@r>=9) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NC_ARMSCANNON",25; if (.@r>=11) { bonus bDelayrate,-15; } } } - Id: 620019 AegisName: D_Glacier_T_Axe Name: Dim Glacier Mechanic Axe Type: Weapon SubType: 2hAxe Weight: 7000 Attack: 350 MagicAttack: 180 Range: 1 Slots: 1 Jobs: Blacksmith: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 620020 AegisName: F_Ein_BHAXE Name: Flush Saw Axe Type: Weapon SubType: 2hAxe Weight: 5000 Attack: 370 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,15; bonus bUnbreakableWeapon; bonus2 bSkillAtk,"MT_SPARK_BLASTER",20; bonus2 bSkillAtk,"NC_ARMSCANNON",20; if (.@r>=7) { bonus bAspdRate,15; bonus bBaseAtk,90; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus bLongAtkRate,15; bonus2 bSkillAtk,"MT_SPARK_BLASTER",10; bonus2 bSkillUseSP,"MT_SPARK_BLASTER",-25; bonus2 bSkillUseSP,"NC_ARMSCANNON",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"MT_SPARK_BLASTER",10; bonus2 bSkillAtk,"NC_ARMSCANNON",10; bonus2 bSkillUseSP,"MT_SPARK_BLASTER",-25; bonus2 bSkillUseSP,"NC_ARMSCANNON",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"MT_SPARK_BLASTER",10; bonus2 bSkillAtk,"NC_ARMSCANNON",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"MT_SPARK_BLASTER",10; bonus2 bSkillAtk,"NC_ARMSCANNON",10; } } } } - Id: 620021 AegisName: Hs_Bs_Giant_Axe Name: Herosria Giant Axe Type: Weapon SubType: 2hAxe Weight: 3000 Attack: 200 Range: 1 Jobs: Blacksmith: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bCritAtkRate,-7; bonus bShortAtkRate,15; bonus bAspdRate,-7; bonus bHit,50; - Id: 620022 AegisName: Divine_Buster Name: Divine Buster Type: Weapon SubType: 2hAxe Weight: 6600 Attack: 330 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"MT_MIGHTY_SMASH",5; if (.@r>=5) { bonus2 bSkillAtk,"MT_MIGHTY_SMASH",10; if (.@r>=7) { bonus bShortAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"MT_MIGHTY_SMASH",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"MT_AXE_STOMP",15; bonus2 bSkillAtk,"MT_MIGHTY_SMASH",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 620023 AegisName: aegis_620023 Name: 1Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 620024 AegisName: aegis_620024 Name: 2Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 620025 AegisName: aegis_620025 Name: 3Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 620026 AegisName: aegis_620026 Name: 4Lv Two-handed Axe Type: Weapon SubType: 2hAxe Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Alchemist: true Blacksmith: true Crusader: true Knight: true Merchant: true Swordman: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 620037 AegisName: Dimen_MT_Axe Name: Dimensions Machanical Axe Type: Weapon SubType: 2hAxe Weight: 4500 Attack: 380 Range: 1 Slots: 2 Jobs: Blacksmith: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"MT_MIGHTY_SMASH",15+5*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bShortAtkRate,25; if (.@r>=9) { bonus bUseSPrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"MT_MIGHTY_SMASH",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"MT_MIGHTY_SMASH",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 630001 AegisName: Woe_T_Lance2_Z Name: Intermediate Guild Member's Lance Type: Weapon SubType: 2hSpear Weight: 1300 Attack: 240 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Swordman: true Locations: Right_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus3 bAddEffOnSkill,"KN_PIERCE",Eff_Stun,1000+((.@r-10)*100); bonus3 bAddEffOnSkill,"CR_HOLYCROSS",Eff_Silence,1000+((.@r-10)*100); } - Id: 630003 AegisName: Ep172_Bh_Spear Name: Luxuria Pierce Type: Weapon SubType: 2hSpear Weight: 3300 Attack: 250 Range: 3 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; } if (.@r>=9) { bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; } if (.@r>=11) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",20; } - Id: 630006 AegisName: Brionac_IL Name: Illusion Brionac Type: Weapon SubType: 2hSpear Weight: 3000 Attack: 210 Range: 3 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"LG_OVERBRAND",5*(.@r/2); if (.@r>=7) { bonus2 bSkillAtk,"LG_OVERBRAND",20; } if (.@r>=9) { bonus2 bAddSize,Size_Medium,15; bonus2 bAddSize,Size_Large,15; } if (.@r>=11) { bonus2 bAddRace,RC_Fish,30; bonus2 bAddRace,RC_Demon,30; } - Id: 630007 AegisName: Zephyrus_IL Name: Illusion Zephyrus Type: Weapon SubType: 2hSpear Weight: 3300 Attack: 250 Range: 3 Slots: 2 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 120 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,4*.@r; bonus bLongAtkRate,3*(.@r/2); if (.@r>=7) { bonus2 bSkillAtk,"LK_SPIRALPIERCE",20; } if (.@r>=9) { bonus bLongAtkRate,5; } if (.@r>=11) { bonus2 bAddSize,Size_Medium,10; bonus2 bAddSize,Size_Large,10; bonus bHit,10; } - Id: 630008 AegisName: HB_B_T_Spear Name: Hundred Breath Booster Spear Type: Weapon SubType: 2hSpear Attack: 250 Range: 3 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2+(min(BaseLevel,195)/15); bonus bMaxHP,250*.@r; bonus bMaxSP,20*.@r; if (.@r>=7) { bonus bDelayrate,-3*getskilllv("RK_DRAGONTRAINING"); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",25; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",25; bonus2 bSkillAtk,"RK_DRAGONBREATH",25; } if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-2000; } if (.@r>=13) { bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; bonus2 bSkillAtk,"RK_DRAGONBREATH",15; } - Id: 630009 AegisName: Poenitentia_Catapulta Name: Poenitentia Catapulta Type: Weapon SubType: 2hSpear Weight: 2300 Attack: 320 Range: 3 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",25; if (.@r>=11) { bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-2000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",8; if (.@g >= ENCHANTGRADE_B) { bonus bPow,2; bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",12; } } } - Id: 630012 AegisName: Adulter_F_Lance Name: Adulter Fides Lance Type: Weapon SubType: 2hSpear Weight: 3800 Attack: 270 Range: 3 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",20; if (.@r>=9) { bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 630013 AegisName: Vivatus_F_Lance Name: Vivatus Fides Lance Type: Weapon SubType: 2hSpear Weight: 3800 Attack: 270 Range: 3 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"RK_HUNDREDSPEAR",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",20; if (.@r>=9) { bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-1500; if (.@r>=11) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 630014 AegisName: 2Para_Lance_KN Name: Paradise Knight Lance Type: Weapon SubType: 2hSpear Attack: 180 Range: 3 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus2 bSkillAtk,"KN_PIERCE",20; if (BaseLevel>=75) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",10; if (BaseLevel>=90) bonus2 bSkillAtk,"KN_BRANDISHSPEAR",15; - Id: 630015 AegisName: 3Para_Lance_RK Name: Paradise Rune Knight Lance Type: Weapon SubType: 2hSpear Attack: 200 Range: 3 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("RK_DRAGONTRAINING"); bonus bAtkRate,5; bonus bDelayrate,-3*.@a; if (BaseLevel>=105) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"RK_DRAGONBREATH",25; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",25; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",25; if (BaseLevel>=110) { bonus2 bSkillCooldown,"RK_HUNDREDSPEAR",-2000; bonus bLongAtkRate,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"RK_DRAGONBREATH",15; bonus2 bSkillAtk,"RK_DRAGONBREATH_WATER",15; bonus2 bSkillAtk,"RK_HUNDREDSPEAR",15; } } } - Id: 630017 AegisName: Melon_Lance Name: Melon Lance Type: Weapon SubType: 2hSpear Buy: 20 Weight: 3500 Attack: 200 MagicAttack: 230 Range: 3 Slots: 1 Jobs: Crusader: true Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",50,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",30,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 630018 AegisName: Glacier_Lance Name: Glacier Lance Type: Weapon SubType: 2hSpear Weight: 4500 Attack: 300 MagicAttack: 270 Range: 3 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 630019 AegisName: D_Glacier_Lance Name: Dim Glacier Lance Type: Weapon SubType: 2hSpear Weight: 4500 Attack: 300 MagicAttack: 270 Range: 3 Slots: 1 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 630020 AegisName: Hs_Kn_Lance Name: Herosria Lance Type: Weapon SubType: 2hSpear Weight: 3000 Attack: 200 Range: 3 Jobs: Knight: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-7; bonus bLongAtkRate,15; bonus bVariableCastrate,7; bonus bHit,50; - Id: 630021 AegisName: aegis_630021 Name: 1Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 630022 AegisName: aegis_630022 Name: 2Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 630023 AegisName: aegis_630023 Name: 3Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 630024 AegisName: aegis_630024 Name: 4Lv Two-handed Spear Type: Weapon SubType: 2hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 630025 AegisName: aegis_630025 Name: Level 5 Two-Handed Spear # !todo check english name Type: Weapon SubType: 2hSpear Attack: 10 MagicAttack: 10 Range: 3 Slots: 4 Jobs: Crusader: true Knight: true Swordman: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 630027 AegisName: Luppiter_Spear Name: Jupiter Spear Type: Weapon SubType: 2hSpear Weight: 5000 Attack: 300 Range: 3 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,5; bonus bPow,2; bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",5; if (.@r>=5) { bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",15; bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 630028 AegisName: Mocadas_Spear Name: Muqaddas Banjiiraa Type: Weapon SubType: 2hSpear Weight: 5000 Attack: 310 Range: 3 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; if (.@r>=11) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 630034 AegisName: aegis_630034 Name: Opened Illusion Spectral Spear Type: Weapon SubType: 2hSpear Weight: 2000 Attack: 383 Range: 3 Slots: 2 Jobs: Knight: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bHit,3*.@r; if (.@r>=7) bonus bAspdRate,5; if (.@r>=9) { bonus bAtkRate,5; if (BaseLevel>=150) { bonus bBaseAtk,(min(BaseLevel,170)*3); } } - Id: 630041 AegisName: Dimen_DK_Lance Name: Dimensions Dragon Lance Type: Weapon SubType: 2hSpear Weight: 6500 Attack: 350 Range: 3 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMaxHPrate,5; bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"DK_DRAGONIC_BREATH",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 630042 AegisName: aegis_630042 Name: Trident Type: Weapon SubType: 2hSpear 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: 630045 AegisName: Trident_Furious Name: Furious Trident Type: Weapon SubType: 2hSpear Weight: 8500 Attack: 260 Range: 3 Slots: 2 Jobs: Knight: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5; if (BaseLevel>=210) { bonus bAtkRate,7; bonus bBaseAtk,70; } if (BaseLevel>=220) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"DK_MADNESS_CRUSHER",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,4*(.@r/2); bonus bAtkRate,4*(.@r/2); } } } } - Id: 640000 AegisName: Boost_Staff Name: Booster Staff Type: Weapon SubType: 2hStaff Attack: 100 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus2 bMagicAtkEle,Ele_Fire,3; .@r = getrefine(); bonus bMatk,.@r*3; bonus bMatk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,getskilllv("HW_MAGICPOWER"); } if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Water,10; } - Id: 640001 AegisName: Woe_T_Staff2_Z Name: Intermediate Guild Member's Destruction Staff Type: Weapon SubType: 2hStaff Weight: 800 Attack: 70 MagicAttack: 200 Range: 1 Slots: 1 Jobs: Priest: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bMagicAddRace,RC_Player_Human,15+.@r; bonus2 bMagicAddRace,RC_Player_Doram,15+.@r; bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,10; bonus2 bSkillAtk,"WZ_METEOR",3*.@r; bonus2 bSkillAtk,"WZ_STORMGUST",3*.@r; bonus bMaxHPrate,-2*.@r; bonus bMatk,5*(.@r/2); if (.@r>=7) { bonus2 bIgnoreMdefRaceRate,RC_Player_Human,10; bonus2 bIgnoreMdefRaceRate,RC_Player_Doram,10; } if (.@r>=9) { bonus2 bMagicAddRace,RC_Player_Human,5; bonus2 bMagicAddRace,RC_Player_Doram,5; } - Id: 640002 AegisName: Virgo_Divine_Cross_J Name: Virgo Divine Cross Type: Weapon SubType: 2hStaff Buy: 20 Weight: 100 MagicAttack: 10 Range: 1 Slots: 1 Jobs: Acolyte: true Monk: true Priest: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatk,50+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Priest) { skill "ALL_ODINS_POWER",2; bonus bMatkRate,25; bonus2 bSubClass,Class_Boss,50; bonus bHealPower,30; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; } } - Id: 640004 AegisName: Blue_Crystal_Staff Name: Blue Crystal Staff Type: Weapon SubType: 2hStaff Weight: 800 Attack: 100 MagicAttack: 200 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*10; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Water,7; } if (.@r>=11) { bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus2 bMagicAddEle,Ele_Fire,7; } - Id: 640005 AegisName: Ep172_Bh_Staff Name: Pride Stone Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 180 MagicAttack: 320 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus bVariableCastrate,-3*(.@r/3); bonus bMatk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WL_JACKFROST",10; bonus2 bSkillAtk,"WL_COMET",10; } if (.@r>=9) { bonus2 bSkillCooldown,"WL_JACKFROST",-1500; bonus2 bSkillCooldown,"WL_COMET",-10000; } if (.@r>=11) { bonus2 bSkillAtk,"WL_JACKFROST",20; bonus2 bSkillAtk,"WL_COMET",20; } - Id: 640006 AegisName: Pisces_Staff_O_S_J Name: Pisces Staff of Soul Type: Weapon SubType: 2hStaff Buy: 20 Weight: 300 MagicAttack: 10 Range: 1 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Novice: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatk,50+BaseLevel; bonus bDelayrate,-10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Sage) { bonus bAspdRate,10; bonus bMatkRate,25; bonus2 bSkillAtk,"MG_FIREBOLT",100; bonus2 bSkillAtk,"MG_COLDBOLT",100; bonus2 bSkillAtk,"MG_LIGHTNINGBOLT",100; bonus2 bSkillAtk,"WZ_EARTHSPIKE",100; bonus2 bSubEle,Ele_Fire,10; bonus2 bSubEle,Ele_Water,10; bonus2 bSubEle,Ele_Wind,10; bonus2 bSubEle,Ele_Earth,10; bonus2 bSubClass,Class_Boss,40; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; } } - Id: 640009 AegisName: CS_B_Staff Name: Crimson Strain Booster Staff Type: Weapon SubType: 2hStaff Attack: 150 Range: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,230+(3*.@r)+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,getskilllv("HW_MAGICPOWER"); bonus2 bMagicAtkEle,Ele_Fire,getskilllv("HW_MAGICPOWER"); bonus2 bMagicAtkEle,Ele_Neutral,getskilllv("HW_MAGICPOWER"); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"WL_EARTHSTRAIN",25; bonus2 bSkillAtk,"WL_CRIMSONROCK",25; bonus2 bSkillAtk,"WL_COMET",25; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Neutral,15; } if (.@r>=13) { bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; bonus2 bSkillAtk,"WL_COMET",15; } - Id: 640010 AegisName: CJ_B_Staff Name: Chain Jack Booster Staff Type: Weapon SubType: 2hStaff Attack: 150 Range: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,230+(3*.@r)+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Water,getskilllv("HW_MAGICPOWER"); bonus2 bMagicAtkEle,Ele_Wind,getskilllv("HW_MAGICPOWER"); bonus2 bMagicAtkEle,Ele_Ghost,getskilllv("HW_MAGICPOWER"); } if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",25; bonus2 bSkillAtk,"WL_JACKFROST",25; bonus2 bSkillAtk,"WL_SOULEXPANSION",25; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Ghost,15; } if (.@r>=13) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",15; bonus2 bSkillAtk,"WL_JACKFROST",15; bonus2 bSkillAtk,"WL_SOULEXPANSION",15; } - Id: 640011 AegisName: Up_Iron_Staff Name: Patent Iron Staff Type: Weapon SubType: 2hStaff Weight: 1000 Attack: 100 MagicAttack: 235 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_EARTHSTRAIN",.@r/3*12; if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; } if (.@r>=9) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; bonus bVariableCastrate,-5; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; } - Id: 640012 AegisName: Up_Blue_Crystal_Staff Name: Patent Blue Crystal Staff Type: Weapon SubType: 2hStaff Weight: 1000 Attack: 100 MagicAttack: 235 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bMatk,.@r/2*15; bonus2 bSkillAtk,"WL_JACKFROST",.@r/3*12; if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; } if (.@r>=9) { bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus bDelayrate,-5; } if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",15; } - Id: 640013 AegisName: Fourth_Bh_Staff Name: Fortified Staff Type: Weapon SubType: 2hStaff Weight: 2100 Attack: 140 MagicAttack: 240 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"AG_FROZEN_SLASH",5*(.@r/2); bonus2 bMagicAtkEle,Ele_All,2*(.@r/4); - Id: 640014 AegisName: Poenitentia_Termes Name: Poenitentia Termes Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 170 MagicAttack: 300 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10; bonus2 bSkillAtk,"AG_FROZEN_SLASH",10; bonus2 bSkillAtk,"WL_FROSTMISTY",3*(.@r/2); bonus2 bSkillAtk,"WL_CRIMSONROCK",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"WL_FROSTMISTY",25; bonus2 bSkillAtk,"WL_CRIMSONROCK",25; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"AG_CRIMSON_ARROW",5; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",5; bonus2 bSkillAtk,"AG_FROZEN_SLASH",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",8; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",8; bonus2 bSkillAtk,"AG_FROZEN_SLASH",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,2; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",12; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",12; bonus2 bSkillAtk,"AG_FROZEN_SLASH",12; } } } - Id: 640015 AegisName: Poenitentia_Virga Name: Poenitentia Virga Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 170 MagicAttack: 300 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"AG_STORM_CANNON",10; bonus2 bSkillAtk,"AG_ROCK_DOWN",10; bonus2 bSkillAtk,"WL_EARTHSTRAIN",3*(.@r/2); bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",3*(.@r/2); if (.@r>=7) { bonus bVariableCastrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"WL_EARTHSTRAIN",25; bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",25; if (.@r>=11) { bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Wind,10; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"AG_STORM_CANNON",5; bonus2 bSkillAtk,"AG_ROCK_DOWN",5; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus2 bSkillAtk,"AG_STORM_CANNON",8; bonus2 bSkillAtk,"AG_ROCK_DOWN",8; if (.@g >= ENCHANTGRADE_B) { bonus bSpl,2; bonus2 bSkillAtk,"AG_STORM_CANNON",12; bonus2 bSkillAtk,"AG_ROCK_DOWN",12; } } } - Id: 640017 AegisName: Thanos_Rod_AD Name: Thanatos Two-handed Staff-AD Type: Weapon SubType: 2hStaff Weight: 1400 Attack: 150 MagicAttack: 300 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; autobonus "{ bonus2 bHPRegenRate,1000,1000; bonus2 bSPRegenRate,100,1000; }",10,4000,BF_MAGIC; bonus bMatk,10*(.@r/2); bonus2 bSkillAtk,"WL_CRIMSONROCK",10*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus bDelayrate,-10; if (.@r>=9) { bonus2 bSkillAtk,"WL_EARTHSTRAIN",40; bonus2 bSkillAtk,"WL_CRIMSONROCK",15; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSubEle,Ele_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,2; bonus2 bSkillAtk,"AG_STRANTUM_TREMOR",10; bonus2 bSkillAtk,"AG_FLORAL_FLARE_ROAD",10; if (.@g >= ENCHANTGRADE_C) { bonus bSMatk,1; bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"AG_STRANTUM_TREMOR",10; bonus2 bSkillAtk,"AG_FLORAL_FLARE_ROAD",10; } } } - Id: 640019 AegisName: Adulter_F_T_Staff Name: Adulter Fides Two-Handed Staff Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 200 MagicAttack: 340 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"WL_COMET",10; bonus bMatk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WL_COMET",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"WL_COMET",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } - Id: 640020 AegisName: Adulter_F_Rod Name: Adulter Fides Rod Type: Weapon SubType: 2hStaff Weight: 1900 Attack: 200 MagicAttack: 340 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus bMatk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WL_SOULEXPANSION",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"WL_SOULEXPANSION",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Ghost,15; } } } } - Id: 640021 AegisName: Vivatus_F_T_Staff Name: Vivatus Fides Two-handed Staff Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 200 MagicAttack: 340 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"WL_COMET",10; bonus bMatk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WL_COMET",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"WL_COMET",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Neutral,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"WL_COMET",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 640022 AegisName: Vivatus_F_Rod Name: Vivatus Fides Rod Type: Weapon SubType: 2hStaff Weight: 1900 Attack: 200 MagicAttack: 340 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"WL_SOULEXPANSION",10; bonus bMatk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WL_SOULEXPANSION",20; if (.@r>=9) { bonus2 bMagicAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"WL_SOULEXPANSION",25; if (.@r>=12) { bonus2 bMagicAtkEle,Ele_Ghost,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bMagicAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"WL_SOULEXPANSION",15; if (.@g >= ENCHANTGRADE_B) { bonus bMatkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bSMatk,(.@r/3); bonus bSpl,(.@r/3); } } } - Id: 640023 AegisName: 3Para_Staff_WL Name: Paradise Warlock Staff Type: Weapon SubType: 2hStaff Attack: 150 MagicAttack: 200 Range: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("HW_MAGICPOWER"); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bVariableCastrate,-1*.@a; if (BaseLevel>=105) { bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSkillAtk,"WL_CRIMSONROCK",25; bonus2 bSkillAtk,"WL_EARTHSTRAIN",25; if (BaseLevel>=110) { bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"WL_CRIMSONROCK",15; bonus2 bSkillAtk,"WL_EARTHSTRAIN",15; } } } - Id: 640024 AegisName: 3Para_Wand_WL Name: Paradise Warlock Wand Type: Weapon SubType: 2hStaff Attack: 150 MagicAttack: 200 Range: 1 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("HW_MAGICPOWER"); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bVariableCastrate,-1*.@a; if (BaseLevel>=105) { bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Ghost,10; bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",25; bonus2 bSkillAtk,"WL_SOULEXPANSION",25; if (BaseLevel>=110) { bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",15; bonus2 bSkillAtk,"WL_SOULEXPANSION",15; } } } - Id: 640025 AegisName: 3Para_Staff_SP Name: Paradise Soul Reaper Staff Type: Weapon SubType: 2hStaff Attack: 150 MagicAttack: 200 Range: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("TK_SPTIME"); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bVariableCastrate,-1*.@a; if (BaseLevel>=105) { bonus2 bMagicAtkEle,Ele_All,10; bonus2 bSkillAtk,"SP_SPA",25; bonus2 bSkillAtk,"SP_SWHOO",25; if (BaseLevel>=110) { bonus bVariableCastrate,-10; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"SP_SPA",15; bonus2 bSkillAtk,"SP_SWHOO",15; } } } - Id: 640026 AegisName: 3Para_Rod_SP Name: Paradise Soul Reaper Soulstick Type: Weapon SubType: 2hStaff Attack: 150 MagicAttack: 200 Range: 1 Jobs: SoulLinker: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("TK_SPTIME"); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bVariableCastrate,-1*.@a; if (BaseLevel>=105) { bonus2 bMagicAtkEle,Ele_Dark,15; bonus2 bSkillAtk,"SP_CURSEEXPLOSION",25; if (BaseLevel>=110) { bonus2 bSkillCooldown,"SP_SOULCURSE",-2000; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) bonus2 bSkillAtk,"SP_CURSEEXPLOSION",15; } } - Id: 640027 AegisName: Iron_Staff_LT Name: Iron Staff-LT Type: Weapon SubType: 2hStaff Weight: 1000 Attack: 100 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,235; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,20; bonus2 bMagicAtkEle,Ele_Earth,20; bonus2 bMagicAtkEle,Ele_Neutral,20; bonus bVariableCastrate,-15; if (.@r>=9) { bonus2 bSkillCooldown,"WL_EARTHSTRAIN",-1000; bonus2 bSkillAtk,"WL_COMET",30; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,20; bonus2 bSkillAtk,"WL_CRIMSONROCK",30; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Earth,15; bonus2 bMagicAtkEle,Ele_Neutral,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"HW_GRAVITATION",12*(.@r/3); bonus2 bSkillAtk,"WL_EARTHSTRAIN",12*(.@r/3); - Id: 640028 AegisName: Blue_Crystal_Staff_LT Name: Blue Crystal Staff-LT Type: Weapon SubType: 2hStaff Weight: 1000 Attack: 100 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bMatk,235; if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus bVariableCastrate,-10; if (.@r>=9) { bonus bDelayrate,-5; bonus2 bSkillCooldown,"WL_JACKFROST",-1000; bonus2 bSkillAtk,"WL_SOULEXPANSION",30; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_CHAINLIGHTNING_ATK",30; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Ghost,15; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"WL_JACKFROST",12*(.@r/3); - Id: 640030 AegisName: Melon_Staff Name: Melon Staff Type: Weapon SubType: 2hStaff Buy: 20 Weight: 2400 Attack: 120 MagicAttack: 270 Range: 1 Slots: 1 Jobs: Monk: true Priest: true Sage: true SoulLinker: true SuperNovice: true Wizard: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",50,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",30,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus bHealPower,6*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 640031 AegisName: Solid_Staff Name: Solid Staff Type: Weapon SubType: 2hStaff Weight: 2200 Attack: 150 MagicAttack: 290 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",6*(.@r/2); bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",6*(.@r/2); bonus2 bSkillAtk,"AG_FROZEN_SLASH",6*(.@r/2); bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT",5*(.@r/3); bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT_ATK",5*(.@r/3); bonus2 bMagicAtkEle,Ele_All,3*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bSpl,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10; bonus2 bSkillAtk,"AG_FROZEN_SLASH",10; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; } } } - Id: 640033 AegisName: Glacier_Staff Name: Glacier Staff Type: Weapon SubType: 2hStaff Weight: 2400 Attack: 150 MagicAttack: 290 Range: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 640034 AegisName: D_Glacier_Staff Name: Dim Glacier Staff Type: Weapon SubType: 2hStaff Weight: 2400 Attack: 150 MagicAttack: 290 Range: 1 Slots: 1 Jobs: Acolyte: true Mage: true Monk: true Priest: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 640035 AegisName: F_Ein_BHSTAFF Name: Flush Detecting Staff Type: Weapon SubType: 2hStaff Weight: 1200 Attack: 180 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,350; bonus bUnbreakableWeapon; bonus bMatkRate,10; bonus2 bSkillAtk,"AG_DESTRUCTIVE_HURRICANE",20; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",20; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",20; bonus2 bSkillAtk,"AG_STORM_CANNON",20; bonus2 bSkillAtk,"AG_ALL_BLOOM",20; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK",20; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK2",20; if (.@r>=7) { bonus bVariableCastrate,-15; bonus bMatk,90; if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAddSize,Size_All,20; bonus2 bSkillAtk,"AG_DESTRUCTIVE_HURRICANE",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10; bonus2 bSkillAtk,"AG_STORM_CANNON",10; bonus2 bSkillAtk,"AG_ALL_BLOOM",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK2",10; bonus2 bSkillUseSP,"AG_DESTRUCTIVE_HURRICANE",-25; bonus2 bSkillUseSP,"AG_CRIMSON_ARROW",-25; bonus2 bSkillUseSP,"AG_STORM_CANNON",-25; bonus2 bSkillUseSP,"AG_ALL_BLOOM",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"AG_DESTRUCTIVE_HURRICANE",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10; bonus2 bSkillAtk,"AG_STORM_CANNON",10; bonus2 bSkillAtk,"AG_ALL_BLOOM",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK2",10; bonus2 bSkillUseSP,"AG_DESTRUCTIVE_HURRICANE",-25; bonus2 bSkillUseSP,"AG_CRIMSON_ARROW",-25; bonus2 bSkillUseSP,"AG_STORM_CANNON",-25; bonus2 bSkillUseSP,"AG_ALL_BLOOM",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"AG_DESTRUCTIVE_HURRICANE",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10; bonus2 bSkillAtk,"AG_STORM_CANNON",10; bonus2 bSkillAtk,"AG_ALL_BLOOM",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK2",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"AG_DESTRUCTIVE_HURRICANE",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW",10; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",10; bonus2 bSkillAtk,"AG_STORM_CANNON",10; bonus2 bSkillAtk,"AG_ALL_BLOOM",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK",10; bonus2 bSkillAtk,"AG_ALL_BLOOM_ATK2",10; } } } } - Id: 640036 AegisName: Devil_Wing_Staff Name: Devil Wing Staff Type: Weapon SubType: 2hStaff Weight: 1400 Attack: 95 MagicAttack: 290 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",5; if (.@r>=5) { bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Dark,5; bonus2 bMagicAtkEle,Ele_Ghost,5; if (.@r>=9) { bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"AG_MYSTERY_ILLUSION",15; bonus2 bSkillAtk,"AG_SOUL_VC_STRIKE",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Dark,10; bonus2 bMagicAtkEle,Ele_Ghost,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 640037 AegisName: Destiny_Staff Name: Destiny Staff Type: Weapon SubType: 2hStaff Weight: 1200 Attack: 110 MagicAttack: 290 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"AG_FROZEN_SLASH",5; if (.@r>=5) { bonus2 bSkillAtk,"AG_FROZEN_SLASH",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Water,5; if (.@r>=9) { bonus2 bSkillAtk,"AG_FROZEN_SLASH",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"AG_RAIN_OF_CRYSTAL",15; bonus2 bSkillAtk,"AG_FROZEN_SLASH",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Water,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 640038 AegisName: aegis_640038 Name: Herosria Wizardry Staff Type: Weapon SubType: 2hStaff Weight: 3000 Attack: 100 MagicAttack: 200 Range: 1 Jobs: Wizard: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,-7; bonus2 bMagicAtkEle,Ele_Water,15; bonus2 bMagicAtkEle,Ele_Fire,15; bonus2 bMagicAtkEle,Ele_Earth,-7; bonus bDelayrate,-15; bonus bVariableCastrate,7; - Id: 640039 AegisName: aegis_640039 Name: Herosria Magical Staff Type: Weapon SubType: 2hStaff Weight: 3000 Attack: 100 MagicAttack: 200 Range: 1 Jobs: Wizard: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus2 bMagicAtkEle,Ele_Wind,15; bonus2 bMagicAtkEle,Ele_Water,-7; bonus2 bMagicAtkEle,Ele_Fire,-7; bonus2 bMagicAtkEle,Ele_Earth,15; bonus bDelayrate,7; bonus bVariableCastrate,-15; - Id: 640041 AegisName: aegis_640041 Name: 1Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 640042 AegisName: aegis_640042 Name: 2Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 640043 AegisName: aegis_640043 Name: 3Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 640044 AegisName: aegis_640044 Name: 4Lv Two-handed Staff Type: Weapon SubType: 2hStaff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 640045 AegisName: aegis_640045 Name: Level 5 Two-Handed Staff # !todo check english name Type: Weapon SubType: 2hStaff Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: Mage: true Sage: true SoulLinker: true Wizard: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 640046 AegisName: Mocadas_Stem Name: Muqaddas Jaydukhar Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 80 MagicAttack: 300 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus2 bSkillAtk,"AG_VIOLENT_QUAKE",10; bonus2 bSkillAtk,"AG_VIOLENT_QUAKE_ATK",10; bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT",10; bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT_ATK",10; bonus2 bSkillAtk,"AG_FROZEN_SLASH",10; bonus2 bSkillAtk,"AG_ROCK_DOWN",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Earth,10; if (.@r>=9) { bonus2 bSkillAtk,"AG_VIOLENT_QUAKE",10; bonus2 bSkillAtk,"AG_VIOLENT_QUAKE_ATK",10; bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT",10; bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT_ATK",10; bonus2 bSkillAtk,"AG_FROZEN_SLASH",10; bonus2 bSkillAtk,"AG_ROCK_DOWN",10; if (.@r>=11) { bonus2 bSkillAtk,"AG_VIOLENT_QUAKE",10; bonus2 bSkillAtk,"AG_VIOLENT_QUAKE_ATK",10; bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT",10; bonus2 bSkillAtk,"AG_CRYSTAL_IMPACT_ATK",10; bonus2 bSkillAtk,"AG_FROZEN_SLASH",10; bonus2 bSkillAtk,"AG_ROCK_DOWN",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,5; } } } } - Id: 640047 AegisName: aegis_640047 Name: Opened Illusion Wizardry Staff Type: Weapon SubType: 2hStaff Weight: 400 Attack: 135 MagicAttack: 330 Range: 1 Slots: 2 Jobs: Wizard: true Classes: All_Third: true Fourth: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bVariableCastrate,-3*(.@r/2); if (.@r>=7) bonus bVariableCastrate,-5; if (.@r>=9) { bonus bMatkRate,5; if (BaseLevel>=150) { bonus bMatk,(min(BaseLevel,170)*3); } } - Id: 640049 AegisName: Dimen_AG_Staff Name: Dimensions Arch Staff Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 120 MagicAttack: 330 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,25*(.@r/2); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"AG_CRIMSON_ARROW",15+5*(.@r/3); bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",15+5*(.@r/3); bonus2 bSkillAtk,"AG_STORM_CANNON",15+5*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,25; bonus2 bMagicAtkEle,Ele_Wind,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"AG_CRIMSON_ARROW",15; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",15; bonus2 bSkillAtk,"AG_STORM_CANNON",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"AG_CRIMSON_ARROW",15; bonus2 bSkillAtk,"AG_CRIMSON_ARROW_ATK",15; bonus2 bSkillAtk,"AG_STORM_CANNON",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Wind,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 640050 AegisName: Dimen_AG_Rod Name: Dimensions Arch Rod Type: Weapon SubType: 2hStaff Weight: 2000 Attack: 120 MagicAttack: 330 Range: 1 Slots: 2 Jobs: Wizard: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bMatk,25*(.@r/2); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"AG_FROZEN_SLASH",15+5*(.@r/3); bonus2 bSkillAtk,"AG_ROCK_DOWN",15+5*(.@r/3); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Earth,25; bonus2 bMagicAtkEle,Ele_Water,25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"AG_FROZEN_SLASH",15; bonus2 bSkillAtk,"AG_ROCK_DOWN",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"AG_FROZEN_SLASH",15; bonus2 bSkillAtk,"AG_ROCK_DOWN",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Earth,10; bonus2 bMagicAtkEle,Ele_Water,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 650000 AegisName: Woe_Huuma1_Z Name: Lesser Guild Member's Huuma Shuriken Type: Weapon SubType: Huuma Weight: 1500 Attack: 175 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus3 "{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,10+(.@r-10); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10+(.@r-10); }",1000,20000,"NJ_HUUMA"; - Id: 650001 AegisName: Woe_Huuma2_Z Name: Intermediate Guild Member's Huuma Shuriken Type: Weapon SubType: Huuma Weight: 1500 Attack: 175 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,25+.@r; bonus2 bAddRace,RC_Player_Doram,25+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) autobonus3 "{ .@r = getrefine(); bonus2 bIgnoreDefRaceRate,RC_Player_Human,10+(.@r-10); bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10+(.@r-10); }",1000,20000,"NJ_HUUMA"; - Id: 650003 AegisName: Ep172_Bh_Huuma Name: Wrath Wheel Type: Weapon SubType: Huuma Weight: 1800 Attack: 320 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bAtkEle,Ele_Wind; bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KO_HUUMARANKA",15; bonus bVariableCastrate,-2*(.@r/3); bonus bBaseAtk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; } if (.@r>=9) { bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-1000; bonus2 bSkillCooldown,"KO_HUUMARANKA",-2000; } if (.@r>=11) { bonus2 bSkillAtk,"KO_HUUMARANKA",20; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; } - Id: 650004 AegisName: Up_Humma_Clear Name: Patent Huuma Shuriken Clearness Type: Weapon SubType: Huuma Buy: 20 Weight: 2300 Attack: 290 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,.@r/3*2; if (.@r>=7) { bonus2 bSkillAtk,"KO_HUUMARANKA",30; bonus bVariableCastrate,-10; } if (.@r>=9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; } if (.@r>=11) { bonus2 bAddEle,Ele_Fire,20; bonus2 bAddEle,Ele_Dark,20; bonus2 bAddEle,Ele_Holy,20; bonus2 bAddRace,RC_Undead,20; bonus2 bAddRace,RC_Demon,20; bonus2 bAddRace,RC_Angel,20; } - Id: 650008 AegisName: Adulter_F_Humma Name: Adulter Fides Huuma Shuriken Type: Weapon SubType: Huuma Weight: 2000 Attack: 360 Range: 1 Slots: 2 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KO_HUUMARANKA",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"KO_HUUMARANKA",20; if (.@r>=9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-2000; if (.@r>=11) { bonus2 bSkillAtk,"KO_HUUMARANKA",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 650009 AegisName: Adulter_F_C_Humma Name: Adulter Fides Cross-Shaped Huuma Shuriken Type: Weapon SubType: Huuma Weight: 2200 Attack: 360 Range: 1 Slots: 2 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; if (.@r>=9) { bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; if (.@r>=11) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 650010 AegisName: 2Para_Humma1_NJ Name: Paradise Ninja Punishment Shuriken Type: Weapon SubType: Huuma Attack: 100 MagicAttack: 180 Range: 1 Jobs: Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bMatkRate,3; if (BaseLevel>=60) bonus bVariableCastrate,-10; if (BaseLevel>=75) { bonus2 bSkillAtk,"NJ_KOUENKA",20; bonus2 bSkillAtk,"NJ_HYOUSENSOU",20; bonus2 bSkillAtk,"NJ_HUUJIN",20; } if (BaseLevel>=90) { bonus2 bSkillAtk,"NJ_BAKUENRYU",20; bonus2 bSkillAtk,"NJ_HYOUSYOURAKU",20; bonus2 bSkillAtk,"NJ_KAMAITACHI",20; } - Id: 650011 AegisName: 2Para_Humma2_NJ Name: Paradise Ninja Crucifixion Shuriken Type: Weapon SubType: Huuma Attack: 100 MagicAttack: 180 Range: 1 Jobs: Ninja: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"NJ_KUNAI",20; if (BaseLevel>=90) bonus2 bSkillAtk,"NJ_HUUMA",20; - Id: 650012 AegisName: 3Para_Humma1_KO Name: Paradise Kagerou&Oboro Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 150 MagicAttack: 200 Range: 1 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("NJ_NINPOU"); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bVariableCastrate,-1*.@a; if (BaseLevel>=105) { bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bSkillAtk,"NJ_KOUENKA",25; bonus2 bSkillAtk,"NJ_HYOUSENSOU",25; bonus2 bSkillAtk,"NJ_HUUJIN",25; if (BaseLevel>=110) { bonus bVariableCastrate,-10; bonus2 bMagicAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"NJ_KOUENKA",15; bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; bonus2 bSkillAtk,"NJ_HUUJIN",15; } } } - Id: 650013 AegisName: 3Para_Humma2_KO Name: Paradise Kagerou&Oboro Cross Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 200 Range: 1 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("NJ_TOBIDOUGU"); bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; bonus2 bSkillAtk,"KO_HUUMARANKA",25; if (BaseLevel>=110) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-2000; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; bonus2 bSkillAtk,"KO_HUUMARANKA",15; } } } - Id: 650016 AegisName: Melon_Huuma Name: Melon Huuma Type: Weapon SubType: Huuma Buy: 20 Weight: 1500 Attack: 150 MagicAttack: 160 Range: 1 Slots: 1 Jobs: KagerouOboro: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 650017 AegisName: FCH_B_Huuma Name: Wind Spear Petal Booster Huuma Shuriken Type: Weapon SubType: Huuma Attack: 150 Range: 1 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,2; bonus bMatk,220+3*.@r; bonus bMatk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bVariableCastrate,-getskilllv("NJ_NINPOU"); if (.@r>=9) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Water,10; bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bSkillAtk,"NJ_KOUENKA",25; bonus2 bSkillAtk,"NJ_HYOUSENSOU",25; bonus2 bSkillAtk,"NJ_HUUJIN",25; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus bVariableCastrate,-10; if (.@r>=13) { bonus2 bSkillAtk,"NJ_KOUENKA",15; bonus2 bSkillAtk,"NJ_HYOUSENSOU",15; bonus2 bSkillAtk,"NJ_HUUJIN",15; } } } } - Id: 650018 AegisName: SN_B_Huuma Name: Cross Petal Booster Huuma Shuriken Type: Weapon SubType: Huuma Attack: 250 Range: 1 Jobs: KagerouOboro: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,getskilllv("NJ_TOBIDOUGU"); if (.@r>=9) { bonus bLongAtkRate,10; bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; bonus2 bSkillAtk,"KO_HUUMARANKA",25; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSkillCooldown,"KO_HUUMARANKA",-2000; if (.@r>=13) { bonus2 bSkillAtk,"KO_HUUMARANKA",15; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; } } } } - Id: 650019 AegisName: Precision_Fuuma Name: Precision Slasher Type: Weapon SubType: Huuma Weight: 2300 Attack: 360 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | bonus bUnbreakableWeapon; .@r = getrefine(); .@g = getenchantgrade(); bonus2 bSkillAtk,"SS_FUUMASHOUAKU",6*(.@r/2); bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",8*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bPow,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SS_FUUMASHOUAKU",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 650020 AegisName: Fourth_Bh_Fuuma Name: Scrap Slasher Type: Weapon SubType: Huuma Weight: 2200 Attack: 340 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SS_FUUMASHOUAKU",5*(.@r/2); bonus bLongAtkRate,3*(.@r/4); - Id: 650021 AegisName: Vivatus_F_C_Humma Name: Vivatus Fides Cross Huuma Shuriken Type: Weapon SubType: Huuma Weight: 2200 Attack: 360 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KO_JYUMONJIKIRI",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",20; if (.@r>=9) { bonus2 bSkillCooldown,"KO_JYUMONJIKIRI",-2000; if (.@r>=11) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"KO_JYUMONJIKIRI",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 650022 AegisName: Vivatus_F_Humma Name: Vivatus Fides Huuma Shuriken Type: Weapon SubType: Huuma Weight: 2000 Attack: 360 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"KO_HUUMARANKA",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"KO_HUUMARANKA",20; if (.@r>=9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-2000; if (.@r>=11) { bonus2 bSkillAtk,"KO_HUUMARANKA",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"KO_HUUMARANKA",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 650024 AegisName: Humma_Clear_LT Name: Huuma Shuriken Clearness-LT Type: Weapon SubType: Huuma Weight: 2300 Attack: 290 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"KO_HUUMARANKA",30; if (.@r>=9) { bonus2 bSkillCooldown,"KO_HUUMARANKA",-2000; bonus2 bSkillAtk,"KO_HUUMARANKA",15; if (.@r>=11) { bonus2 bAddEle,Ele_Fire,25; bonus2 bAddEle,Ele_Dark,25; bonus2 bAddEle,Ele_Holy,25; bonus2 bAddEle,Ele_Undead,25; bonus2 bAddRace,RC_Undead,25; bonus2 bAddRace,RC_Angel,25; bonus2 bAddRace,RC_Demon,25; bonus2 bAddRace,RC_Dragon,25; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 650025 AegisName: Glacier_Humma Name: Glacier Huuma Type: Weapon SubType: Huuma Weight: 3000 Attack: 400 MagicAttack: 370 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bUnbreakableWeapon; - Id: 650028 AegisName: D_Glacier_Humma Name: Dim Glacier Huuma Shuriken Type: Weapon SubType: Huuma Weight: 3000 Attack: 400 MagicAttack: 370 Range: 1 Slots: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bUnbreakableWeapon; - Id: 650029 AegisName: F_Ein_BHHuuma Name: Flush Grinder Huuma Shuriken Type: Weapon SubType: Huuma Weight: 1800 Attack: 300 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,15; bonus bUnbreakableWeapon; bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",20; bonus2 bSkillAtk,"KO_HUUMARANKA",20; if (.@r>=7) { bonus bVariableCastrate,-15; bonus bBaseAtk,90; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",10; bonus2 bSkillAtk,"KO_HUUMARANKA",20; bonus2 bSkillUseSP,"SS_FUUMAKOUCHIKU",-25; bonus2 bSkillUseSP,"KO_HUUMARANKA",-25; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillCooldown,"KO_HUUMARANKA",-1000; bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",10; bonus2 bSkillUseSP,"SS_FUUMAKOUCHIKU",-25; bonus2 bSkillUseSP,"KO_HUUMARANKA",-25; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",10; bonus2 bSkillAtk,"KO_HUUMARANKA",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",10; bonus2 bSkillAtk,"KO_HUUMARANKA",10; } } } } - Id: 650030 AegisName: Hs_Nj_Humma Name: Herosria Huuma Shuriken Type: Weapon SubType: Huuma Weight: 3000 Attack: 200 Range: 1 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bUnbreakableWeapon; bonus bLongAtkRate,15; bonus bShortAtkRate,-7; bonus bDelayrate,7; bonus bHit,50; - Id: 650033 AegisName: Devil_Claw Name: Devil Claw Type: Weapon SubType: Huuma Weight: 2000 Attack: 100 MagicAttack: 330 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,5; bonus bSpl,2; bonus2 bSkillAtk,"SS_ANTENPOU",5; if (.@r>=5) { bonus2 bSkillAtk,"SS_ANTENPOU",10; if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Fire,5; bonus2 bMagicAtkEle,Ele_Dark,5; if (.@r>=9) { bonus2 bSkillAtk,"SS_ANTENPOU",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SS_SEKIENHOU",15; bonus2 bSkillAtk,"SS_ANTENPOU",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bMagicAtkEle,Ele_Fire,10; bonus2 bMagicAtkEle,Ele_Dark,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bMagicAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAddRace,RC_All,10; bonus2 bMagicAddRace,RC_Player_Human,-10; bonus2 bMagicAddRace,RC_Player_Doram,-10; if (.@g>=ENCHANTGRADE_A) { bonus2 bMagicAddEle,Ele_All,10; } } } } - Id: 650034 AegisName: Humma_Brilliance Name: Huuma Shuriken Brilliance Type: Weapon SubType: Huuma Weight: 2600 Attack: 330 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bAtkRate,5; bonus bPow,2; bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",5; if (.@r>=5) { bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SS_FUUMASHOUAKU",15; bonus2 bSkillAtk,"SS_FUUMAKOUCHIKU",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 650035 AegisName: aegis_650035 Name: 1Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 650036 AegisName: aegis_650036 Name: 2Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 650037 AegisName: aegis_650037 Name: 3Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 650038 AegisName: aegis_650038 Name: 4Lv Fuuma Shuriken Type: Weapon SubType: Huuma Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 650039 AegisName: aegis_650039 Name: Level 5 Wind Magic Shuriken # !todo check english name Type: Weapon SubType: Huuma Attack: 10 MagicAttack: 10 Range: 1 Slots: 4 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 650043 AegisName: aegis_650043 Name: Opened Illusion Huuma Fluttering Snow Type: Weapon SubType: Huuma Weight: 1200 Attack: 255 MagicAttack: 240 Range: 1 Slots: 2 Jobs: KagerouOboro: true Ninja: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bVariableCastrate,-3*(.@r/2); if (.@r>=7) bonus bVariableCastrate,-5; if (.@r>=9) { bonus bAtkRate,5; bonus bMatkRate,5; if (BaseLevel>=150) { bonus bBaseAtk,(min(BaseLevel,170)*3); bonus bMatk,(min(BaseLevel,170)*3); } } - Id: 650046 AegisName: Dimen_SS_Humma Name: Dimensions Moonlight Huuma Shuriken Type: Weapon SubType: Huuma Weight: 3200 Attack: 370 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bCritical,5; bonus2 bSkillAtk,"SS_KAGEGISSEN",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"SS_KAGEGISSEN",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SS_KAGEGISSEN",15; if (.@g>=ENCHANTGRADE_B) { bonus bShortAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 650047 AegisName: Dimen_SS_Wheel Name: Dimensions Moonlight Wheel Shuriken Type: Weapon SubType: Huuma Weight: 2800 Attack: 200 MagicAttack: 350 Range: 1 Slots: 2 Jobs: KagerouOboro: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus bMatkRate,3+(.@r/2); bonus2 bSkillAtk,"SS_SEKIENHOU",15+5*(.@r/3); bonus2 bSkillAtk,"SS_RAIDENPOU",15+5*(.@r/3); bonus bMatk,25*(.@r/2); if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Wind,25; bonus2 bMagicAtkEle,Ele_Fire,25; if (.@r>=9) { bonus bDelayrate,-10; bonus bSMatk,7; if (.@r>=11) { bonus2 bSkillAtk,"SS_SEKIENHOU",15; bonus2 bSkillAtk,"SS_RAIDENPOU",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bSMatk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"SS_SEKIENHOU",15; bonus2 bSkillAtk,"SS_RAIDENPOU",15; if (.@g>=ENCHANTGRADE_B) { bonus2 bMagicAtkEle,Ele_Wind,10; bonus2 bMagicAtkEle,Ele_Fire,10; if (.@g>=ENCHANTGRADE_A) { bonus bSMatk,3*(.@r/2); } } } } - Id: 700000 AegisName: IDTest_bow Name: IDTest bow Type: Weapon SubType: Bow Weight: 10 Attack: 100 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 1 # Flags: # BuyingStore: true Script: | bonus3 bAutoSpell,"MG_COLDBOLT",1,1; - Id: 700001 AegisName: Boost_Bow Name: Booster Bow Type: Weapon SubType: Bow Attack: 160 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus bCritical,10; bonus bMaxHPrate,3; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bBaseAtk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus bAspdRate,getskilllv("SN_WINDWALK"); } if (.@r>=9) { bonus bLongAtkRate,10; } - Id: 700003 AegisName: Scalet_Dragon_L_Bow Name: Scarlet Dragon Leather Bow Type: Weapon SubType: Bow Weight: 800 Attack: 170 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus bDelayrate,-(.@r/3*4); if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } - Id: 700004 AegisName: Capricon_Bow_Of_Rogue_J Name: Capricorn Thief Bow Type: Weapon SubType: Bow Buy: 20 Weight: 500 Attack: 10 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,40+BaseLevel; bonus bMatk,40+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Rogue) { bonus bFlee2,10; bonus bAtkRate,50; bonus bMatkRate,25; bonus2 bSubClass,Class_Boss,50; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; bonus2 bIgnoreMdefRaceRate,RC_All,.@val; } } - Id: 700005 AegisName: Woe_Bow2_Z Name: Intermediate Guild Member's Hunter Bow Type: Weapon SubType: Bow Weight: 500 Attack: 110 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Thief: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 70 Refineable: true Script: | .@r = getrefine(); bonus2 bAddRace,RC_Player_Human,20+.@r; bonus2 bAddRace,RC_Player_Doram,20+.@r; bonus2 bIgnoreDefRaceRate,RC_Player_Human,10; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,10; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_Player_Human,5; bonus2 bIgnoreDefRaceRate,RC_Player_Doram,5; } if (.@r>=9) { bonus2 bAddRace,RC_Player_Human,15; bonus2 bAddRace,RC_Player_Doram,15; } if (.@r>=10) { bonus bHit,20+(.@r-10); autobonus3 "{ .@r = getrefine(); bonus2 bSkillAtk,\"AC_DOUBLE\",20+(.@r-10); }",1000,10000,"AC_CONCENTRATION"; } - Id: 700007 AegisName: Ep172_Bh_Bow Name: Superbia String Type: Weapon SubType: Bow Weight: 1400 Attack: 220 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RA_ARROWSTORM",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RA_ARROWSTORM",10; } if (.@r>=9) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-1000; } if (.@r>=11) { bonus2 bSkillAtk,"RA_ARROWSTORM",15; } - Id: 700008 AegisName: Ep172_Bh_Bow2 Name: Gula Gun Type: Weapon SubType: Bow Weight: 1200 Attack: 220 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; } if (.@r>=9) { bonus bDelayrate,-10; } if (.@r>=11) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; } - Id: 700009 AegisName: Ep172_Bh_Bow3 Name: Pigritia Rhythm Type: Weapon SubType: Bow Weight: 1000 Attack: 190 Range: 5 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; bonus bBaseAtk,12*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2500; } if (.@r>=11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",20; } - Id: 700010 AegisName: Sagittarius_Hunter_Bow Name: Sagittarius Hunter Bow Type: Weapon SubType: Bow Buy: 20 Weight: 1500 Attack: 10 Range: 5 Slots: 1 Jobs: Archer: true BardDancer: true Hunter: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus bBaseAtk,70+BaseLevel; bonus bAspdRate,10; if (eaclass()&EAJL_THIRD && BaseJob == Job_Hunter) { bonus bDelayrate,-10; bonus bAtkRate,50; bonus bLongAtkRate,25; bonus2 bSubClass,Class_Boss,50; if (.@r>=7) { .@val = 50; if (.@r>=9) .@val += 50; bonus2 bIgnoreDefRaceRate,RC_All,.@val; } } - Id: 700013 AegisName: Up_Narcis_Bow Name: Patent Narcissus Bow Type: Weapon SubType: Bow Weight: 1000 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bLongAtkRate,.@r/3*4; if (.@r>=7) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } if (.@r>=9) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } if (.@r>=11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",10; bonus2 bWeaponDamageRate,W_BOW,15; } - Id: 700014 AegisName: TB_B_Bow Name: Triangle Bomb Booster Bow Type: Weapon SubType: Bow Attack: 210 Range: 5 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bDelayrate,-1*(getskilllv("AC_VULTURE")/2); } if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; bonus2 bSkillAtk,"SC_FEINTBOMB",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bLongAtkRate,15; } if (.@r>=13) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; bonus2 bSkillAtk,"SC_FEINTBOMB",25; } - Id: 700015 AegisName: AS_B_Bow Name: Arrow Booster Bow Type: Weapon SubType: Bow Attack: 205 Range: 5 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,getskilllv("AC_OWL"); } if (.@r>=9) { bonus bMaxSPrate,10; bonus2 bSkillAtk,"RA_ARROWSTORM",25; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-700; bonus2 bAddSize,Size_All,15; } if (.@r>=13) { bonus2 bSkillAtk,"RA_ARROWSTORM",15; } - Id: 700016 AegisName: SB_B_Bow Name: Sharpbolt Booster Bow Type: Weapon SubType: Bow Attack: 200 Range: 5 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,getskilllv("AC_VULTURE"); } if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillAtk,"RA_AIMEDBOLT",25; bonus2 bSkillAtk,"SN_SHARPSHOOTING",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bAtkRate,10; } if (.@r>=13) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; } - Id: 700017 AegisName: RS_B_Bow Name: Rainstorm Booster Bow Type: Weapon SubType: Bow Attack: 200 Range: 5 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r+3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,2*getskilllv("BA_MUSICALLESSON"); } if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-1000; } if (.@r>=13) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",15; } - Id: 700018 AegisName: Up_Royal_Bow_K Name: Patent Royal Bow Type: Weapon SubType: Bow Weight: 1200 Attack: 205 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus2 bSkillAtk,"RA_ARROWSTORM",12*(.@r/3); if (.@r>=7) { bonus bAspdRate,10; bonus2 bWeaponDamageRate,W_BOW,15; } if (.@r>=9) { bonus bLongAtkRate,12; bonus bCritAtkRate,10; } if (.@r>=11) { bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus bDelayrate,-10; } - Id: 700019 AegisName: Up_Scalet_Dragon_L_Bow Name: Patent Scarlet Dragon Leather Bow Type: Weapon SubType: Bow Weight: 900 Attack: 200 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*15; bonus bDelayrate,-(.@r/3*4); if (.@r>=7) { bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,10; } if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",35; } if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; bonus bVariableCastrate,-10; } - Id: 700021 AegisName: Fourth_Bh_Bow Name: Scrap Bow Type: Weapon SubType: Bow Weight: 1700 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"WH_GALESTORM",5*(.@r/2); bonus bLongAtkRate,2*(.@r/4); - Id: 700022 AegisName: Poenitentia_Tenon Name: Poenitentia Tenon Type: Weapon SubType: Bow Weight: 1400 Attack: 250 Range: 5 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"ABC_FRENZY_SHOT",10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",3*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,15; if (.@r>=9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",30; if (.@r>=11) { bonus bLongAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"ABC_FRENZY_SHOT",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"ABC_FRENZY_SHOT",8; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"ABC_FRENZY_SHOT",12; } } } - Id: 700023 AegisName: Poenitentia_Nervus Name: Poenitentia Nervus Type: Weapon SubType: Bow Weight: 1400 Attack: 250 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; bonus2 bSkillAtk,"RA_AIMEDBOLT",3*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",8; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",12; } } } - Id: 700024 AegisName: Poenetentia_Attendo Name: Poenitentia Attendo Type: Weapon SubType: Bow Weight: 1400 Attack: 250 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"WH_GALESTORM",10; bonus2 bSkillAtk,"RA_ARROWSTORM",3*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"RA_ARROWSTORM",30; if (.@r>=11) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-700; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"WH_GALESTORM",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"WH_GALESTORM",8; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"WH_GALESTORM",12; } } } - Id: 700025 AegisName: Poenetentia_Vatia Name: Poenitentia Vatia Type: Weapon SubType: Bow Weight: 1000 Attack: 250 Range: 5 Slots: 2 Jobs: BardDancer: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",3*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",30; if (.@r>=11) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",8; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"TR_RHYTHMSHOOTING",12; } } } - Id: 700029 AegisName: Thanos_Bow_AD Name: Thanatos Bow-AD Type: Weapon SubType: Bow Weight: 2000 Attack: 230 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); autobonus "{ bonus2 bHPRegenRate,2500,1000; }",1,4000,BF_WEAPON; bonus bBaseAtk,10*(.@r/2); bonus2 bSkillAtk,"SN_SHARPSHOOTING",5*(.@r/3); if (.@r>=7) { bonus bCritAtkRate,15; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10; if (.@r>=9) { bonus bVariableCastrate,-10; bonus bCritical,15; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bLongAtkRate,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; if (.@g >= ENCHANTGRADE_C) { bonus bDelayrate,-5; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; } } } - Id: 700030 AegisName: Adulter_F_C_Bow Name: Adulter Fides Crossbow Type: Weapon SubType: Bow Weight: 1500 Attack: 240 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 700031 AegisName: Adulter_F_Ballista Name: Adulter Fides Ballista Type: Weapon SubType: Bow Weight: 1700 Attack: 250 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"RA_ARROWSTORM",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RA_ARROWSTORM",20; if (.@r>=9) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-1200; if (.@r>=11) { bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 700032 AegisName: Adulter_F_A_Bow Name: Adulter Fides Aiming Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 230 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RA_AIMEDBOLT",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RA_AIMEDBOLT",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 700033 AegisName: Vivatus_F_C_Bow Name: Vivatus Fides Cross Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 240 Range: 5 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"SC_TRIANGLESHOT",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 700034 AegisName: Vivatus_F_Ballista Name: Vivatus Fides Ballista Type: Weapon SubType: Bow Weight: 1700 Attack: 250 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"RA_ARROWSTORM",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RA_ARROWSTORM",20; if (.@r>=9) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-1200; if (.@r>=11) { bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RA_ARROWSTORM",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 700035 AegisName: Vivatus_F_A_Bow Name: Vivatus Fides Aiming Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 230 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"RA_AIMEDBOLT",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RA_AIMEDBOLT",20; if (.@r>=9) { bonus bDelayrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"RA_AIMEDBOLT",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RA_AIMEDBOLT",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bPow,(.@r/3); } } } - Id: 700036 AegisName: 1Para_Bow Name: Paradise Bow Type: Weapon SubType: Bow Attack: 100 Range: 5 Jobs: Archer: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseLevel>=20) bonus bBaseAtk,15; if (BaseLevel>=30) bonus bBaseAtk,20; if (BaseLevel>=45) bonus bBaseAtk,25; - Id: 700037 AegisName: 2Para_Bow_RG Name: Paradise Rogue Bow Type: Weapon SubType: Bow Attack: 180 Range: 5 Jobs: Rogue: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"AC_DOUBLE",10; if (BaseLevel>=90) bonus2 bSkillAtk,"AC_DOUBLE",15; - Id: 700038 AegisName: 2Para_Bow1_HT Name: Paradise Hunter Bow Type: Weapon SubType: Bow Attack: 180 Range: 5 Jobs: Hunter: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"AC_SHOWER",20; if (BaseLevel>=90) bonus2 bSkillAtk,"AC_DOUBLE",20; - Id: 700039 AegisName: 2Para_Bow2_HT Name: Paradise Hunter Crossbow Type: Weapon SubType: Bow Attack: 180 Range: 5 Jobs: Hunter: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) { bonus2 bSkillAtk,"HT_BLITZBEAT",15; bonus2 bSkillAtk,"SN_FALCONASSAULT",15; if (BaseLevel>=90) { bonus2 bSkillAtk,"HT_BLITZBEAT",10; bonus2 bSkillAtk,"SN_FALCONASSAULT",10; } } - Id: 700040 AegisName: 2Para_Bow_BD Name: Paradise Bard&Dancer Bow Type: Weapon SubType: Bow Attack: 180 Range: 5 Jobs: BardDancer: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"AC_SHOWER",20; if (BaseLevel>=90) bonus2 bSkillAtk,"AC_DOUBLE",20; - Id: 700041 AegisName: 3Para_Bow_SC Name: Paradise Shadow Chaser Bow Type: Weapon SubType: Bow Attack: 200 Range: 5 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("AC_VULTURE"); bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; bonus2 bSkillAtk,"SC_FEINTBOMB",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; bonus2 bSkillAtk,"SC_FEINTBOMB",25; } } } - Id: 700042 AegisName: 3Para_Bow1_RA Name: Paradise Ranger Bow Type: Weapon SubType: Bow Attack: 200 Range: 5 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("AC_OWL"); bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-700; bonus2 bSkillAtk,"RA_ARROWSTORM",25; if (BaseLevel>=110) { bonus bLongAtkRate,15; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) bonus2 bSkillAtk,"RA_ARROWSTORM",15; } } - Id: 700043 AegisName: 3Para_Bow2_RA Name: Paradise Ranger Crossbow Type: Weapon SubType: Bow Attack: 200 Range: 5 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("AC_VULTURE"); bonus bAtkRate,5; bonus bAspdRate,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; bonus2 bSkillAtk,"SN_SHARPSHOOTING",25; bonus2 bSkillAtk,"RA_AIMEDBOLT",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"SN_SHARPSHOOTING",15; bonus2 bSkillAtk,"RA_AIMEDBOLT",15; } } } - Id: 700045 AegisName: Royal_Bow_K_LT Name: Royal Bow-LT Type: Weapon SubType: Bow Weight: 1200 Attack: 205 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillCooldown,"RA_ARROWSTORM",-1000; bonus2 bSkillAtk,"RA_ARROWSTORM",20; if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillAtk,"RA_ARROWSTORM",30; if (.@r>=11) { bonus bCritAtkRate,15; bonus2 bSkillAtk,"SN_SHARPSHOOTING",35; bonus2 bSkillAtk,"RA_ARROWSTORM",20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 700046 AegisName: Scalet_Dragon_L_Bow_LT Name: Scarlet Leather Dragon Bow-LT Type: Weapon SubType: Bow Weight: 900 Attack: 200 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"RA_AIMEDBOLT",20; if (.@r>=9) { bonus bDelayrate,-10; bonus2 bSkillAtk,"RA_AIMEDBOLT",30; if (.@r>=11) { bonus bDelayrate,-8; bonus2 bSkillCooldown,"RA_AIMEDBOLT",-1000; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 700048 AegisName: Melon_Wing Name: Melon Wing Type: Weapon SubType: Bow Buy: 20 Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: BardDancer: true Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 700049 AegisName: Narcis_Bow_LT Name: Narcissus Bow-LT Type: Weapon SubType: Bow Weight: 1000 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true BardDancer: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",25; if (.@r>=9) { bonus bVariableCastrate,-10; bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",30; if (.@r>=11) { bonus2 bSubSize,Size_All,20; bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 700050 AegisName: Precision_Bow Name: Precision Bow Type: Weapon SubType: Bow Weight: 1800 Attack: 230 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"WH_GALESTORM",7*(.@r/2); bonus2 bSkillAtk,"RA_ARROWSTORM",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"WH_GALESTORM",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 700052 AegisName: Glacier_Bow Name: Glacier Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 240 MagicAttack: 220 Range: 5 Jobs: Archer: true BardDancer: true Hunter: true Rogue: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 700054 AegisName: Virtual_Bow_AD Name: Virtual Bow-OSAD Type: Weapon SubType: Bow Weight: 1200 Attack: 200 Range: 5 Slots: 2 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; if (.@r>=7) { bonus bLongAtkRate,7; bonus bCritical,8; if (.@r>=9) { bonus2 bSkillAtk,"SN_SHARPSHOOTING",20; bonus2 bSkillAtk,"RA_ARROWSTORM",40; if (.@r>=11) { bonus bCritical,7; bonus2 bSkillAtk,"RA_ARROWSTORM",30; } } } - Id: 700055 AegisName: MH_P89_AD Name: MH-P89-OSAD Type: Weapon SubType: Bow Weight: 1200 Attack: 170 Range: 5 Slots: 2 Jobs: BardDancer: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillCooldown,"WM_SEVERE_RAINSTORM",-2000; if (.@r>=11) { bonus2 bSkillAtk,"WM_SEVERE_RAINSTORM_MELEE",40; } } } - Id: 700056 AegisName: AC_B44_AD Name: AC-B44-OSAD Type: Weapon SubType: Bow Weight: 600 Attack: 190 MagicAttack: 135 Range: 5 Slots: 2 Jobs: Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,7; if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",25; if (.@r>=11) { bonus2 bSkillAtk,"SC_TRIANGLESHOT",20; } } } - Id: 700057 AegisName: Comp_Royal_Bow_K Name: "[Not For Sale] Royal Bow" Type: Weapon SubType: Bow Weight: 1000 Attack: 180 Range: 5 Slots: 2 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,(.@r/2)*10; bonus2 bSkillAtk,"RA_ARROWSTORM",(.@r/3)*12; if (.@r>=9) bonus bAspdRate,10; if (.@r>=11) bonus bLongAtkRate,5; - Id: 700059 AegisName: D_Glacier_Bow Name: Dim Glacier Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 240 MagicAttack: 220 Range: 5 Slots: 1 Jobs: Hunter: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 700060 AegisName: F_Ein_BHBOW Name: Flush Bolt Shooter Type: Weapon SubType: Bow Weight: 1700 Attack: 240 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,15; bonus bUnbreakableWeapon; bonus2 bSkillAtk,"WH_GALESTORM",20; bonus2 bSkillAtk,"RA_AIMEDBOLT",20; if (.@r>=7) { bonus bVariableCastrate,-15; bonus bBaseAtk,90; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus2 bSkillAtk,"WH_GALESTORM",10; bonus2 bSkillAtk,"RA_AIMEDBOLT",15; bonus2 bSkillUseSP,"WH_GALESTORM",-20; bonus2 bSkillUseSP,"RA_AIMEDBOLT",-20; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"WH_GALESTORM",10; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; bonus2 bSkillUseSP,"WH_GALESTORM",-20; bonus2 bSkillUseSP,"RA_AIMEDBOLT",-20; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"WH_GALESTORM",10; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"WH_GALESTORM",10; bonus2 bSkillAtk,"RA_AIMEDBOLT",10; } } } } - Id: 700061 AegisName: Hs_Rg_Bow Name: Herosria Rogue Bow Type: Weapon SubType: Bow Weight: 3000 Attack: 200 Range: 5 Jobs: Rogue: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-5; bonus bLongAtkRate,10; bonus bVariableCastrate,-15; bonus bCritical,-7; - Id: 700062 AegisName: aegis_700062 Name: Herosria Hunter Bow Type: Weapon SubType: Bow Weight: 3000 Attack: 200 Range: 5 Jobs: Hunter: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,15; bonus bLongAtkRate,-7; bonus bVariableCastrate,-15; bonus bHit,-25; - Id: 700063 AegisName: aegis_700063 Name: Herosria Cross Bow Type: Weapon SubType: Bow Weight: 3000 Attack: 200 Range: 5 Jobs: Hunter: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-7; bonus bLongAtkRate,15; bonus bAspdRate,15; bonus bCritical,-7; - Id: 700064 AegisName: aegis_700064 Name: Herosria Rhythm Bow Type: Weapon SubType: Bow Weight: 3000 Attack: 200 Range: 5 Jobs: BardDancer: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus2 bSubRace,RC_Player_Human,-7; bonus2 bSubRace,RC_Player_Doram,-7; bonus bLongAtkRate,15; bonus bVariableCastrate,7; bonus bHit,50; - Id: 700065 AegisName: Angel_Wing_Bow Name: Angel Wing Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 290 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; if (.@r>=5) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"WH_GALESTORM",15; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 700066 AegisName: Dark_Angel_Ray_Bow Name: Dark Angel Ray Bow Type: Weapon SubType: Bow Weight: 1500 Attack: 280 Range: 5 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT",5; bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT_ATK",5; if (.@r>=5) { bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT",10; bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT_ATK",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT",10; bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT_ATK",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"ABC_FRENZY_SHOT",15; bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT",5; bonus2 bSkillAtk,"ABC_CHAIN_REACTION_SHOT_ATK",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 700069 AegisName: aegis_700069 Name: Triangle Disaster Type: Weapon SubType: Bow Weight: 900 Attack: 160 MagicAttack: 170 Range: 5 Slots: 1 Jobs: Rogue: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bAgi,3*.@r; bonus bDex,3*.@r; bonus2 bSkillAtk,"SC_TRIANGLESHOT",BaseLevel; - Id: 700070 AegisName: aegis_700070 Name: 1Lv Bow Type: Weapon SubType: Bow Attack: 10 MagicAttack: 10 Range: 5 Slots: 4 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 700071 AegisName: aegis_700071 Name: 2Lv Bow Type: Weapon SubType: Bow Attack: 10 MagicAttack: 10 Range: 5 Slots: 4 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 700072 AegisName: aegis_700072 Name: 3Lv Bow Type: Weapon SubType: Bow Attack: 10 MagicAttack: 10 Range: 5 Slots: 4 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 700073 AegisName: aegis_700073 Name: 4Lv Bow Type: Weapon SubType: Bow Attack: 10 MagicAttack: 10 Range: 5 Slots: 4 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 700074 AegisName: aegis_700074 Name: 5Lv Bow Type: Weapon SubType: Bow Attack: 10 MagicAttack: 10 Range: 5 Slots: 4 Jobs: Hunter: true Rogue: true Classes: All_Third: true Fourth: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 700076 AegisName: Mocadas_Bow Name: Muqaddas Kahassu Type: Weapon SubType: Bow Weight: 1500 Attack: 300 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"WH_HAWKRUSH",10; if (.@r>=7) { bonus5 bAutoSpell,"SN_SHARPSHOOTING",max(getskilllv("SN_SHARPSHOOTING"),1),150,BF_LONG|BF_WEAPON,1; if (.@r>=9) { bonus2 bSkillAtk,"WH_HAWKRUSH",10; if (.@r>=11) { bonus2 bSkillAtk,"WH_HAWKRUSH",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 700092 AegisName: Dimen_ABC_Bow Name: Dimensions Abyss Bow Type: Weapon SubType: Bow Weight: 2100 Attack: 320 Range: 5 Slots: 2 Jobs: Rogue: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"ABC_FRENZY_SHOT",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"ABC_FRENZY_SHOT",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"ABC_FRENZY_SHOT",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 700093 AegisName: Dimen_WH_C_Bow Name: Dimensions Wind Crossbow Type: Weapon SubType: Bow Weight: 2100 Attack: 320 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 700094 AegisName: Dimen_WH_Bow Name: Dimensions Wind Bow Type: Weapon SubType: Bow Weight: 2100 Attack: 340 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"WH_HAWKRUSH",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"WH_HAWKRUSH",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"WH_HAWKRUSH",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 700100 AegisName: StormBow_Furious Name: Furious Storm Bow Type: Weapon SubType: Bow Weight: 1800 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"WH_GALESTORM",5; if (BaseLevel>=210) { bonus bAtkRate,7; bonus bBaseAtk,70; } if (BaseLevel>=220) { bonus2 bSkillAtk,"WH_GALESTORM",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bCritAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"WH_GALESTORM",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"WH_GALESTORM",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bCritAtkRate,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"WH_GALESTORM",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"WH_GALESTORM",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,4*(.@r/2); bonus bAtkRate,4*(.@r/2); } } } } - Id: 700101 AegisName: TornadoBow_Furious Name: Furious Tornado Bow Type: Weapon SubType: Bow Weight: 1800 Attack: 210 Range: 5 Slots: 2 Jobs: Hunter: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 205 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; if (BaseLevel>=210) { bonus bAtkRate,7; bonus bBaseAtk,70; } if (BaseLevel>=220) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; } if (BaseLevel>=230) { bonus2 bAddSize,Size_All,10; } if (.@r>=7) { bonus bCritAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; if (.@r>=10) { bonus bVariableCastrate,-10; if (.@r>=11) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; } } } } if (.@g>=ENCHANTGRADE_D) { bonus bCritAtkRate,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",5; if (.@g>=ENCHANTGRADE_B) { bonus2 bSkillAtk,"WH_CRESCIVE_BOLT",10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,4*(.@r/2); bonus bAtkRate,4*(.@r/2); } } } } - Id: 800000 AegisName: IDTest_gun Name: IDTest gun Type: Weapon SubType: Revolver Weight: 10 Attack: 100 Range: 7 Slots: 1 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 # Flags: # BuyingStore: true Script: | bonus bDex,2; - Id: 800002 AegisName: Up_Crimson_Rose Name: Patent Crimson Rose Type: Weapon SubType: Revolver Buy: 20 Weight: 1000 Attack: 200 Range: 7 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,.@r/2*10; bonus2 bSkillAtk,"RL_FIREDANCE",.@r/3*2; if (.@r>=7) { bonus bAtkRate,5; bonus bLongAtkRate,10; } if (.@r>=9) { bonus2 bSkillAtk,"RL_FIREDANCE",25; autobonus3 "{ bonus bLongAtkRate,20; }",1000,60000,"RL_HEAT_BARREL"; } if (.@r>=11) { bonus bDelayrate,-10; } - Id: 800003 AegisName: Adulter_F_Revolver Name: Adulter Fides Revolver Type: Weapon SubType: Revolver Weight: 1200 Attack: 210 Range: 7 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"RL_FIREDANCE",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_FIREDANCE",20; if (.@r>=9) { bonus2 bSubRace,RC_All,15; bonus2 bSubRace,RC_Player_Human,-15; bonus2 bSubRace,RC_Player_Doram,-15; if (.@r>=11) { bonus2 bSkillAtk,"RL_FIREDANCE",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 800004 AegisName: 1Para_Revolver Name: Paradise Revolver Type: Weapon SubType: Revolver Attack: 60 Range: 7 Jobs: Gunslinger: true Locations: Both_Hand: true WeaponLevel: 2 EquipLevelMin: 10 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | if (BaseLevel>=20) bonus bBaseAtk,15; if (BaseLevel>=30) bonus bBaseAtk,20; if (BaseLevel>=45) bonus bBaseAtk,25; - Id: 800005 AegisName: 2Para_Revolver_GS Name: Paradise Gunslinger Revolver Type: Weapon SubType: Revolver Attack: 180 Range: 7 Jobs: Gunslinger: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bAspdRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"GS_RAPIDSHOWER",20; if (BaseLevel>=90) bonus2 bSkillAtk,"GS_DESPERADO",20; - Id: 800006 AegisName: 3Para_Revolver_RL Name: Paradise Rebellion Revolver Type: Weapon SubType: Revolver Attack: 200 Range: 7 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("GS_CHAINACTION"); bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus bLongAtkRate,10; bonus2 bSkillAtk,"GS_DESPERADO",25; bonus2 bSkillAtk,"RL_FIREDANCE",25; if (BaseLevel>=110) { bonus bDelayrate,-10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"GS_DESPERADO",15; bonus2 bSkillAtk,"RL_FIREDANCE",15; } } } - Id: 800007 AegisName: Melon_Handgun Name: Melon Handgun Type: Weapon SubType: Revolver Buy: 20 Weight: 350 Attack: 70 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 800008 AegisName: DF_B_Revolver Name: Desperado Fire Booster Revolver Type: Weapon SubType: Revolver Attack: 220 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,getskilllv("GS_CHAINACTION"); if (.@r>=9) { bonus bLongAtkRate,10; bonus2 bSkillAtk,"GS_DESPERADO",25; bonus2 bSkillAtk,"RL_FIREDANCE",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bDelayrate,-15; if (.@r>=13) { bonus2 bSkillAtk,"GS_DESPERADO",15; bonus2 bSkillAtk,"RL_FIREDANCE",15; } } } } - Id: 800009 AegisName: Precision_Pistol Name: Precision Pistol Type: Weapon SubType: Revolver Weight: 1400 Attack: 250 Range: 7 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",7*(.@r/2); bonus2 bSkillAtk,"RL_FIREDANCE",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 800010 AegisName: Fourth_Revolver Name: Scrap Pistol Type: Weapon SubType: Revolver Weight: 1300 Attack: 230 Range: 7 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",6*(.@r/2); bonus bLongAtkRate,3*(.@r/4); - Id: 800011 AegisName: Poenitentia_Foramen Name: Poenitentia Foramen Type: Weapon SubType: Revolver Weight: 1200 Attack: 220 Range: 7 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; bonus2 bSkillAtk,"RL_FIREDANCE",3*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"RL_FIREDANCE",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",3; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",3; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; } } } - Id: 800012 AegisName: Vivatus_F_Revolver Name: Vivatus Fides Revolver Type: Weapon SubType: Revolver Weight: 1200 Attack: 210 Range: 7 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"RL_FIREDANCE",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_FIREDANCE",20; if (.@r>=9) { bonus2 bSubRace,RC_All,15; bonus2 bSubRace,RC_Player_Human,-15; bonus2 bSubRace,RC_Player_Doram,-15; if (.@r>=11) { bonus2 bSkillAtk,"RL_FIREDANCE",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RL_FIREDANCE",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bCon,(.@r/3); } } } - Id: 800013 AegisName: Crimson_Rose_LT Name: Crimson Rose-LT Type: Weapon SubType: Revolver Weight: 1000 Attack: 200 Range: 7 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSubSize,Size_All,20; bonus2 bSkillAtk,"RL_FIREDANCE",25; if (.@r>=9) { bonus bAtkRate,7; bonus2 bSkillAtk,"RL_FIREDANCE",35; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bDelayrate,-10; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 800014 AegisName: Glacier_Revolver Name: Glacier Revolver Type: Weapon SubType: Revolver Weight: 2200 Attack: 230 MagicAttack: 230 Range: 7 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 800015 AegisName: D_Glacier_Revolver Name: Dim Glacier Pistol Type: Weapon SubType: Revolver Weight: 2200 Attack: 230 MagicAttack: 230 Range: 7 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 800016 AegisName: F_Ein_1HGUN Name: Flush Bolt Revolver Type: Weapon SubType: Revolver Weight: 1800 Attack: 220 Range: 7 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",20; bonus2 bSkillAtk,"RL_FIREDANCE",20; if (.@r>=7) { bonus bAspdRate,15; bonus bBaseAtk,90; if (.@r>=9) { bonus2 bAddSize,Size_All,20; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; bonus2 bSkillAtk,"RL_FIREDANCE",20; bonus2 bSkillUseSP,"NW_ONLY_ONE_BULLET",-20; bonus2 bSkillUseSP,"RL_FIREDANCE",-20; if (.@r>=11) { bonus bDelayrate,-15; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; bonus2 bSkillAtk,"RL_FIREDANCE",10; bonus2 bSkillUseSP,"NW_ONLY_ONE_BULLET",-20; bonus2 bSkillUseSP,"RL_FIREDANCE",-20; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; bonus2 bSkillAtk,"RL_FIREDANCE",10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddEle,Ele_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; bonus2 bSkillAtk,"RL_FIREDANCE",10; } } } } - Id: 800017 AegisName: aegis_800017 Name: Herosria Revolver Type: Weapon SubType: Revolver Weight: 3000 Attack: 200 Range: 7 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-7; bonus bLongAtkRate,15; bonus bAspdRate,15; bonus bVariableCastrate,7; - Id: 800026 AegisName: Devils_Bullet Name: Devil's Bullet Type: Weapon SubType: Revolver Weight: 2000 Attack: 250 Range: 7 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 800027 AegisName: Devil_Hunter Name: Devil Hunter Type: Weapon SubType: Revolver Weight: 1700 Attack: 250 Range: 7 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus bCritAtkRate,20; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 800029 AegisName: aegis_800029 Name: 1Lv Revolver Type: Weapon SubType: Revolver Attack: 10 MagicAttack: 10 Range: 7 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 800030 AegisName: aegis_800030 Name: 2Lv Revolver Type: Weapon SubType: Revolver Attack: 10 MagicAttack: 10 Range: 7 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 800031 AegisName: aegis_800031 Name: 3Lv Revolver Type: Weapon SubType: Revolver Attack: 10 MagicAttack: 10 Range: 7 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 800032 AegisName: aegis_800032 Name: 4Lv Revolver Type: Weapon SubType: Revolver Attack: 10 MagicAttack: 10 Range: 7 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 800033 AegisName: aegis_800033 Name: Level 5 Revolver # !todo check english name Type: Weapon SubType: Revolver Attack: 10 MagicAttack: 10 Range: 7 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 800035 AegisName: Comp_Crimson_Rose Name: "[Not For Sale] Crimson Rose" Type: Weapon SubType: Revolver Weight: 700 Attack: 150 Range: 7 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,10*(.@r/2); bonus bAspdRate,3*(.@r/3); if (.@r >= 7) { bonus bAspd,1; bonus bAtkRate,5; if (.@r >= 9) { bonus bCritAtkRate,20; if (.@r >= 11) { autobonus3 "{ bonus bCritical,20; bonus bLongAtkRate,15; }",1000,60000,"RL_HEAT_BARREL"; } } } - Id: 810000 AegisName: Ep172_1h_Rifle Name: Lust Pointer Type: Weapon SubType: Rifle Weight: 1300 Attack: 260 Range: 9 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10; bonus bAspdRate,3*(.@r/3); bonus bBaseAtk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15; } if (.@r>=9) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-3000; } if (.@r>=11) { autobonus3 "{ bonus2 bSkillAtk,\"RL_HAMMER_OF_GOD\",25; }",1000,10000,"RL_C_MARKER"; bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-4000; } - Id: 810001 AegisName: Up_Master_Soul_Rifle Name: Patent Master Soul Rifle Type: Weapon SubType: Rifle Buy: 20 Weight: 1000 Attack: 200 MagicAttack: 250 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"MG_SOULSTRIKE",15*(.@r/3); bonus2 bSkillAtk,"HW_NAPALMVULCAN",15*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"WL_SOULEXPANSION",20; bonus2 bMagicAddEle,Ele_Ghost,15; } if (.@r>=9) { bonus5 bAutoSpell,"MG_SOULSTRIKE",10,150,BF_LONG,1; } if (.@r>=11) { bonus5 bAutoSpell,"HW_NAPALMVULCAN",3,70,BF_LONG,1; bonus5 bAutoSpell,"WL_SOULEXPANSION",3,70,BF_LONG,1; } - Id: 810002 AegisName: Adulter_F_Rifle Name: Adulter Fides Rifle Type: Weapon SubType: Rifle Weight: 1500 Attack: 280 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r>=9) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-8000; if (.@r>=11) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 810003 AegisName: 2Para_Rifle_GS Name: Paradise Gunslinger Rifle Type: Weapon SubType: Rifle Attack: 180 Range: 9 Jobs: Gunslinger: true Locations: Both_Hand: true WeaponLevel: 3 EquipLevelMin: 45 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | bonus bAtkRate,3; if (BaseLevel>=60) bonus bLongAtkRate,10; if (BaseLevel>=75) bonus2 bSkillAtk,"GS_TRACKING",10; if (BaseLevel>=90) bonus2 bSkillAtk,"GS_TRACKING",15; - Id: 810004 AegisName: Melon_Rifle Name: Melon Rifle Type: Weapon SubType: Rifle Buy: 20 Weight: 850 Attack: 170 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",30,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",15,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",7*(readparam(bInt)/10); if (readparam(bInt)>=110) bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",30; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 810005 AegisName: Precision_Rifle Name: Precision Piercer Type: Weapon SubType: Rifle Weight: 1800 Attack: 300 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",7*(.@r/2); bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 810006 AegisName: Fourth_Rifle Name: Scrap Piercer Type: Weapon SubType: Rifle Weight: 1600 Attack: 280 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",6*(.@r/2); bonus bLongAtkRate,3*(.@r/4); - Id: 810007 AegisName: Poenitentia_Penet Name: Poenitentia Penet Type: Weapon SubType: Rifle Weight: 1800 Attack: 270 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",3*(.@r/2); if (.@r>=7) { bonus bAspdRate,10; if (.@r>=9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-8000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",3; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",3; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",5; } } } - Id: 810008 AegisName: Vivatus_F_Rifle Name: Vivatus Fides Rifle Type: Weapon SubType: Rifle Weight: 1500 Attack: 280 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; if (.@r>=9) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-8000; if (.@r>=11) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bCon,(.@r/3); } } } - Id: 810009 AegisName: Master_Soul_Rifle_LT Name: Master Soul Rifle-LT Type: Weapon SubType: Rifle Weight: 1000 Attack: 200 MagicAttack: 250 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=210) { bonus bSMatk,1; bonus bSpl,2; } if (.@r>=7) { bonus2 bMagicAtkEle,Ele_Ghost,25; bonus2 bSkillAtk,"WL_SOULEXPANSION",40; if (.@r>=9) { bonus5 bAutoSpell,"MG_SOULSTRIKE",5,150,BF_LONG|BF_WEAPON,1; bonus5 bAutoSpell,"WL_SOULEXPANSION",5,150,BF_LONG|BF_WEAPON,1; bonus5 bAutoSpell,"HW_NAPALMVULCAN",5,150,BF_LONG|BF_WEAPON,1; if (.@r>=11) { bonus2 bMagicAddSize,Size_All,15; bonus2 bSkillAtk,"WL_SOULEXPANSION",30; } } } if (.@g >= ENCHANTGRADE_D) { bonus bMatkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus2 bMagicAtkEle,Ele_Ghost,15; bonus bSMatk,1; if (.@g >= ENCHANTGRADE_B) { bonus bSMatk,2; bonus bSpl,3; } } } bonus bMatk,15*(.@r/2); bonus2 bSkillAtk,"MG_SOULSTRIKE",20*(.@r/3); bonus2 bSkillAtk,"HW_NAPALMVULCAN",20*(.@r/3); - Id: 810010 AegisName: Glacier_Rifle Name: Glacier Rifle Type: Weapon SubType: Rifle Weight: 2600 Attack: 280 MagicAttack: 230 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 810013 AegisName: HR_S55_AD Name: HR-55-OSAD Type: Weapon SubType: Rifle Weight: 1000 Attack: 250 Range: 9 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 170 Refineable: true Script: | .@r = getrefine(); bonus bAtkRate,5; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",30; if (.@r>=11) { bonus2 bSkillCooldown,"RL_HAMMER_OF_GOD",-5000; bonus2 bSkillAtk,"RL_HAMMER_OF_GOD",20; } } } - Id: 810015 AegisName: D_Glacier_Rifle Name: Dim Glacier Rifle Type: Weapon SubType: Rifle Weight: 2600 Attack: 280 MagicAttack: 230 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 810016 AegisName: aegis_810016 Name: Herosria Rifle Type: Weapon SubType: Rifle Weight: 3000 Attack: 200 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bCritAtkRate,-7; bonus bLongAtkRate,15; bonus bDelayrate,7; bonus bHit,50; - Id: 810026 AegisName: Screaming_Rifle Name: Screaming Rifle Type: Weapon SubType: Rifle Weight: 2200 Attack: 265 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus2 bSkillAtk,"NW_GRENADES_DROPPING",15; bonus2 bSkillAtk,"NW_HASTY_FIRE_IN_THE_HOLE",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 810027 AegisName: Last_Dawn Name: Last Dawn Type: Weapon SubType: Rifle Weight: 2400 Attack: 265 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; if (.@r>=10) { bonus bCritical,10; if (.@r>=11) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",15; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 810029 AegisName: aegis_810029 Name: 1Lv Rifle Type: Weapon SubType: Rifle Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 810030 AegisName: aegis_810030 Name: 2Lv Rifle Type: Weapon SubType: Rifle Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 810031 AegisName: aegis_810031 Name: 3Lv Rifle Type: Weapon SubType: Rifle Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 810032 AegisName: aegis_810032 Name: 4Lv Rifle Type: Weapon SubType: Rifle Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 810033 AegisName: aegis_810033 Name: 5Lv Rifle Type: Weapon SubType: Rifle Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 810034 AegisName: Mocadas_Rifle Name: Muqaddas Tabanji Type: Weapon SubType: Rifle Weight: 2200 Attack: 275 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; if (.@r>=11) { bonus2 bSkillAtk,"NW_ONLY_ONE_BULLET",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 810040 AegisName: Dimen_NW_Rifle Name: Dimensions Night Rifle Type: Weapon SubType: Rifle Weight: 2300 Attack: 320 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bCritical,5; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",15+5*(.@r/3); bonus bAtkRate,(.@r/2); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bCritAtkRate,20; if (.@r>=9) { bonus bCRate,5; bonus bCritical,15; if (.@r>=11) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } } - Id: 820000 AegisName: Ep172_1h_Shotgun Name: Lust Shatter Type: Weapon SubType: Shotgun Weight: 1600 Attack: 310 Range: 9 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus2 bSkillAtk,"RL_SLUGSHOT",10; bonus bAspdRate,3*(.@r/3); bonus bBaseAtk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_S_STORM",10; bonus2 bSkillAtk,"RL_SLUGSHOT",15; } if (.@r>=9) { bonus2 bSkillCooldown,"RL_S_STORM",-1000; bonus2 bSkillCooldown,"RL_SLUGSHOT",-2000; } if (.@r>=11) { autobonus3 "{ bonus2 bSkillAtk,\"RL_S_STORM\",25; }",1000,10000,"RL_SLUGSHOT"; bonus2 bSkillAtk,"RL_SLUGSHOT",25; } - Id: 820001 AegisName: Up_Demon_S_Shot Name: Patent Demon Slayer Shot Type: Weapon SubType: Shotgun Weight: 2300 Attack: 295 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus bLongAtkRate,3*(.@r/2); bonus bMaxSPrate,2*(.@r/3); if (.@r>=7) { bonus2 bAddClass,Class_Boss,15; bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } if (.@r>=9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11) { bonus2 bSkillAtk,"RL_BANISHING_BUSTER",35; bonus2 bSkillAtk,"RL_S_STORM",35; } - Id: 820002 AegisName: Adulter_F_Shotgun Name: Adulter Fides Shotgun Type: Weapon SubType: Shotgun Weight: 2000 Attack: 320 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus bSplashRange,1; bonus2 bSkillAtk,"RL_S_STORM",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_S_STORM",20; if (.@r>=9) { bonus2 bSkillCooldown,"RL_S_STORM",-1000; if (.@r>=11) { bonus2 bSkillAtk,"RL_S_STORM",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 820003 AegisName: Melon_Shotgun Name: Melon Shotgun Type: Weapon SubType: Shotgun Buy: 20 Weight: 3000 Attack: 180 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus2 bSkillAtk,"RL_SLUGSHOT",7*(readparam(bStr)/10); if (readparam(bStr)>=110) bonus2 bSkillAtk,"RL_SLUGSHOT",30; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 820004 AegisName: Precision_Shotgun Name: Precision Shatter Type: Weapon SubType: Shotgun Weight: 2200 Attack: 330 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSplashRange,1; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",7*(.@r/2); bonus2 bSkillAtk,"RL_BANISHING_BUSTER",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 820005 AegisName: Fourth_Shotgun Name: Scrap Shatter Type: Weapon SubType: Shotgun Weight: 2000 Attack: 310 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bSplashRange,1; bonus bLongAtkRate,3*(getrefine()/4); bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",6*(.@r/2); - Id: 820006 AegisName: Vivatus_F_Shotgun Name: Vivatus Fides Shotgun Type: Weapon SubType: Shotgun Weight: 2000 Attack: 320 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSplashRange,1; bonus2 bSkillAtk,"RL_S_STORM",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_S_STORM",20; if (.@r>=9) { bonus2 bSkillCooldown,"RL_S_STORM",-1000; if (.@r>=11) { bonus2 bSkillAtk,"RL_S_STORM",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RL_S_STORM",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bCon,(.@r/3); } } } - Id: 820007 AegisName: Demon_S_Shot_LT Name: Demon Slayer Shot-LT Type: Weapon SubType: Shotgun Weight: 2300 Attack: 295 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSplashRange,1; bonus bUnbreakableWeapon; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bLongAtkRate,10; bonus2 bSkillAtk,"RL_BANISHING_BUSTER",30; bonus2 bSkillAtk,"RL_S_STORM",30; if (.@r>=9) { bonus2 bSkillCooldown,"RL_S_STORM",-1000; bonus2 bSkillAtk,"RL_BANISHING_BUSTER",25; bonus2 bSkillAtk,"RL_S_STORM",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bAddClass,Class_Boss,15; bonus2 bAddRace,RC_Undead,15; bonus2 bAddRace,RC_Demon,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 820008 AegisName: Glacier_Shotgun Name: Glacier Shotgun Type: Weapon SubType: Shotgun Weight: 2600 Attack: 300 MagicAttack: 200 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Script: | bonus bSplashRange,1; - Id: 820011 AegisName: D_Glacier_Shotgun Name: Dim Glacier Shotgun Type: Weapon SubType: Shotgun Weight: 2600 Attack: 300 MagicAttack: 200 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | bonus bSplashRange,1; - Id: 820012 AegisName: aegis_820012 Name: Herosria Shotgun Type: Weapon SubType: Shotgun Weight: 3000 Attack: 200 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bSplashRange,1; bonus bLongAtkRate,15; bonus bNearAtkDef,-7; bonus bVariableCastrate,-15; bonus bHit,-25; - Id: 820020 AegisName: Outlaw_Cursed_Shotgun Name: Outlaw Cursed Shotgun Type: Weapon SubType: Shotgun Weight: 2500 Attack: 280 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus bSplashRange,1; bonus2 bSkillAtk,"NW_WILD_FIRE",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_WILD_FIRE",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_WILD_FIRE",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_WILD_FIRE",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 820021 AegisName: Road_Of_Glory Name: Lord of Glory Type: Weapon SubType: Shotgun Weight: 2300 Attack: 280 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus bSplashRange,1; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; if (.@r>=10) { bonus bAspdRate,10; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 820023 AegisName: aegis_820023 Name: 1Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true Script: | bonus bSplashRange,1; - Id: 820024 AegisName: aegis_820024 Name: 2Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true Script: | bonus bSplashRange,1; - Id: 820025 AegisName: aegis_820025 Name: 3Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true Script: | bonus bSplashRange,1; - Id: 820026 AegisName: aegis_820026 Name: 4Lv Shotgun Type: Weapon SubType: Shotgun Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true Script: | bonus bSplashRange,1; - Id: 820027 AegisName: aegis_820027 Name: Level 5 shotgun # !todo check english name Type: Weapon SubType: Shotgun Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true Script: | bonus bSplashRange,1; - Id: 820028 AegisName: Mocadas_Shotgun Name: Muqaddas Saka Type: Weapon SubType: Shotgun Weight: 2500 Attack: 290 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bSplashRange,1; bonus bAtkRate,5; bonus2 bSkillAtk,"NW_WILD_FIRE",10; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"NW_WILD_FIRE",10; if (.@r>=11) { bonus2 bSkillAtk,"NW_WILD_FIRE",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 830000 AegisName: Boost_Gatling Name: Booster Gatling Type: Weapon SubType: Gatling Attack: 170 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | bonus2 bAddClass,Class_All,5; .@r = getrefine(); bonus bBaseAtk,.@r*3; bonus bBaseAtk,min(BaseLevel,180)/15*3; if (.@r>=7) { bonus bLongAtkRate,getskilllv("GS_SINGLEACTION"); } if (.@r>=9) { bonus bLongAtkRate,10; } - Id: 830001 AegisName: Ep172_1h_Gatling Name: Lust Crusher Type: Weapon SubType: Gatling Weight: 2000 Attack: 230 Range: 9 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_FIRE_RAIN",10; bonus bAspdRate,3*(.@r/3); bonus bBaseAtk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_R_TRIP",10; bonus2 bSkillAtk,"RL_FIRE_RAIN",15; } if (.@r>=9) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-2000; } if (.@r>=11) { autobonus3 "{ bonus2 bSkillAtk,\"RL_R_TRIP\",15; }",1000,10000,"RL_FIRE_RAIN"; bonus2 bSkillAtk,"RL_FIRE_RAIN",25; } - Id: 830002 AegisName: Up_The_Black_Gatling Name: Patent The Black Type: Weapon SubType: Gatling Weight: 3000 Attack: 225 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_R_TRIP",20; bonus2 bSkillUseSPrate,"RL_R_TRIP",10; } if (.@r>=9) { bonus2 bSkillAtk,"RL_R_TRIP",15; autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; } if (.@r>=11) { bonus2 bAddSize,Size_All,15; } - Id: 830003 AegisName: Adulter_F_Gatling Name: Adulter Fides Gatling Gun Type: Weapon SubType: Gatling Weight: 1500 Attack: 250 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_R_TRIP",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_R_TRIP",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"RL_R_TRIP",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 830004 AegisName: 3Para_Gatling_RL Name: Paradise Rebellion Gatling Gun Type: Weapon SubType: Gatling Attack: 200 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@a = getskilllv("GS_SINGLEACTION"); bonus bAtkRate,5; bonus bLongAtkRate,.@a; if (BaseLevel>=105) { bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; bonus2 bSkillAtk,"RL_FIRE_RAIN",25; bonus2 bSkillAtk,"RL_R_TRIP",25; if (BaseLevel>=110) { bonus bLongAtkRate,10; bonus2 bAddSize,Size_All,15; if (BaseLevel>=115) { bonus2 bSkillAtk,"RL_FIRE_RAIN",15; bonus2 bSkillAtk,"RL_R_TRIP",15; } } } - Id: 830005 AegisName: Antique_Gatling_Gun Name: Antique Gatling Gun Type: Weapon SubType: Gatling Buy: 20 Weight: 3000 Attack: 180 MagicAttack: 120 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Right_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_QD_SHOT",BaseLevel*5; bonus2 bSkillCooldown,"RL_HEAT_BARREL",-8000*.@r; bonus2 bSkillAtk,"RL_R_TRIP",7*(readparam(bAgi)/10); if (readparam(bAgi)>=110) bonus2 bSkillAtk,"RL_R_TRIP",30; - Id: 830006 AegisName: Melon_Gatling_Gun Name: Melon Gatling Gun Type: Weapon SubType: Gatling Buy: 20 Weight: 2500 Attack: 120 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus2 bSkillAtk,"RL_R_TRIP",7*(readparam(bAgi)/10); if (readparam(bAgi)>=110) bonus2 bSkillAtk,"RL_R_TRIP",30; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 830007 AegisName: FR_B_Gatling Name: Fire Round Booster Gatling Gun Type: Weapon SubType: Gatling Attack: 220 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Trade: NoDrop: true NoTrade: true NoCart: true NoStorage: true NoGuildStorage: true NoMail: true NoAuction: true Script: | .@r = getrefine(); bonus bAtkRate,2; bonus bBaseAtk,3*.@r; bonus bBaseAtk,3*(min(BaseLevel,195)/15); if (.@r>=7) { bonus bLongAtkRate,getskilllv("GS_SINGLEACTION"); if (.@r>=9) { bonus bLongAtkRate,10; bonus2 bSkillCooldown,"RL_FIRE_RAIN",-1000; bonus2 bSkillAtk,"RL_R_TRIP",25; bonus2 bSkillAtk,"RL_FIRE_RAIN",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus bLongAtkRate,10; if (.@r>=13) { bonus2 bSkillAtk,"RL_R_TRIP",15; bonus2 bSkillAtk,"RL_FIRE_RAIN",15; } } } } - Id: 830008 AegisName: Precision_Gatling Name: Precision Splatter Type: Weapon SubType: Gatling Weight: 2600 Attack: 290 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",7*(.@r/2); bonus2 bSkillAtk,"RL_R_TRIP",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 830009 AegisName: Fourth_Gatling Name: Scrap Splatter Type: Weapon SubType: Gatling Weight: 2400 Attack: 270 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",6*(.@r/2); bonus bLongAtkRate,3*(.@r/4); - Id: 830010 AegisName: Poenitentia_Veloci Name: Poenitentia Veloci Type: Weapon SubType: Gatling Weight: 1900 Attack: 260 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; bonus2 bSkillAtk,"RL_R_TRIP",3*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"RL_R_TRIP",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",5; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",3; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",3; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",5; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; } } } - Id: 830011 AegisName: Vivatus_F_Gatling Name: Vivatus Fides Gatling Gun Type: Weapon SubType: Gatling Weight: 1500 Attack: 250 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"RL_R_TRIP",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_R_TRIP",20; if (.@r>=9) { bonus2 bAddSize,Size_All,15; if (.@r>=11) { bonus2 bSkillAtk,"RL_R_TRIP",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RL_R_TRIP",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bCon,(.@r/3); } } } - Id: 830012 AegisName: The_Black_Gatling_LT Name: The Black-LT Type: Weapon SubType: Gatling Weight: 3000 Attack: 225 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus bBaseAtk,50; bonus2 bSkillAtk,"RL_R_TRIP",25; if (.@r>=9) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"RL_R_TRIP",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSubSize,Size_All,20; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 830013 AegisName: Glacier_Gatling Name: Glacier Gatling Type: Weapon SubType: Gatling Weight: 3500 Attack: 350 MagicAttack: 200 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 830014 AegisName: Comp_The_Black_Gatling Name: "[Not For Sale] The Black" Type: Weapon SubType: Gatling Weight: 2700 Attack: 205 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true Trade: NoDrop: true NoTrade: true NoCart: true NoGuildStorage: true NoMail: true NoAuction: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,2*(.@r/3); bonus bBaseAtk,10*(.@r/2); if (.@r >= 7) { .@val = 15; bonus2 bSkillUseSPrate,"RL_R_TRIP",-10; if (.@r >= 9) { autobonus3 "{ bonus bBaseAtk,50; bonus bLongAtkRate,10; }",1000,90000,"RL_P_ALTER"; if (.@r >= 11) { .@val += 15; } } bonus2 bSkillAtk,"RL_R_TRIP",.@val; } - Id: 830015 AegisName: D_Glacier_Gatling Name: Dim Glacier Gatling Gun Type: Weapon SubType: Gatling Weight: 3500 Attack: 350 MagicAttack: 200 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 830016 AegisName: aegis_830016 Name: Herosria Gatling Gun Type: Weapon SubType: Gatling Weight: 3000 Attack: 200 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bLongAtkRate,15; bonus bNearAtkDef,-7; bonus bAspdRate,15; bonus bHit,-25; - Id: 830025 AegisName: RG_5649 Name: RG-5649 Type: Weapon SubType: Gatling Weight: 2900 Attack: 295 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 830026 AegisName: Lighting_Splatter Name: Lightning Splatter Type: Weapon SubType: Gatling Weight: 3000 Attack: 295 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_MAGAZINE_FOR_ONE",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 830028 AegisName: aegis_830028 Name: 1Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 830029 AegisName: aegis_830029 Name: 2Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 830030 AegisName: aegis_830030 Name: 3Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 830031 AegisName: aegis_830031 Name: 4Lv Gatling Gun Type: Weapon SubType: Gatling Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 830032 AegisName: aegis_830032 Name: Level 5 Gatling Gun # !todo check english name Type: Weapon SubType: Gatling Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 830033 AegisName: Mocadas_Gatling Name: Muqaddas Taliin Type: Weapon SubType: Gatling Weight: 3200 Attack: 305 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; if (.@r>=11) { bonus2 bSkillAtk,"NW_THE_VIGILANTE_AT_NIGHT",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 840000 AegisName: Ep172_1h_Grenade Name: Lust Boom Type: Weapon SubType: Grenade Weight: 2400 Attack: 330 Range: 9 Slots: 2 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_H_MINE",10; bonus bAspdRate,3*(.@r/3); bonus bBaseAtk,6*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_D_TAIL",10; bonus2 bSkillAtk,"RL_H_MINE",10; } if (.@r>=9) { bonus2 bSkillCooldown,"RL_D_TAIL",-1000; bonus2 bSkillCooldown,"RL_H_MINE",-1000; } if (.@r>=11) { autobonus3 "{ bonus2 bSkillAtk,\"RL_D_TAIL\",25; }",1000,10000,"RL_C_MARKER"; bonus2 bSkillAtk,"RL_H_MINE",25; } - Id: 840001 AegisName: Up_Golden_L_Launcher Name: Patent Golden Lord Launcher Type: Weapon SubType: Grenade Buy: 20 Weight: 2400 Attack: 350 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 150 Refineable: true Script: | .@r = getrefine(); bonus bLongAtkRate,3*(.@r/2); bonus bBaseAtk,20*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_D_TAIL",15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } if (.@r>=9) { bonus2 bSkillAtk,"RL_D_TAIL",20; } if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } - Id: 840002 AegisName: Adulter_F_Launcher Name: Adulter Fides Launcher Type: Weapon SubType: Grenade Weight: 3000 Attack: 350 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 180 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"RL_D_TAIL",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_D_TAIL",20; if (.@r>=9) { bonus2 bSkillCooldown,"RL_D_TAIL",-2000; if (.@r>=11) { bonus2 bSkillAtk,"RL_D_TAIL",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } - Id: 840003 AegisName: Melon_Launcher Name: Melon Launcher Type: Weapon SubType: Grenade Buy: 20 Weight: 1400 Attack: 210 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 EquipLevelMin: 100 Refineable: true Script: | .@r = getrefine(); autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",20,5000,BF_WEAPON; autobonus "{ bonus bUseSPrate,-100; bonus2 bSPRegenRate,100,1000; }",10,5000,BF_MAGIC; bonus bAtkRate,10*.@r; bonus bMatkRate,5*.@r; bonus2 bSkillAtk,"RL_D_TAIL",7*(readparam(bLuk)/10); if (readparam(bLuk)>=110) bonus2 bSkillAtk,"RL_D_TAIL",30; if (.@r>=7) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } if (.@r>=9) { bonus2 bIgnoreDefRaceRate,RC_All,50; bonus2 bIgnoreMdefRaceRate,RC_All,50; } - Id: 840004 AegisName: Precision_Grenade Name: Precision Bomber Type: Weapon SubType: Grenade Weight: 3300 Attack: 370 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 220 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"NW_WILD_FIRE",7*(.@r/2); bonus2 bSkillAtk,"RL_H_MINE",10*(.@r/3); bonus bLongAtkRate,4*(.@r/4); if (.@g >= ENCHANTGRADE_D) { bonus bCon,2; if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_WILD_FIRE",10; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; } } } - Id: 840005 AegisName: Fourth_Grenade Name: Scrap Bomber Type: Weapon SubType: Grenade Weight: 3200 Attack: 350 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | .@r = getrefine(); bonus2 bSkillAtk,"NW_WILD_FIRE",6*(.@r/2); bonus bLongAtkRate,3*(.@r/4); - Id: 840006 AegisName: Poenitentia_Ruina Name: Poenitentia Ruina Type: Weapon SubType: Grenade Weight: 2700 Attack: 370 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,10; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; bonus2 bSkillAtk,"NW_WILD_FIRE",10; bonus2 bSkillAtk,"RL_D_TAIL",3*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"RL_D_TAIL",25; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bSkillCooldown,"RL_D_TAIL",-1000; } } } if (.@g >= ENCHANTGRADE_D) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; bonus2 bSkillAtk,"NW_WILD_FIRE",5; if (.@g >= ENCHANTGRADE_C) { bonus bPAtk,1; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",3; bonus2 bSkillAtk,"NW_WILD_FIRE",3; if (.@g >= ENCHANTGRADE_B) { bonus bCon,1; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; bonus2 bSkillAtk,"NW_WILD_FIRE",5; } } } - Id: 840007 AegisName: Vivatus_F_Launcher Name: Vivatus Fides Launcher Type: Weapon SubType: Grenade Weight: 3000 Attack: 350 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus2 bSkillAtk,"RL_D_TAIL",10; bonus bBaseAtk,18*(.@r/3); if (.@r>=7) { bonus2 bSkillAtk,"RL_D_TAIL",20; if (.@r>=9) { bonus2 bSkillCooldown,"RL_D_TAIL",-2000; if (.@r>=11) { bonus2 bSkillAtk,"RL_D_TAIL",25; if (.@r>=12) { bonus bLongAtkRate,15; } } } } if (.@g >= ENCHANTGRADE_D) { if (.@r>=11) { bonus2 bAddEle,Ele_All,15; } } if (.@g >= ENCHANTGRADE_C) { bonus2 bSkillAtk,"RL_D_TAIL",15; if (.@g >= ENCHANTGRADE_B) { bonus bAtkRate,7; if (.@g >= ENCHANTGRADE_A) { bonus bPAtk,(.@r/3); bonus bCon,(.@r/3); } } } - Id: 840008 AegisName: Golden_L_Launcher_LT Name: Golden Lord Launcher-LT Type: Weapon SubType: Grenade Weight: 2400 Attack: 350 Range: 9 Slots: 2 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 190 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bUnbreakableWeapon; if (BaseLevel>=210) { bonus bPAtk,1; bonus bPow,2; } if (.@r>=7) { bonus2 bSkillCooldown,"RL_D_TAIL",-1000; bonus2 bSkillAtk,"RL_D_TAIL",20; if (.@r>=9) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"RL_D_TAIL",35; if (.@r>=11) { bonus2 bAddSize,Size_All,15; bonus2 bAddEle,Ele_All,15; } } } if (.@g >= ENCHANTGRADE_D) { bonus bAtkRate,3; if (.@g >= ENCHANTGRADE_C) { bonus bLongAtkRate,15; bonus bPAtk,1; if (.@g >= ENCHANTGRADE_B) { bonus bPAtk,2; bonus bPow,3; } } } bonus bBaseAtk,15*(.@r/2); bonus bLongAtkRate,4*(.@r/3); - Id: 840009 AegisName: Glacier_Launcher Name: Glacier Launcher Type: Weapon SubType: Grenade Weight: 3000 Attack: 300 MagicAttack: 200 Range: 9 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 210 Refineable: true - Id: 840010 AegisName: D_Glacier_Launcher Name: Dim Glacier Grenade Launcher Type: Weapon SubType: Grenade Weight: 3000 Attack: 300 MagicAttack: 200 Range: 9 Slots: 1 Jobs: Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 230 Refineable: true Gradable: true Flags: DropEffect: CLIENT - Id: 840011 AegisName: aegis_840011 Name: Herosria Launcher Type: Weapon SubType: Grenade Weight: 3000 Attack: 200 Range: 9 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 200 Refineable: true Script: | bonus bLongAtkRate,15; bonus bNearAtkDef,-7; bonus bVariableCastrate,7; bonus bAtkRate,7; - Id: 840020 AegisName: Devil_L_Launcher Name: Devil Lord Launcher Type: Weapon SubType: Grenade Weight: 2500 Attack: 330 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 840021 AegisName: Justice_Bomber Name: Justice Bomber Type: Weapon SubType: Grenade Weight: 2600 Attack: 330 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 215 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus bCon,2; bonus2 bSkillAtk,"NW_WILD_FIRE",5; if (.@r>=5) { bonus2 bSkillAtk,"NW_WILD_FIRE",10; if (.@r>=7) { bonus bLongAtkRate,5; if (.@r>=9) { bonus2 bSkillAtk,"NW_WILD_FIRE",10; if (.@r>=10) { bonus bDelayrate,-10; if (.@r>=11) { bonus bLongAtkRate,15; bonus2 bSkillAtk,"NW_WILD_FIRE",5; } } } } } if (.@g>=ENCHANTGRADE_D) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_All,10; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddRace,RC_All,10; if (.@g>=ENCHANTGRADE_A) { bonus2 bAddEle,Ele_All,10; } } } } - Id: 840023 AegisName: aegis_840023 Name: 1Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 1 Refineable: true - Id: 840024 AegisName: aegis_840024 Name: 2Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 2 Refineable: true - Id: 840025 AegisName: aegis_840025 Name: 3Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 3 Refineable: true - Id: 840026 AegisName: aegis_840026 Name: 4Lv Grenade Launcher Type: Weapon SubType: Grenade Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 4 Refineable: true - Id: 840027 AegisName: aegis_840027 Name: Level 5 Grenade Launcher # !todo check english name Type: Weapon SubType: Grenade Attack: 10 MagicAttack: 10 Range: 9 Slots: 4 Jobs: Gunslinger: true Rebellion: true Locations: Both_Hand: true WeaponLevel: 5 Refineable: true - Id: 840028 AegisName: Mocadas_Launcher Name: Muqaddas Naranzak Type: Weapon SubType: Grenade Weight: 2500 Attack: 340 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,5; bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; if (.@r>=7) { bonus bLongAtkRate,10; if (.@r>=9) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; if (.@r>=11) { bonus2 bSkillAtk,"NW_SPIRAL_SHOOTING",10; } } } if (.@g>=ENCHANTGRADE_D) { bonus2 bAddSize,Size_Small,15; if (.@g>=ENCHANTGRADE_C) { bonus2 bAddSize,Size_Medium,15; if (.@g>=ENCHANTGRADE_B) { bonus2 bAddSize,Size_Large,15; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,5; } } } } - Id: 840032 AegisName: Dimen_NW_Launcher Name: Dimensions Night Launcher Type: Weapon SubType: Grenade Weight: 2800 Attack: 360 Range: 9 Slots: 2 Jobs: Rebellion: true Classes: Fourth: true Locations: Both_Hand: true WeaponLevel: 5 EquipLevelMin: 250 Refineable: true Gradable: true Flags: DropEffect: CLIENT Script: | .@g = getenchantgrade(); .@r = getrefine(); bonus bAtkRate,3+(.@r/2); bonus2 bSkillAtk,"NW_WILD_FIRE",15+5*(.@r/3); bonus bBaseAtk,25*(.@r/2); if (.@r>=7) { bonus bLongAtkRate,25; if (.@r>=9) { bonus bDelayrate,-10; bonus bPAtk,7; if (.@r>=11) { bonus2 bSkillAtk,"NW_WILD_FIRE",15; } } } if (.@g>=ENCHANTGRADE_D) { bonus bPAtk,5; if (.@g>=ENCHANTGRADE_C) { bonus2 bSkillAtk,"NW_WILD_FIRE",15; if (.@g>=ENCHANTGRADE_B) { bonus bLongAtkRate,10; if (.@g>=ENCHANTGRADE_A) { bonus bPAtk,3*(.@r/2); } } } }